File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed
src/main/kotlin/dev/icerock/gradle Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ repositories {
1313}
1414
1515dependencies {
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}
Original file line number Diff line number Diff line change 22kotlinVersion = " 1.6.10"
33androidGradlePluginVerison = " 7.0.4"
44publishPluginVersion = " 0.15.0"
5- mobileMultiplatformGradlePluginVersion = " 0.14.3 "
5+ mobileMultiplatformGradlePluginVersion = " 0.14.4 "
66
77[libraries ]
88androidGradlePlugin = { module = " com.android.tools.build:gradle" , version.ref = " androidGradlePluginVerison" }
Original file line number Diff line number Diff 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)
You can’t perform that action at this time.
0 commit comments