mirror of
https://github.com/Kunzisoft/KeePassDX.git
synced 2025-04-03 04:47:36 +03:00
49 lines
1 KiB
Groovy
49 lines
1 KiB
Groovy
apply plugin: 'com.android.library'
|
|
apply plugin: 'kotlin-android'
|
|
|
|
android {
|
|
namespace 'com.kunzisoft.keepass.database'
|
|
compileSdkVersion 34
|
|
|
|
defaultConfig {
|
|
minSdkVersion 15
|
|
targetSdk 34
|
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
}
|
|
}
|
|
|
|
compileOptions {
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
|
|
kotlinOptions {
|
|
jvmTarget = "1.8"
|
|
}
|
|
|
|
testOptions {
|
|
unitTests {
|
|
includeAndroidResources = true
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
// Time
|
|
implementation 'joda-time:joda-time:2.13.0'
|
|
// Apache Commons
|
|
implementation 'commons-io:commons-io:2.8.0'
|
|
implementation 'commons-codec:commons-codec:1.15'
|
|
|
|
implementation project(path: ':crypto')
|
|
|
|
// Tests
|
|
androidTestImplementation "androidx.test:runner:$android_test_version"
|
|
testImplementation "androidx.test:runner:$android_test_version"
|
|
}
|