I have a project set up following <https://kotlinl...
# ios
l
I have a project set up following https://kotlinlang.org/docs/native-cocoapods.html#add-and-configure-kotlin-cocoapods-gradle-plugin that worked fine last week, but now when I build, the ‘shared’ framework in the cocoapods folder only has a header file named ‘placeholder.h’ with nothing useful in it. My app won’t compile anymore, since XCode can’t find any of the classes in my KMM library.
The contents of placeholder.h
Copy code
// Autogenerated placeholder header. Do not edit manually.
k
There’s a “bug” related to that. You need to run
pod install
, try to build with Xcode (that’ll fail), then run
pod install
again
l
I’ll have to try that. Hopefully it’s fixed in a 1.6.30 or something.
k
It's been an issue for some time, so I don't know...