KeePassDX/icon-pack/build.gradle
2024-06-24 13:14:52 +02:00

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')
}