mirror of
https://github.com/Kunzisoft/KeePassDX.git
synced 2025-12-04 15:49:33 +01:00
55 lines
1.5 KiB
Groovy
55 lines
1.5 KiB
Groovy
plugins {
|
|
id 'com.android.library'
|
|
id 'org.jetbrains.kotlin.android'
|
|
}
|
|
|
|
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"
|
|
|
|
buildConfigField "String[]", "ICON_PACKS", "{\"classic\",\"material\"}"
|
|
}
|
|
|
|
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'
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation "androidx.core:core-ktx:$android_core_version"
|
|
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.4'
|
|
// Color
|
|
implementation 'com.github.Kunzisoft:AndroidClearChroma:2.6'
|
|
// 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'
|
|
// Icon pack
|
|
implementation project(path: ':icon-pack-classic')
|
|
implementation project(path: ':icon-pack-material')
|
|
|
|
implementation project(path: ':crypto')
|
|
|
|
testImplementation 'junit:junit:4.13.2'
|
|
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
|
|
}
|