Skip to content

Commit 0d86f04

Browse files
authored
Merge pull request #63 from icerockdev/develop
Release 0.14.4
2 parents ef1d159 + 8b0842a commit 0d86f04

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ repositories {
1313
}
1414

1515
dependencies {
16-
implementation("dev.icerock:mobile-multiplatform:0.14.3")
16+
implementation("dev.icerock:mobile-multiplatform:0.14.4")
1717
implementation("org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.25")
1818
implementation("com.android.tools.build:gradle:8.3.2")
1919
}

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
kotlinVersion = "1.6.10"
33
androidGradlePluginVerison = "7.0.4"
44
publishPluginVersion = "0.15.0"
5-
mobileMultiplatformGradlePluginVersion = "0.14.3"
5+
mobileMultiplatformGradlePluginVersion = "0.14.4"
66

77
[libraries]
88
androidGradlePlugin = { module = "com.android.tools.build:gradle", version.ref = "androidGradlePluginVerison" }

src/main/kotlin/dev/icerock/gradle/AppleFrameworkPlugin.kt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ open class AppleFrameworkPlugin : Plugin<Project> {
5454
val project: Project = framework.project
5555

5656
val outputDir = File(project.buildDir, "cocoapods/framework")
57-
val inputDir: File = framework.outputDirectory
57+
val inputDir: File = framework.outputFile
5858

5959
val syncTask: TaskProvider<Exec> = project.tasks.register(syncTaskName, Exec::class.java) {
6060
group = "cocoapods"
@@ -65,6 +65,7 @@ open class AppleFrameworkPlugin : Plugin<Project> {
6565
if (outputDir.exists()) {
6666
outputDir.deleteRecursively()
6767
}
68+
outputDir.mkdirs()
6869
}
6970
}
7071
syncTask.dependsOn(linkTask)

0 commit comments

Comments
 (0)