cocoapods-binary
cocoapods-binary copied to clipboard
Pod does not contain bitcode. You must rebuild it with bitcode enabled #54
Pods with :binary => true make archiving the project fails with the error below:
ld: '/Users/alouanemed/Projects/iOS/Pods/DropDown/DropDown.framework/DropDown' does not contain bitcode. You must rebuild it with bitcode enabled (Xcode setting ENABLE_BITCODE), obtain an updated library from the vendor, or disable bitcode for this target. file '/Users/alouanemed/Projects/iOS/Pods/DropDown/DropDown.framework/DropDown' for architecture arm64
I am using the latest Xcode, Cocopoads and plugin.
Maybe you need to add enable_bitcode_for_prebuilt_frameworks!
in your Podfile ?
Explained here:
https://github.com/leavez/cocoapods-binary#options
Maybe you need to add
enable_bitcode_for_prebuilt_frameworks!
in your Podfile ? Explained here: https://github.com/leavez/cocoapods-binary#options
it works for me! Thanks! archive Succeeded.
Maybe you need to add
enable_bitcode_for_prebuilt_frameworks!
in your Podfile ? Explained here: https://github.com/leavez/cocoapods-binary#options
I got an error for unit testing #131