spierce7
04/18/2023, 12:54 AMVariable 'commonMain' is never used
It comes from the unused sourcesets we have all over the place, which I think it's the common convention, is it not?:
sourceSets {
val commonMain by getting {
dependencies {
}
}
val jvmMain by getting {
dependencies {
}
}
val jvmTest by getting {
dependencies {
}
}
}
Javier
04/18/2023, 12:59 AMcommonMain { }
named("jvmMain") { }
spierce7
04/18/2023, 1:00 AMby getting
and by creating
.Johann Pardanaud
04/18/2023, 1:14 AMJavier
04/18/2023, 1:16 AMcommonMain
in an included buildAdam S
04/18/2023, 6:45 AM