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"
|
2017-07-02 15:42:51 +00:00
|
|
|
minSdkVersion 19
|
2017-06-28 08:15:01 +00:00
|
|
|
targetSdkVersion 25
|
2017-07-27 20:50:14 +00:00
|
|
|
versionCode 5
|
|
|
|
versionName "0.2.3"
|
2015-11-23 21:20:14 +00:00
|
|
|
}
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
minifyEnabled false
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
|
|
|
debug {
|
|
|
|
testCoverageEnabled = true
|
|
|
|
}
|
|
|
|
}
|
2015-11-23 22:18:56 +00:00
|
|
|
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'
|
2017-06-29 13:14:46 +00:00
|
|
|
compile 'com.android.support:recyclerview-v7:25.3.1'
|
|
|
|
compile 'com.android.support:cardview-v7:25.3.1'
|
2017-07-05 10:42:11 +00:00
|
|
|
compile 'com.android.support.constraint:constraint-layout:1.0.2'
|
2017-07-05 11:09:22 +00:00
|
|
|
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'
|
2017-07-14 10:53:29 +00:00
|
|
|
compile 'org.sufficientlysecure:openpgp-api:12.0'
|
2017-07-30 19:38:45 +00:00
|
|
|
compile 'com.vanniktech:vntnumberpickerpreference:1.0.0'
|
2015-11-23 21:20:14 +00:00
|
|
|
}
|