52 lines
1.6 KiB
Groovy
52 lines
1.6 KiB
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion 26
|
|
publishNonDefault true
|
|
flavorDimensions "minSdk"
|
|
defaultConfig {
|
|
applicationId "de.tonifetzer.conductorswatch"
|
|
minSdkVersion 23
|
|
targetSdkVersion 26
|
|
//sdk 2 | product version 3 | build num 2 | multi-apk 2
|
|
versionCode 260130401
|
|
versionName "0.1.3.3"
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
productFlavors {
|
|
wear1 {
|
|
dimension "minSdk"
|
|
// Use the defaultConfig value
|
|
minSdkVersion 23
|
|
}
|
|
wear2 {
|
|
dimension "minSdk"
|
|
minSdkVersion 25
|
|
}
|
|
}
|
|
|
|
compileOptions {
|
|
targetCompatibility 1.8
|
|
sourceCompatibility 1.8
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation fileTree(include: ['*.jar'], dir: 'libs')
|
|
implementation 'com.google.android.support:wearable:2.2.0'
|
|
implementation 'com.google.android.gms:play-services-wearable:11.8.0'
|
|
implementation 'com.android.support:percent:26.1.0'
|
|
implementation 'com.android.support:animated-vector-drawable:26.1.0'
|
|
implementation 'com.android.support:appcompat-v7:26.1.0'
|
|
implementation 'com.android.support:support-v4:26.1.0'
|
|
implementation 'com.android.support:recyclerview-v7:26.1.0'
|
|
implementation 'com.android.support:wear:26.1.0'
|
|
compileOnly 'com.google.android.wearable:wearable:2.2.0'
|
|
api 'com.github.wendykierp:JTransforms:3.1'
|
|
}
|