Hi
I'm facing issue packaging my kmp library with compose ui and resources (images/strings) using cocoapods plugin,
Currently using this task to package
podPublishReleaseXCFramework
the framework is generated under
build/cocoapods/publish/release
In the podspec file it links the resources with this line
spec.resources = ['build/compose/cocoapods/compose-resources']
I'm manually copying
build/compose/cocoapods/compose-resources
into
build/cocoapods/publish/release
While keeping the nested folders
Should
podPublishReleaseXCFramework
handle that ? is there another task i should use ?
Also i have to run the project once using xcode/plugin to generate the resources
What's a proper way/workaround to package iOS pod with compose resources ?