spierce7
12/26/2025, 9:41 PMcom.android.kotlin.multiplatform.library ? I just migrated to fix the compiler warnings and it seemed like my only option was to create a separate Android app module to use the android application plugin.
I'm hitting MissingResourceException at runtime in the android app, as the target doesn't seem to have access to the composeResources from the shared compose library.
Is there an official fix, or do I need a manual workaround?Mark
12/27/2025, 3:35 AMspierce7
12/27/2025, 5:40 AM// Ensure Compose resources are prepared before Android asset merging
afterEvaluate {
tasks.matching { it.name.contains("merge") && it.name.contains("Assets") }.configureEach {
dependsOn(project(":app").tasks.named("jvmProcessResources"))
}
}zsmb
12/27/2025, 7:32 AM