mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge
synced 2024-11-05 01:37:03 +01:00
8aef92026c
- supports zooming an panning - displays labels for all x-values (= time of day) - fix deep vs. light sleep constants - increase activity data buffer size for Mi Band
31 lines
875 B
Groovy
31 lines
875 B
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion 21
|
|
buildToolsVersion "21.1.2"
|
|
|
|
defaultConfig {
|
|
applicationId "nodomain.freeyourgadget.gadgetbridge"
|
|
minSdkVersion 19
|
|
targetSdkVersion 21
|
|
versionCode 14
|
|
versionName "0.4.0"
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile fileTree(dir: 'libs', include: ['*.jar'])
|
|
compile 'com.android.support:appcompat-v7:21.0.3'
|
|
compile 'com.android.support:support-v4:21.0.3'
|
|
// compile 'com.noveogroup.android:android-logger:1.3.5'
|
|
compile 'com.github.tony19:logback-android-classic:1.1.1-3'
|
|
compile 'org.slf4j:slf4j-api:1.7.7'
|
|
compile 'com.github.PhilJay:MPAndroidChart:2.1.0'
|
|
}
|