andOTP/app/build.gradle

64 lines
2.1 KiB
Groovy
Raw Normal View History

2015-11-23 21:20:14 +00:00
apply plugin: 'com.android.application'
android {
2019-05-28 13:48:12 +00:00
compileSdkVersion 28
buildToolsVersion '28.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
2019-05-28 13:48:12 +00:00
targetSdkVersion 28
2019-10-19 07:55:58 +00:00
versionCode 26
versionName "0.6.3.1"
2018-03-22 09:05:36 +00:00
vectorDrawables.useSupportLibrary = true
2015-11-23 21:20:14 +00:00
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
debug {
applicationIdSuffix = ".dev"
versionNameSuffix = "-dev"
2015-11-23 21:20:14 +00:00
testCoverageEnabled = true
}
}
lintOptions {
abortOnError false
2015-11-23 22:21:38 +00:00
}
dataBinding {
enabled = true
}
flavorDimensions 'market'
productFlavors {
fdroid {
dimension = 'market'
}
play {
dimension = 'market'
2019-10-19 07:55:58 +00:00
versionNameSuffix = "-play"
}
}
2015-11-23 21:20:14 +00:00
}
dependencies {
2019-05-28 13:48:12 +00:00
ext.supportLibVersion = "28.0.0"
2019-05-28 13:48:12 +00:00
implementation "commons-codec:commons-codec:1.12"
implementation "com.android.support:support-media-compat:$supportLibVersion"
implementation "com.android.support:support-v4:$supportLibVersion"
2018-03-22 09:05:36 +00:00
implementation "com.android.support:appcompat-v7:$supportLibVersion"
implementation "com.android.support:cardview-v7:$supportLibVersion"
implementation "com.android.support:design:$supportLibVersion"
implementation "com.android.support:recyclerview-v7:$supportLibVersion"
2018-12-05 06:32:55 +00:00
implementation "com.android.support.constraint:constraint-layout:1.1.3"
2018-03-22 09:05:36 +00:00
implementation "com.github.aakira:expandable-layout:1.6.0"
implementation "com.heinrichreimersoftware:material-intro:1.6.2"
implementation "com.journeyapps:zxing-android-embedded:3.6.0"
implementation "com.vanniktech:vntnumberpickerpreference:1.0.0"
implementation "me.zhanghai.android.materialprogressbar:library:1.4.2"
implementation "org.sufficientlysecure:openpgp-api:12.0"
2019-05-28 13:48:12 +00:00
implementation "com.leinardi.android:speed-dial:2.0.1"
implementation "com.mikepenz:aboutlibraries:6.1.1"
2015-11-23 21:20:14 +00:00
}