In a 1.9.23 multiplatform project with `androidTar...
# gradle
r
In a 1.9.23 multiplatform project with
androidTarget
,
androidMain
shows up under the
main
source set when doing
gradle sourceSets
. I have no JVM target in this project. Is there a way to clean this up? Currently, IntelliJ creates the android module with name `main`:
c
This is how the Android plugin works in multiplatform projects 😕 it's hardcoded to be called
main
r
Ok, yeah I've noticed it before but always ignored it until today, when navigating to an actual it bugged me that I was navigating to
main
and not
androidMain
.
m
I think that the Android team is working on improving the agp with multiplatform projects, because I remember when the Kotlin team deprecated android() and replaced it with androidTarget() so the android team can use it. Just guessing.