Ahmed na
12/31/2024, 1:04 AMpodPublishReleaseXCFramework
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 ?Konstantin Tskhovrebov
12/31/2024, 10:04 AMAhmed na
01/01/2025, 4:23 AM/Applications/Xcode.app/Contents/Developer/usr/bin/xcodebuild -workspace /iosApp/iosApp.xcworkspace -scheme iosApp -configuration Debug OBJROOT=/build/ios SYMROOT=/build/ios -allowProvisioningDeviceRegistration -allowProvisioningUpdates
• Generate framework
podPublishReleaseXCFramework
• copy build
cp -R build/compose/cocoapods/compose-resources build/cocoapods/publish/release/build/compose/cocoapods/
Konstantin Tskhovrebov
01/01/2025, 10:57 PMAntoine Lamy
03/16/2025, 5:24 AM