You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
85 lines
2.6 KiB
85 lines
2.6 KiB
2 years ago
|
plugins {
|
||
|
kotlin("multiplatform")
|
||
|
kotlin("native.cocoapods")
|
||
|
id("com.android.library")
|
||
|
id("org.jetbrains.compose")
|
||
|
kotlin("plugin.serialization")
|
||
|
}
|
||
|
|
||
|
version = "1.0-SNAPSHOT"
|
||
|
val ktorVersion = extra["ktor.version"]
|
||
|
|
||
|
kotlin {
|
||
|
android()
|
||
|
jvm("desktop")
|
||
|
ios()
|
||
|
iosSimulatorArm64()
|
||
|
|
||
|
cocoapods {
|
||
|
summary = "Shared code for the sample"
|
||
|
homepage = "https://github.com/JetBrains/compose-jb"
|
||
|
ios.deploymentTarget = "14.1"
|
||
|
podfile = project.file("../iosApp/Podfile")
|
||
|
framework {
|
||
|
baseName = "shared"
|
||
|
isStatic = true
|
||
|
}
|
||
|
extraSpecAttributes["resources"] = "['src/commonMain/resources/**', 'src/iosMain/resources/**']"
|
||
|
}
|
||
|
|
||
|
sourceSets {
|
||
|
val commonMain by getting {
|
||
|
dependencies {
|
||
|
implementation("io.ktor:ktor-client-core:$ktorVersion")
|
||
|
implementation(compose.runtime)
|
||
|
implementation(compose.foundation)
|
||
|
implementation(compose.material)
|
||
|
implementation("org.jetbrains.compose.components:components-resources:1.3.0-beta04-dev879")
|
||
|
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.4.1")
|
||
|
}
|
||
|
}
|
||
|
val androidMain by getting {
|
||
|
dependencies {
|
||
|
implementation("androidx.appcompat:appcompat:1.5.1")
|
||
|
implementation("androidx.core:core-ktx:1.9.0")
|
||
|
implementation("io.ktor:ktor-client-okhttp:$ktorVersion")
|
||
|
}
|
||
|
}
|
||
|
val iosMain by getting {
|
||
|
dependencies {
|
||
|
implementation("io.ktor:ktor-client-darwin:$ktorVersion")
|
||
|
}
|
||
|
}
|
||
|
val iosTest by getting
|
||
|
val iosSimulatorArm64Main by getting {
|
||
|
dependsOn(iosMain)
|
||
|
}
|
||
|
val iosSimulatorArm64Test by getting {
|
||
|
dependsOn(iosTest)
|
||
|
}
|
||
|
|
||
|
val desktopMain by getting {
|
||
|
dependencies {
|
||
|
implementation(compose.desktop.common)
|
||
|
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-swing:1.6.4")
|
||
|
implementation("io.ktor:ktor-client-cio:$ktorVersion")
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
android {
|
||
|
compileSdk = 33
|
||
|
sourceSets["main"].manifest.srcFile("src/androidMain/AndroidManifest.xml")
|
||
|
sourceSets["main"].res.srcDirs("src/androidMain/res")
|
||
|
sourceSets["main"].resources.srcDir("src/commonMain/resources")
|
||
|
defaultConfig {
|
||
|
minSdk = 24
|
||
|
targetSdk = 33
|
||
|
}
|
||
|
compileOptions {
|
||
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
||
|
targetCompatibility = JavaVersion.VERSION_1_8
|
||
|
}
|
||
|
}
|