How do you make resources available in the resource manager UI in a Compose Multiplatform project?
Followed the documentation in Jetbrains Resources Overview for KMP.
I can access the files in the code, but none is listed on the Resources Manager UI.
Also, I added it to my build.gradle:
android {
namespace = "com.feeltheboard.fo"
compileSdk = libs.versions.androidpileSdk.get().toInt()
sourceSets["main"].manifest.srcFile("src/androidMain/AndroidManifest.xml")
sourceSets["main"].res.srcDirs("src/androidMain/res")
sourceSets["main"].resources.srcDirs("src/commonMain/composeResources")
- Tried to remove the androidMain/res from the sourceSets, still the same.