2026-03-02 00:09:33 +11:00
|
|
|
import org.jetbrains.kotlin.gradle.dsl.JvmTarget
|
|
|
|
|
|
|
|
|
|
plugins {
|
|
|
|
|
alias(libs.plugins.kotlinMultiplatform)
|
2026-03-25 21:10:54 +11:00
|
|
|
alias(libs.plugins.androidMultiplatformLibrary)
|
2026-03-02 00:09:33 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
kotlin {
|
2026-03-25 21:10:54 +11:00
|
|
|
android {
|
2026-04-01 22:48:04 +11:00
|
|
|
namespace = "moe.lava.banksia.core.data"
|
2026-03-25 21:10:54 +11:00
|
|
|
compileSdk = libs.versions.android.compileSdk.get().toInt()
|
|
|
|
|
|
2026-03-02 00:09:33 +11:00
|
|
|
compilerOptions {
|
|
|
|
|
jvmTarget.set(JvmTarget.JVM_11)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
compilerOptions {
|
|
|
|
|
freeCompilerArgs.add("-opt-in=kotlin.time.ExperimentalTime")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
iosArm64()
|
|
|
|
|
iosSimulatorArm64()
|
|
|
|
|
|
2026-04-01 22:48:04 +11:00
|
|
|
jvm()
|
|
|
|
|
|
2026-03-02 00:09:33 +11:00
|
|
|
sourceSets {
|
|
|
|
|
commonMain.dependencies {
|
2026-04-02 01:57:08 +11:00
|
|
|
implementation(projects.core)
|
2026-03-02 00:09:33 +11:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|