I have a commonNativeMain
source set and stubs generated from an Objective-C framework for many Apple targets. Of course the stubs have exactly the same APIs so I’d like to write once in nativeCommonMain
and then compile for each target platform, so i went for:
val nativeCommonMain by creating {
dependsOn(commonMain)
}
val iosArm64Main by getting {
dependsOn(nativeCommonMain)
}
val iosX64Main by getting {
dependsOn(nativeCommonMain)
}
val macosX64Main by getting {
dependsOn(nativeCommonMain)
}
Now, while this solution compiles just fine, the code completion of IntelliJ IDEA does not know nothing about the stubs when inside commonNativeMain
, which is very unpleasant!
Is there a solution to this problem?