115 lines
3.6 KiB
Kotlin
115 lines
3.6 KiB
Kotlin
/*
|
|
* The MIT License (MIT)
|
|
*
|
|
* Copyright (c) 2020-2022 Dmitriy Gorbunov (dmitriy.goto@gmail.com)
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
* in the Software without restriction, including without limitation the rights
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
* furnished to do so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be included in all
|
|
* copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
* SOFTWARE.
|
|
*/
|
|
|
|
import org.jetbrains.kotlin.gradle.plugin.mpp.KotlinNativeTarget
|
|
|
|
plugins {
|
|
kotlin("multiplatform")
|
|
kotlin("plugin.serialization")
|
|
id("com.android.library")
|
|
}
|
|
|
|
kotlin {
|
|
|
|
ios {
|
|
binaries {
|
|
framework {
|
|
baseName = "Common"
|
|
export(project(":premo"))
|
|
export(project(":premo-navigation"))
|
|
export(Libs.coroutinesCore)
|
|
}
|
|
}
|
|
}
|
|
|
|
jvm()
|
|
js(IR) {
|
|
browser()
|
|
}
|
|
android()
|
|
|
|
sourceSets {
|
|
|
|
all {
|
|
languageSettings.optIn("kotlin.RequiresOptIn")
|
|
}
|
|
|
|
val commonMain by getting {
|
|
dependencies {
|
|
api(project(":premo"))
|
|
api(project(":premo-navigation"))
|
|
api(Libs.coroutinesCore)
|
|
api(Libs.kotlinxSerializationJson)
|
|
api(Libs.kotlinxSerializationProtobuf)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
android {
|
|
compileSdk = AndroidSdk.compile
|
|
sourceSets["main"].manifest.srcFile("src/androidMain/AndroidManifest.xml")
|
|
defaultConfig {
|
|
minSdk = AndroidSdk.min
|
|
targetSdk = AndroidSdk.target
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
|
targetCompatibility = JavaVersion.VERSION_1_8
|
|
}
|
|
sourceSets {
|
|
getByName("main").java.srcDirs("src/androidMain/kotlin")
|
|
}
|
|
}
|
|
|
|
val packForXcode by tasks.creating(Sync::class) {
|
|
group = "build"
|
|
val mode = System.getenv("CONFIGURATION") ?: "DEBUG"
|
|
val sdkName = System.getenv("SDK_NAME") ?: "iphonesimulator"
|
|
val targetName = "ios" + if (sdkName.startsWith("iphoneos")) "Arm64" else "X64"
|
|
val framework = kotlin.targets.getByName<KotlinNativeTarget>(targetName).binaries.getFramework(mode)
|
|
inputs.property("mode", mode)
|
|
dependsOn(framework.linkTask)
|
|
val targetDir = File(buildDir, "xcode-frameworks")
|
|
from({ framework.outputDirectory })
|
|
into(targetDir)
|
|
|
|
/// generate a helpful ./gradlew wrapper with embedded Java path
|
|
doLast {
|
|
val gradlew = File(targetDir, "gradlew")
|
|
gradlew.writeText("#!/bin/bash\n"
|
|
+ "export 'JAVA_HOME=${System.getProperty("java.home")}'\n"
|
|
+ "cd '${rootProject.rootDir}'\n"
|
|
+ "./gradlew \$@\n")
|
|
gradlew.setExecutable(true)
|
|
}
|
|
}
|
|
|
|
tasks.getByName("build").dependsOn(packForXcode)
|
|
|
|
kotlin.targets.withType(KotlinNativeTarget::class.java) {
|
|
binaries.all {
|
|
binaryOptions["memoryModel"] = "experimental"
|
|
}
|
|
} |