Stylianos Gakis
04/09/2026, 2:34 PMembedAndSignAppleFrameworkForXcode works just fine on the project consuming the shared code, however when publishing the xcframework to a GitHub release and then bringing the dependency to the iOS codebase we get an error like
org.jetbrains.compose.resources.MissingResourceException: Missing resource with path: ..../private/var/containers/Bundle/Application/.../....app/compose-resources/composeResources/.../font/custom_font.otf
but I've been unable to find a way to fix this issueStylianos Gakis
04/09/2026, 2:34 PMStylianos Gakis
04/09/2026, 2:38 PMStylianos Gakis
04/10/2026, 1:47 PMStylianos Gakis
04/13/2026, 9:57 AMembedAndSignAppleFrameworkForXcode it seems to work fine fwiw.
When exporting it by doing assemble<<NAME>>ReleaseXCFramework and then zipping and uploading the XCFramework to a GitHub release then we get the error mentioned above. Are there extra steps required to make it work in this scenario? Because I have been unable to find something in the documentation so far.Stylianos Gakis
04/13/2026, 10:09 AMKonstantin Tskhovrebov
04/13/2026, 10:14 AMStylianos Gakis
04/13/2026, 10:19 AMfullTargetsAppWithResources project that the test also uses to see how mine differsKonstantin Tskhovrebov
04/13/2026, 10:25 AMKonstantin Tskhovrebov
04/13/2026, 10:25 AMStylianos Gakis
04/13/2026, 11:14 PMHedvigShared.framework >
| > composeResources
| | > hedvig.resources
| | | > drawable
| | | > font
| | | > values
| | | > values-sv-rSE
| | > othermodules...
| > Headers
| > Modules
| > ...
So that part should be working fine after all. So I suppose it should be on the other end.
More specifically, on the iOS side the error says:
org.jetbrains.compose.resources.MissingResourceException: Missing resource with path: /private/var/containers/Bundle/Application/A2D702C1-FA2D-547F-9C7A-ECB6E2754D17/Ugglan.app/compose-resources/composeResources/hedvig.resources/values/strings.commonMain.cvr
Do you know if there's a way for me to debug it on the other end too, to try to look inside the generated file on the iOS side and see what exists inside the path that it's trying to look at?Stylianos Gakis
04/13/2026, 11:14 PMStylianos Gakis
04/13/2026, 11:15 PMStylianos Gakis
04/17/2026, 11:58 AM