- bug gefixed! die letzte bekannte position des fingers auf dem display musste zurückgesetzt werden ref #6 - angefangen matlab code zu portieren - auto correlationsmethode implementiert
46 lines
1.4 KiB
Groovy
46 lines
1.4 KiB
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion 26
|
|
publishNonDefault true
|
|
flavorDimensions "minSdk"
|
|
defaultConfig {
|
|
applicationId "de.tonifetzer.conductorswatch"
|
|
minSdkVersion 23
|
|
targetSdkVersion 26
|
|
versionCode 1
|
|
versionName "1.0"
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
productFlavors {
|
|
wear1 {
|
|
dimension "minSdk"
|
|
// Use the defaultConfig value
|
|
}
|
|
wear2 {
|
|
dimension "minSdk"
|
|
minSdkVersion 25
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
dependencies {
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
implementation 'com.google.android.support:wearable:2.1.0'
|
|
implementation 'com.google.android.gms:play-services-wearable:11.6.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.1.0'
|
|
compile 'com.github.wendykierp:JTransforms:3.1'
|
|
}
|