| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- plugins {
- kotlin("multiplatform")
- // kotlin("native.cocoapods")
- id("com.android.library")
- id("org.jetbrains.compose")
- }
- kotlin {
- androidTarget()
- jvm("desktop")
- // iosX64()
- // iosArm64()
- // iosSimulatorArm64()
- // cocoapods {
- // version = "1.0.0"
- // summary = "Some description for the Shared Module"
- // homepage = "Link to the Shared Module homepage"
- // 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(compose.runtime)
- implementation(compose.foundation)
- implementation(compose.material)
- @OptIn(org.jetbrains.compose.ExperimentalComposeLibrary::class)
- implementation(compose.components.resources)
- implementation(files("libs/shared-desktop.jar"))
- implementation(files("libs/shared-release.aar"))
- implementation("com.cicoe.note:shared:1.0")
- //implementation(files("libs/drawlib-commonMain.jar"))
- }
- }
- val androidMain by getting {
- dependencies {
- api("androidx.activity:activity-compose:1.6.1")
- api("androidx.appcompat:appcompat:1.6.1")
- api("androidx.core:core-ktx:1.9.0")
- // implementation(files("libs/shared-release.aar"))
- }
- }
- // 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)
- // }
- val desktopMain by getting {
- dependencies {
- implementation(compose.desktop.common)
- // implementation(files("libs/shared-desktop.jar"))
- }
- }
- }
- }
- android {
- compileSdk = (findProperty("android.compileSdk") as String).toInt()
- namespace = "com.myapplication.common"
- sourceSets["main"].manifest.srcFile("src/androidMain/AndroidManifest.xml")
- sourceSets["main"].res.srcDirs("src/androidMain/res")
- sourceSets["main"].resources.srcDirs("src/commonMain/resources")
- defaultConfig {
- minSdk = (findProperty("android.minSdk") as String).toInt()
- targetSdk = (findProperty("android.targetSdk") as String).toInt()
- }
- compileOptions {
- sourceCompatibility = JavaVersion.VERSION_11
- targetCompatibility = JavaVersion.VERSION_11
- }
- kotlin {
- jvmToolchain(11)
- }
- }
|