just a comment : `"org.jetbrains.compose.component...
# multiplatform
f
just a comment :
"org.jetbrains.compose.components:components-resources"
works with:
Copy code
sourceSets {
    named("main") {
        resources.srcDir("src/commonMain/resources")
    }
}
but not with:
sourceSets["main"].res.srcDirs("src/commonMain/resources")
j
Are you sure the first one is top level
sourceSets
? Or it is inside
kotlin
block?
Copy code
kotlin {
    sourceSets { ... }
}
res
is not only for Android resources?
f
both of them inside android { ... }
r
res
and
resources
are not the same thing
f
resources: The Java-style resources for this source-set res: The Android Resources directory for this source-set.