2022-03-04 01:55:41 +00:00
|
|
|
plugins {
|
|
|
|
kotlin("multiplatform")
|
|
|
|
id("com.android.library")
|
2022-10-19 01:29:37 +00:00
|
|
|
kotlin("plugin.serialization")
|
2022-03-04 01:55:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
kotlin {
|
|
|
|
android()
|
2022-10-19 01:29:37 +00:00
|
|
|
listOf(iosArm64(), iosSimulatorArm64()).forEach {
|
2022-03-04 01:55:41 +00:00
|
|
|
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)
|
2022-12-15 14:56:05 +00:00
|
|
|
implementation(libs.kotlinx.datetime)
|
2022-03-04 01:55:41 +00:00
|
|
|
implementation(libs.kotlinx.serialization.json)
|
2022-03-13 04:23:35 +00:00
|
|
|
api(libs.multiplatform.settings)
|
2022-03-04 01:55:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
val androidMain by getting {
|
|
|
|
dependencies {
|
|
|
|
implementation(libs.ktor.client.android)
|
2022-12-24 04:28:14 +00:00
|
|
|
implementation(libs.plausible)
|
2022-03-04 01:55:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
val iosArm64Main by getting
|
|
|
|
val iosSimulatorArm64Main by getting
|
|
|
|
val iosMain by creating {
|
|
|
|
dependsOn(commonMain)
|
|
|
|
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
|
|
|
|
}
|
2022-06-25 19:18:08 +00:00
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
consumerProguardFiles("proguard-rules.pro")
|
|
|
|
}
|
|
|
|
}
|
2022-03-04 01:55:41 +00:00
|
|
|
}
|