Francis Mariano
03/06/2023, 2:34 PM"org.jetbrains.compose.components:components-resources"
works with:
sourceSets {
named("main") {
resources.srcDir("src/commonMain/resources")
}
}
but not with:
sourceSets["main"].res.srcDirs("src/commonMain/resources")
Javier
03/06/2023, 2:43 PMsourceSets
? Or it is inside kotlin
block?
kotlin {
sourceSets { ... }
}
res
is not only for Android resources?Francis Mariano
03/06/2023, 2:57 PMrusshwolf
03/06/2023, 2:59 PMres
and resources
are not the same thingFrancis Mariano
03/06/2023, 3:03 PM