cocoapods-binary icon indicating copy to clipboard operation
cocoapods-binary copied to clipboard

Pod does not contain bitcode. You must rebuild it with bitcode enabled #54

Open alouanemed opened this issue 5 years ago • 3 comments

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.

alouanemed avatar Jun 24 '19 12:06 alouanemed

Maybe you need to add enable_bitcode_for_prebuilt_frameworks! in your Podfile ? Explained here: https://github.com/leavez/cocoapods-binary#options

kenjitayama avatar Jul 18 '19 05:07 kenjitayama

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.

jctaoo avatar Jul 29 '20 10:07 jctaoo

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

PH9 avatar Mar 19 '21 07:03 PH9