Skip to content

Commit

Permalink
Merge pull request #63 from icerockdev/develop
Browse files Browse the repository at this point in the history
Release 0.14.4
  • Loading branch information
Alex009 authored Sep 29, 2024
2 parents ef1d159 + 8b0842a commit 0d86f04
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ repositories {
}

dependencies {
implementation("dev.icerock:mobile-multiplatform:0.14.3")
implementation("dev.icerock:mobile-multiplatform:0.14.4")
implementation("org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.25")
implementation("com.android.tools.build:gradle:8.3.2")
}
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
kotlinVersion = "1.6.10"
androidGradlePluginVerison = "7.0.4"
publishPluginVersion = "0.15.0"
mobileMultiplatformGradlePluginVersion = "0.14.3"
mobileMultiplatformGradlePluginVersion = "0.14.4"

[libraries]
androidGradlePlugin = { module = "com.android.tools.build:gradle", version.ref = "androidGradlePluginVerison" }
Expand Down
3 changes: 2 additions & 1 deletion src/main/kotlin/dev/icerock/gradle/AppleFrameworkPlugin.kt
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ open class AppleFrameworkPlugin : Plugin<Project> {
val project: Project = framework.project

val outputDir = File(project.buildDir, "cocoapods/framework")
val inputDir: File = framework.outputDirectory
val inputDir: File = framework.outputFile

val syncTask: TaskProvider<Exec> = project.tasks.register(syncTaskName, Exec::class.java) {
group = "cocoapods"
Expand All @@ -65,6 +65,7 @@ open class AppleFrameworkPlugin : Plugin<Project> {
if (outputDir.exists()) {
outputDir.deleteRecursively()
}
outputDir.mkdirs()
}
}
syncTask.dependsOn(linkTask)
Expand Down

0 comments on commit 0d86f04

Please sign in to comment.