- Refactored logger infrastructure, so that sensors have to provide proper timestamps for the logged data, instead of the Logger generating a timestamp when it is logged to the file. - Added a settings UI where active sensors and activities can be configured
34 lines
1.0 KiB
Groovy
34 lines
1.0 KiB
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion 23
|
|
buildToolsVersion '26.0.3'
|
|
|
|
defaultConfig {
|
|
applicationId "de.fhws.indoor.sensorreadout"
|
|
minSdkVersion 21
|
|
targetSdkVersion 23
|
|
versionCode 1
|
|
versionName "1.0"
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'com.android.support:design:23.4.0'
|
|
compile fileTree(include: ['*.jar'], dir: 'libs')
|
|
testCompile 'junit:junit:4.12'
|
|
implementation 'com.android.support:appcompat-v7:23.4.0'
|
|
implementation 'com.google.android.gms:play-services:10.2.0'
|
|
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
|
|
implementation 'org.apmem.tools:layouts:1.10@aar'
|
|
//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'
|
|
}
|