andOTP/app/build.gradle
2017-12-11 11:05:34 +01:00

47 lines
1.4 KiB
Groovy

apply plugin: 'com.android.application'
android {
compileSdkVersion 27
buildToolsVersion '27.0.2'
defaultConfig {
applicationId "org.shadowice.flocke.andotp"
minSdkVersion 19
targetSdkVersion 27
versionCode 12
versionName "0.3.1"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
debug {
testCoverageEnabled = true
}
}
lintOptions {
abortOnError false
}
}
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.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"
}