If anyone else has recently updated to the `com.an...
# compose-android
s
If anyone else has recently updated to the
com.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:
Copy code
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.