mirror of
https://github.com/szkolny-eu/szkolny-android.git
synced 2024-11-10 04:01:13 -06:00
38 lines
1.1 KiB
Groovy
38 lines
1.1 KiB
Groovy
|
apply plugin: 'com.android.application'
|
||
|
|
||
|
android {
|
||
|
compileSdkVersion 28
|
||
|
|
||
|
|
||
|
defaultConfig {
|
||
|
applicationId "pl.szczodrzynski.edziennik"
|
||
|
minSdkVersion 23
|
||
|
targetSdkVersion 28
|
||
|
versionCode 1
|
||
|
versionName "1.0"
|
||
|
multiDexEnabled true
|
||
|
}
|
||
|
buildTypes {
|
||
|
release {
|
||
|
minifyEnabled false
|
||
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
||
|
}
|
||
|
}
|
||
|
compileOptions {
|
||
|
sourceCompatibility = '1.8'
|
||
|
targetCompatibility = '1.8'
|
||
|
}
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
||
|
|
||
|
implementation 'com.google.android.support:wearable:2.4.0'
|
||
|
implementation 'com.google.android.gms:play-services-wearable:16.0.1'
|
||
|
implementation 'androidx.percentlayout:percentlayout:1.0.0-beta01'
|
||
|
implementation 'androidx.legacy:legacy-support-v4:1.0.0-beta01'
|
||
|
implementation 'androidx.recyclerview:recyclerview:1.0.0-beta01'
|
||
|
implementation 'androidx.wear:wear:1.0.0-beta01'
|
||
|
compileOnly 'com.google.android.wearable:wearable:2.4.0'
|
||
|
}
|