Skip to content

Commit

Permalink
Remove cocoapods plugin.
Browse files Browse the repository at this point in the history
  • Loading branch information
Julia Jakubcova committed Dec 14, 2022
1 parent 02666bc commit 293fa1e
Showing 1 changed file with 24 additions and 4 deletions.
28 changes: 24 additions & 4 deletions shared/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import org.jetbrains.kotlin.gradle.plugin.mpp.Framework

plugins {
kotlin("multiplatform") version "1.7.20"
kotlin("native.cocoapods") version "1.7.20"
id("com.android.library") version "7.2.2"
id("co.touchlab.faktory.kmmbridge") version "999"
`maven-publish`
Expand All @@ -18,9 +19,27 @@ repositories {
kotlin {
android()

iosX64()
iosArm64()
iosSimulatorArm64()
iosX64 {
binaries {
framework {
isStatic = true
}
}
}
iosArm64 {
binaries {
framework {
isStatic = true
}
}
}
iosSimulatorArm64 {
binaries {
framework {
isStatic = true
}
}
}

sourceSets {
val commonMain by getting
Expand All @@ -46,6 +65,7 @@ android {
}

kmmbridge {
frameworkName.set("KmmBridgeIntegrationTestSPMWithoutCommit")
versionPrefix.set("1.5")
spm(spmDirectory = "../", commitManually = true)
// For now the ios target takes whatever is the newest published Package.swift and doesn't care about the version
Expand Down

0 comments on commit 293fa1e

Please sign in to comment.