mirror of
https://github.com/msfjarvis/compose-lobsters
synced 2025-08-14 16:27:06 +05:30
25 lines
602 B
Kotlin
25 lines
602 B
Kotlin
@file:Suppress("DSL_SCOPE_VIOLATION", "UnstableApiUsage")
|
|
|
|
plugins {
|
|
alias(libs.plugins.kotlin.multiplatform)
|
|
alias(libs.plugins.kotlin.serialization)
|
|
alias(libs.plugins.android.library)
|
|
}
|
|
|
|
kotlin {
|
|
android()
|
|
jvm { compilations.all { kotlinOptions.jvmTarget = "11" } }
|
|
sourceSets["commonMain"].apply {
|
|
dependencies { implementation(libs.kotlinx.serialization.core) }
|
|
}
|
|
}
|
|
|
|
android {
|
|
compileSdk = 31
|
|
sourceSets["main"].manifest.srcFile("src/androidMain/AndroidManifest.xml")
|
|
defaultConfig {
|
|
minSdk = 23
|
|
targetSdk = 31
|
|
consumerProguardFiles("consumer-rules.pro")
|
|
}
|
|
}
|