fkrauthan
02/06/2021, 4:49 AMThe feature "multi platform projects" is experimental and should be enabled explicitly
for a shared lib. But I do have in my gradle file this
targets.all {
compilations.all {
kotlinOptions {
freeCompilerArgs = listOf("-Xmulti-platform")
}
}
}
but the error does not go away. It is running fine but super annoying. Anyone know what todo?Javier
02/06/2021, 9:10 AMgradle.properties
but it says something about alpha state I think 🤔fkrauthan
02/08/2021, 6:04 PMJavier
02/08/2021, 6:08 PMfkrauthan
02/08/2021, 8:42 PMHankG
02/27/2021, 6:14 PMIngo Noka
04/21/2021, 10:40 AMkotlin.mpp.enableGranularSourceSetsMetadata=true
in gradle.properties. The warning goes away when I remove that setting and reload gradle.Javier
04/21/2021, 10:47 AMIngo Noka
04/21/2021, 10:48 AMJavier
04/21/2021, 10:50 AMIngo Noka
04/21/2021, 10:50 AMJavier
04/21/2021, 10:55 AM