53 lines
1.6 KiB
Groovy
53 lines
1.6 KiB
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion 27
|
|
buildToolsVersion '27.0.3'
|
|
|
|
defaultConfig {
|
|
applicationId "org.shadowice.flocke.andotp"
|
|
minSdkVersion 19
|
|
targetSdkVersion 27
|
|
versionCode 16
|
|
versionName "0.5.0.1"
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
debug {
|
|
applicationIdSuffix = ".dev"
|
|
versionNameSuffix = "-dev"
|
|
testCoverageEnabled = true
|
|
}
|
|
}
|
|
lintOptions {
|
|
abortOnError false
|
|
}
|
|
dataBinding {
|
|
enabled = true
|
|
}
|
|
}
|
|
|
|
ext {
|
|
supportLibVersion = "27.0.2"
|
|
}
|
|
|
|
dependencies {
|
|
compile fileTree(dir: 'libs', include: ['*.jar'])
|
|
|
|
compile "commons-codec:commons-codec:1.11"
|
|
compile "com.android.support:appcompat-v7:$supportLibVersion"
|
|
compile "com.android.support:cardview-v7:$supportLibVersion"
|
|
compile "com.android.support:design:$supportLibVersion"
|
|
compile "com.android.support:recyclerview-v7:$supportLibVersion"
|
|
compile "com.android.support.constraint:constraint-layout:1.0.2"
|
|
compile "com.github.aakira:expandable-layout:1.6.0"
|
|
compile "com.heinrichreimersoftware:material-intro:1.6.2"
|
|
compile "com.journeyapps:zxing-android-embedded:3.5.0"
|
|
compile "com.vanniktech:vntnumberpickerpreference:1.0.0"
|
|
compile "de.psdev.licensesdialog:licensesdialog:1.8.3"
|
|
compile "me.zhanghai.android.materialprogressbar:library:1.4.2"
|
|
compile "org.sufficientlysecure:openpgp-api:12.0"
|
|
}
|