Kotlin-Native CompileKotlinIos task fails beacuse Cinterop task can not update when I change Objective-C code

582 Views Asked by At

@Kevin Galligan My company has a iOS project using Kotlin-Native, and I add a cinterop to the project like this in build.gradle.kts:

val CommonInterop by cinterops.creating {
      defFile(project.file("${commonBridgePath}/CommonBridge.def"))
      compilerOpts("-I$commonBridgePath")
    }

Everything runs well, the ios project compiles successfully, but when I add a objective-C function in cinterop and invoke this function in kotlin file, then build ios project, Xcode tells me that kotlin-native module compile fails.

I know why the compile fails, because compiler does not create corresponding kotlin function when I add new Objective-c function.

The cinterop task is skipped, In fact the task should not be skipped because objc code changed. enter image description here

But after I run the command "gradelw clean", then rebuild the project in xcode, it runs well, objc function is invocked successfully.

Hope Kotlin-Native team can fix this bug quickly, thanks a lot!

my xcode podspec file look like this: enter image description here

and my cinterop configuration looks like this: enter image description here

0

There are 0 best solutions below