mirror of
https://github.com/Kunzisoft/KeePassDX.git
synced 2025-12-04 15:49:33 +01:00
46 lines
1.2 KiB
Groovy
46 lines
1.2 KiB
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion = 25
|
|
buildToolsVersion = "26.0.2"
|
|
defaultConfig {
|
|
applicationId = "com.android.keepass"
|
|
minSdkVersion 11
|
|
targetSdkVersion 25
|
|
versionCode = 1
|
|
versionName = "2.5.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'
|
|
}
|
|
}
|
|
compileSdkVersion 25
|
|
buildToolsVersion '26.0.2'
|
|
dexOptions {
|
|
}
|
|
}
|
|
|
|
def supportVersion = "25.4.0"
|
|
def spongycastleVersion = "1.58.0.0"
|
|
|
|
dependencies {
|
|
androidTestCompile files('libs/junit4.jar')
|
|
compile "com.android.support:appcompat-v7:$supportVersion"
|
|
compile "com.android.support:design:$supportVersion"
|
|
compile "com.android.support:preference-v7:$supportVersion"
|
|
compile "com.madgag.spongycastle:core:$spongycastleVersion"
|
|
compile "com.madgag.spongycastle:prov:$spongycastleVersion"
|
|
compile 'joda-time:joda-time:2.9.9'
|
|
}
|