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 {
2017-06-28 08:15:01 +00:00
compileSdkVersion 25
buildToolsVersion '25.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-06-28 08:15:01 +00:00
targetSdkVersion 25
2017-08-01 06:04:10 +00:00
versionCode 6
versionName "0.2.4"
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.2')
2017-06-28 08:15:01 +00:00
compile 'com.android.support:appcompat-v7:25.3.1'
compile 'com.android.support:design:25.3.1'
compile 'com.android.support:recyclerview-v7:25.3.1'
compile 'com.android.support:cardview-v7:25.3.1'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
compile 'com.journeyapps:zxing-android-embedded:3.5.0'
2015-11-23 21:20:14 +00:00
compile 'commons-codec:commons-codec:1.5'
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
}