Sargun Vohra
06/24/2025, 7:08 AMcom.android.kotlin.multiplatform.library
plugin and you’re experiencing a MissingResourceException
because your library includes resources, you need to explicitly opt in to resources with an experimental flag:
kotlin {
androidLibrary {
experimentalProperties["android.experimental.kmp.enableAndroidResources"] = true
}
}
The migration guide doesn’t call this out but I found it mentioned in a YouTrack issue. Sharing here for viz.