mirror of
https://github.com/msfjarvis/compose-lobsters
synced 2025-08-14 17:37:05 +05:30
23 lines
506 B
Kotlin
23 lines
506 B
Kotlin
plugins {
|
|
kotlin("multiplatform")
|
|
kotlin("plugin.serialization")
|
|
id("com.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")
|
|
}
|
|
}
|