d493f95f5a
FABsMenu is now deprecated (and crashes on KitKat) Fixes #186
51 lines
1.7 KiB
Groovy
51 lines
1.7 KiB
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion 27
|
|
buildToolsVersion '27.0.3'
|
|
|
|
defaultConfig {
|
|
applicationId "org.shadowice.flocke.andotp"
|
|
minSdkVersion 19
|
|
targetSdkVersion 27
|
|
versionCode 19
|
|
versionName "0.6.0-beta2"
|
|
vectorDrawables.useSupportLibrary = true
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
debug {
|
|
applicationIdSuffix = ".dev"
|
|
versionNameSuffix = "-dev"
|
|
testCoverageEnabled = true
|
|
}
|
|
}
|
|
lintOptions {
|
|
abortOnError false
|
|
}
|
|
dataBinding {
|
|
enabled = true
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
ext.supportLibVersion = "27.1.1"
|
|
|
|
implementation "commons-codec:commons-codec:1.11"
|
|
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"
|
|
implementation "com.android.support.constraint:constraint-layout:1.1.0"
|
|
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"
|
|
implementation "com.leinardi.android:speed-dial:1.0.0"
|
|
implementation "com.mikepenz:aboutlibraries:6.0.6"
|
|
}
|