I use cocoapods plugin to run iOS app, and it work...
# compose-ios
f
I use cocoapods plugin to run iOS app, and it works fine with resources.But when I run gradle task 'podPublishReleaseXCFramework' to publish framework and connect it to the iOS app, it will crash.How can i solve this problem?
Copy code
kfun:org.jetbrains.compose.resources.MissingResourceException#<init>(kotlin.String){} + 123 
    at 1   RedMarch                            0x104e4dd7b        kfun:org.jetbrains.compose.resources.object-2.read#internal + 2295 
    at 2   RedMarch                            0x105004fc3        kfun:org.jetbrains.compose.resources.ResourceReader#read#suspend(kotlin.String;kotlin.coroutines.Continuation<kotlin.ByteArray>){}kotlin.Any-trampoline + 211 
    at 3   RedMarch                            0x104e50183
f
Check in the generated framework if the assets are stored inside
if it’s empty, check the documentations of shared resources with Compose multiplatorm
f
If I just run iosApp it works fine I can't find any information in the shared resource documentation with cocoapods plugin podPublishReleaseXCFramework.Is there any relevant document url?