mirror of
https://github.com/jlengrand/compose-multiplatform.git
synced 2026-03-10 15:48:51 +00:00
32 lines
632 B
Kotlin
32 lines
632 B
Kotlin
plugins {
|
|
kotlin("multiplatform")
|
|
id("com.android.application")
|
|
id("org.jetbrains.compose")
|
|
}
|
|
|
|
kotlin {
|
|
android()
|
|
sourceSets {
|
|
val androidMain by getting {
|
|
dependencies {
|
|
implementation(project(":shared"))
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
android {
|
|
compileSdk = 33
|
|
defaultConfig {
|
|
applicationId = "org.jetbrains.Codeviewer"
|
|
minSdk = 26
|
|
targetSdk = 33
|
|
versionCode = 1
|
|
versionName = "1.0"
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility = JavaVersion.VERSION_11
|
|
targetCompatibility = JavaVersion.VERSION_11
|
|
}
|
|
}
|