64 lines
1.7 KiB
Text
64 lines
1.7 KiB
Text
|
plugins {
|
||
|
kotlin("multiplatform")
|
||
|
id("com.android.library")
|
||
|
kotlin("plugin.serialization") version "1.6.10"
|
||
|
}
|
||
|
|
||
|
kotlin {
|
||
|
android()
|
||
|
listOf(
|
||
|
iosX64(),
|
||
|
iosArm64(),
|
||
|
iosSimulatorArm64()
|
||
|
).forEach {
|
||
|
it.binaries.framework {
|
||
|
baseName = "Pihelper"
|
||
|
}
|
||
|
}
|
||
|
|
||
|
sourceSets {
|
||
|
val commonMain by getting {
|
||
|
dependencies {
|
||
|
implementation(libs.ktor.client.core)
|
||
|
implementation(libs.ktor.client.logging)
|
||
|
implementation(libs.ktor.client.serialization)
|
||
|
implementation(libs.ktor.client.content.negotiation)
|
||
|
implementation(libs.kotlinx.coroutines.core)
|
||
|
implementation(libs.kotlinx.serialization.json)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
val androidMain by getting {
|
||
|
dependencies {
|
||
|
implementation(libs.ktor.client.android)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
val iosX64Main by getting
|
||
|
val iosArm64Main by getting
|
||
|
val iosSimulatorArm64Main by getting
|
||
|
val iosMain by creating {
|
||
|
dependsOn(commonMain)
|
||
|
iosX64Main.dependsOn(this)
|
||
|
iosArm64Main.dependsOn(this)
|
||
|
iosSimulatorArm64Main.dependsOn(this)
|
||
|
dependencies {
|
||
|
implementation(libs.ktor.client.ios)
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
android {
|
||
|
sourceSets["main"].manifest.srcFile("src/androidMain/AndroidManifest.xml")
|
||
|
compileSdk = libs.versions.maxSdk.get().toInt()
|
||
|
defaultConfig {
|
||
|
minSdk = libs.versions.minSdk.get().toInt()
|
||
|
targetSdk = libs.versions.maxSdk.get().toInt()
|
||
|
}
|
||
|
compileOptions {
|
||
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
||
|
targetCompatibility = JavaVersion.VERSION_1_8
|
||
|
}
|
||
|
}
|