Hi there, not sure if this is for mp, ios or this ...
# kotlin-native
l
Hi there, not sure if this is for mp, ios or this channel, so please bear with me: stuck on a issue where I have added a native IOS target to an existing mp multi-module project. Simply added this to gradle.build:
Copy code
iosX64("ios") {
    binaries {
        framework()
    }
}
plus sourcesets, and implemented a few expected types. All compilation tasks run successfully but the
linkReleaseFrameworkIos
always fails with a Java assertion error somewhere in the native compiler with zero hints to actual cause. Link debug framework succeeds for iosX64 but will likewise also fail for iosArm64. I deliberately chose one of the stand-alone modules as to not also deal with dependency issues. Any pointer to how I should approach this problem is greatly appreciated 🙏 Searching the docs didn’t yield much in terms of debugging compilations issues. Thanks.
k
Having the same problem but with a previously working app