mirror of
https://github.com/yogeshpaliyal/KeyPass.git
synced 2026-01-06 00:59:34 -06:00
55 lines
1.3 KiB
Kotlin
55 lines
1.3 KiB
Kotlin
plugins {
|
|
kotlin("multiplatform")
|
|
id("com.android.library")
|
|
id("org.jetbrains.compose")
|
|
}
|
|
|
|
kotlin {
|
|
android()
|
|
jvm("desktop") {
|
|
jvmToolchain(11)
|
|
}
|
|
sourceSets {
|
|
val commonMain by getting {
|
|
dependencies {
|
|
api(compose.runtime)
|
|
api(compose.foundation)
|
|
api(compose.material)
|
|
implementation("org.reduxkotlin:redux-kotlin-compose:0.6.0")
|
|
}
|
|
}
|
|
val commonTest by getting {
|
|
dependencies {
|
|
implementation(kotlin("test"))
|
|
}
|
|
}
|
|
val androidMain by getting {
|
|
dependencies {
|
|
api("androidx.appcompat:appcompat:1.6.1")
|
|
api("androidx.core:core-ktx:1.10.1")
|
|
}
|
|
}
|
|
val androidTest by getting {
|
|
dependencies {
|
|
implementation("junit:junit:4.13.2")
|
|
}
|
|
}
|
|
val desktopMain by getting {
|
|
dependencies {
|
|
api(compose.preview)
|
|
}
|
|
}
|
|
val desktopTest by getting
|
|
}
|
|
}
|
|
|
|
android {
|
|
compileSdk = 33
|
|
sourceSets["main"].manifest.srcFile("src/androidMain/AndroidManifest.xml")
|
|
defaultConfig {
|
|
minSdk = 21
|
|
targetSdk = 33
|
|
}
|
|
namespace = "com.yogeshpaliyal.keypass.common"
|
|
}
|