mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge
synced 2024-11-02 08:22:59 +01:00
d2bcccaeef
(no WRITE_EXTERNAL_STORAGE permission necessary!)
30 lines
821 B
Groovy
30 lines
821 B
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion 21
|
|
buildToolsVersion "21.1.2"
|
|
|
|
defaultConfig {
|
|
applicationId "nodomain.freeyourgadget.gadgetbridge"
|
|
minSdkVersion 19
|
|
targetSdkVersion 21
|
|
versionCode 13
|
|
versionName "0.3.5"
|
|
}
|
|
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'
|
|
}
|