I have a project which up to now only built for An...
# multiplatform
h
I have a project which up to now only built for Android, JVM and Web. I have now added an iOs module but Xcode fails with
w: 'java' Gradle plugin is not compatible with 'org.jetbrains.kotlin.multiplatform' plugin.
The module it fails on is not related to the iOs module, its just in the same project but the iOs module does not depend on it. How can I ensure Xcode only tries to build the relevant modules?
m
This seems like this warning would happen at gradle project configuration and not related to whether Xcode tries to build it. I would guess that the Java only module is adding both plugins. Might be that the root project is adding the multiplatform plugin without specifying to apply false or some convention plugin is adding it.