Skip to content

Commit

Permalink
Merge pull request #1239 from kpgalligan/kpg/kmmbridge-setup
Browse files Browse the repository at this point in the history
try fix
  • Loading branch information
joreilly authored Apr 5, 2024
2 parents ad597f1 + 9136012 commit c66e4dd
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions shared/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -218,14 +218,22 @@ dependencies {
coreLibraryDesugaring(libs.desugar)
}

version = "0.9"
val autoVersion = project.property(
if (project.hasProperty("AUTO_VERSION")) {
"AUTO_VERSION"
} else {
"LIBRARY_VERSION"
}
) as String

kmmbridge {
frameworkName.set("ConfettiKit")
addGithubPackagesRepository()
mavenPublishArtifacts()
spm()
timestampVersions()
}

addGithubPackagesRepository()

kotlin.sourceSets.all {
languageSettings.optIn("kotlin.experimental.ExperimentalObjCName")
}
Expand Down

0 comments on commit c66e4dd

Please sign in to comment.