You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After prebuild Pods with xcframework: true param, the plugin will compile the following bundles:
./Pods/%FRAMEWORK%/_Prebuilt/%BUNLE%.bundle
This bundle has Info.plist file with the following key DTPlatformName: iphonesimulator
./Pods/%FRAMEWORK%/_Prebuilt/%FRAMEWORK%.xcframework/ios-arm64/%FRAMEWORK%.framework/%BUNLE%.bundle
This bundle has Info.plist file with the following key DTPlatformName: iphoneos
./Pods/%FRAMEWORK%/_Prebuilt/%FRAMEWORK%.xcframework/ios-arm64_x86_64-simulator/%FRAMEWORK%.framework/%BUNLE%.bundle
This bundle has Info.plist file with the following key DTPlatformName: iphonesimulator
After the pod install command build phase [CP] Copy Pods Resources install bundle №1 by the following command in Pods-RetailCRM-resources.sh:
When I tried to upload my project to the AppStore, I got the following error:
Invalid CFBundleSupportedPlatforms value. The key 'CFBundleSupportedPlatforms' in the Info.plist file in bundle 'Payload/App.app/%BUNDLE%.bundle' contains an invalid value '[iPhoneSimulator]'. Consider removing the CFBundleSupportedPlatforms key from the Info.plist. If this bundle is part of a third-party framework, consider contacting the developer of the framework for an update to address this issue.
Checklist
Issue Description
When I prebuild some frameworks with bundle resources, they have duplicate resource bundles.
Example:
the framework has the following resource description in the .podspec file:
After prebuild Pods with
xcframework: true
param, the plugin will compile the following bundles:./Pods/%FRAMEWORK%/_Prebuilt/%BUNLE%.bundle
This bundle has Info.plist file with the following key
DTPlatformName: iphonesimulator
./Pods/%FRAMEWORK%/_Prebuilt/%FRAMEWORK%.xcframework/ios-arm64/%FRAMEWORK%.framework/%BUNLE%.bundle
This bundle has Info.plist file with the following key
DTPlatformName: iphoneos
./Pods/%FRAMEWORK%/_Prebuilt/%FRAMEWORK%.xcframework/ios-arm64_x86_64-simulator/%FRAMEWORK%.framework/%BUNLE%.bundle
This bundle has Info.plist file with the following key
DTPlatformName: iphonesimulator
After the
pod install
command build phase[CP] Copy Pods Resources
install bundle №1 by the following command in Pods-RetailCRM-resources.sh:install_resource "${PODS_ROOT}/%FRAMEWORK%/_Prebuilt/%BUNLE%.bundle"
When I tried to upload my project to the AppStore, I got the following error:
Here is my config:
The text was updated successfully, but these errors were encountered: