andOTP/app/build.gradle

48 lines
1.4 KiB
Groovy
Raw Normal View History

2015-11-23 21:20:14 +00:00
apply plugin: 'com.android.application'
android {
2017-11-30 16:23:57 +00:00
compileSdkVersion 27
2017-12-27 11:41:28 +00:00
buildToolsVersion '27.0.3'
2015-11-23 21:20:14 +00:00
defaultConfig {
2017-06-28 08:29:18 +00:00
applicationId "org.shadowice.flocke.andotp"
minSdkVersion 19
2017-11-30 16:23:57 +00:00
targetSdkVersion 27
2018-02-01 09:11:31 +00:00
versionCode 14
versionName "0.4.0.1"
2015-11-23 21:20:14 +00:00
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
debug {
testCoverageEnabled = true
}
}
lintOptions {
abortOnError false
2015-11-23 22:21:38 +00:00
}
2015-11-23 21:20:14 +00:00
}
2017-11-30 16:23:57 +00:00
ext {
supportLibVersion = "27.0.2"
}
2015-11-23 21:20:14 +00:00
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
2017-07-14 18:19:43 +00:00
2017-12-08 06:53:54 +00:00
compile "commons-codec:commons-codec:1.11"
2017-11-30 16:23:57 +00:00
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"
2017-11-30 16:23:57 +00:00
compile "com.journeyapps:zxing-android-embedded:3.5.0"
compile "com.vanniktech:vntnumberpickerpreference:1.0.0"
compile "de.psdev.licensesdialog:licensesdialog:1.8.3"
2017-12-08 06:53:54 +00:00
compile "me.zhanghai.android.materialprogressbar:library:1.4.2"
2017-11-30 16:23:57 +00:00
compile "org.sufficientlysecure:openpgp-api:12.0"
2015-11-23 21:20:14 +00:00
}