I'm feeling increasingly uncomfortable with the 'n...
# multiplatform
d
I'm feeling increasingly uncomfortable with the 'new' platform-per-source-set approach, and feel like I ought to return to a platform-per Gradle Module. Is this still supported? Specifically; plugins clash: I want to create a JavaFX Desktop version of my App, alongside an Android version, where the required
java
plugin and
android
plugin are mutually exclusive in one Gradle module (Gradle terminates with
The 'java' plugin has been applied, but it is not compatible with the Android plugins.
). Even if I somehow overcame this limitation; having supporting plugins for different platforms in the same Gradle configuration space seems troublesome. Is there some way of scoping these plugins per-target that I'm missing?
1