mirror of
https://github.com/Kunzisoft/KeePassDX.git
synced 2025-04-03 04:47:36 +03:00
26 lines
542 B
Groovy
26 lines
542 B
Groovy
apply plugin: 'com.android.library'
|
|
apply plugin: 'kotlin-android'
|
|
|
|
android {
|
|
namespace 'com.kunzisoft.keepass.icon'
|
|
compileSdkVersion 34
|
|
|
|
defaultConfig {
|
|
minSdkVersion 14
|
|
targetSdkVersion 34
|
|
}
|
|
|
|
compileOptions {
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
|
|
kotlinOptions {
|
|
jvmTarget = "1.8"
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(path: ':icon-pack:classic')
|
|
implementation project(path: ':icon-pack:material')
|
|
}
|