Hi There, In the KMM project, where we are using `...
# multiplatform
s
Hi There, In the KMM project, where we are using
JetBrains resources
, everything works fine when running Android and iOS targets directly. However, after exporting it as a fat framework and integrating it into a native iOS app, I get this error:
Uncaught Kotlin exception: org.jetbrains.compose.resources.MissingResourceException: Missing resource with path.
To confirm, I created a new KMM project using JetBrains resources with just a single string resource, "hello." While it worked directly on Android and iOS, the same error appeared after exporting it as a fat framework. Switching to the
moko-resources
library resolves the issue, and everything works perfectly. YouTrack :- Link
🤣 1
l
When you encounter that error, try running the command
pod install
inside the
ios
path of your project. This command worked for me to resolve the issue.
s
I tried running
pod install
in the
ios
directory, but the issue still isn't fixed.
l
try to clean and build again the project
s
@eygraber yes
👍 1