36 lines
1.1 KiB
Groovy
36 lines
1.1 KiB
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion 29
|
|
buildToolsVersion '29.0.2'
|
|
|
|
defaultConfig {
|
|
applicationId "de.fhws.indoor.sensorreadout"
|
|
minSdkVersion 21
|
|
targetSdkVersion 23
|
|
versionCode 1
|
|
versionName "1.0"
|
|
multiDexEnabled true
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'com.google.android.material:material:1.0.0'
|
|
implementation fileTree(include: ['*.jar'], dir: 'libs')
|
|
testImplementation 'junit:junit:4.12'
|
|
implementation 'androidx.appcompat:appcompat:1.0.0'
|
|
implementation 'com.google.android.gms:play-services:12.0.1'
|
|
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
|
|
implementation 'org.apmem.tools:layouts:1.10@aar'
|
|
implementation 'androidx.preference:preference:1.0.0'
|
|
//compile 'com.google.android.support:wearable:1.3.0'
|
|
//compile 'com.google.android.gms:play-services-wearable:8.4.0'
|
|
//provided 'com.google.android.wearable:wearable:1.0.0'
|
|
}
|