andOTP/app/build.gradle

43 lines
1.3 KiB
Groovy
Raw Normal View History

2015-11-23 21:20:14 +00:00
apply plugin: 'com.android.application'
android {
compileSdkVersion 26
buildToolsVersion '26.0.1'
2015-11-23 21:20:14 +00:00
defaultConfig {
2017-06-28 08:29:18 +00:00
applicationId "org.shadowice.flocke.andotp"
minSdkVersion 19
targetSdkVersion 26
2017-09-27 05:22:49 +00:00
versionCode 9
versionName "0.2.7"
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
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
2017-07-14 18:19:43 +00:00
compile 'de.psdev.licensesdialog:licensesdialog:1.8.3'
compile 'com.android.support:appcompat-v7:26.0.1'
compile 'com.android.support:design:26.0.1'
compile 'com.android.support:recyclerview-v7:26.0.1'
compile 'com.android.support:cardview-v7:26.0.1'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
compile 'com.journeyapps:zxing-android-embedded:3.5.0'
compile 'commons-codec:commons-codec:1.10'
2017-06-29 15:10:18 +00:00
compile 'me.zhanghai.android.materialprogressbar:library:1.4.1'
compile 'org.sufficientlysecure:openpgp-api:12.0'
compile 'com.vanniktech:vntnumberpickerpreference:1.0.0'
2015-11-23 21:20:14 +00:00
}