mirror of
https://github.com/Kunzisoft/KeePassDX.git
synced 2025-04-03 21:07:35 +03:00
51 lines
1.3 KiB
Groovy
51 lines
1.3 KiB
Groovy
apply plugin: 'com.android.library'
|
|
apply plugin: 'kotlin-android'
|
|
apply plugin: 'kotlin-parcelize'
|
|
apply plugin: 'kotlin-kapt'
|
|
|
|
android {
|
|
compileSdkVersion 32
|
|
buildToolsVersion "32.0.0"
|
|
ndkVersion "21.4.7075529"
|
|
|
|
defaultConfig {
|
|
minSdkVersion 15
|
|
targetSdk 32
|
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
consumerProguardFiles "consumer-rules.pro"
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
kotlinOptions {
|
|
jvmTarget = '1.8'
|
|
}
|
|
testOptions {
|
|
unitTests {
|
|
includeAndroidResources = true
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
// Time
|
|
implementation 'joda-time:joda-time:2.10.13'
|
|
// 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"
|
|
}
|