mirror of
https://github.com/Kunzisoft/KeePassDX.git
synced 2025-12-04 15:49:33 +01:00
54 lines
1.1 KiB
Groovy
54 lines
1.1 KiB
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion = 23
|
|
buildToolsVersion = '26.0.2'
|
|
|
|
defaultConfig {
|
|
applicationId = "com.android.keepass"
|
|
minSdkVersion 4
|
|
targetSdkVersion 12
|
|
|
|
versionCode = 155
|
|
versionName = "2.1.0.0"
|
|
|
|
testApplicationId = "com.keepassdroid.tests"
|
|
testInstrumentationRunner = "android.test.InstrumentationTestRunner"
|
|
|
|
}
|
|
|
|
externalNativeBuild {
|
|
cmake {
|
|
path "src/main/jni/CMakeLists.txt"
|
|
}
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled = false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
|
|
flavorDimensions "all"
|
|
|
|
productFlavors {
|
|
flavor1 {
|
|
dimension = "all"
|
|
applicationId = "com.android.keepass"
|
|
}
|
|
}
|
|
|
|
|
|
}
|
|
|
|
dependencies {
|
|
androidTestCompile files('libs/junit4.jar')
|
|
|
|
compile 'com.madgag.spongycastle:core:1.58.0.0'
|
|
compile 'com.madgag.spongycastle:prov:1.58.0.0'
|
|
compile 'joda-time:joda-time:2.9.4'
|
|
compile 'com.android.support:support-v4:23.0.0'
|
|
|
|
}
|