Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bitcode issue with some library and solution. #2

Closed
ihomecall opened this issue Sep 22, 2015 · 2 comments
Closed

bitcode issue with some library and solution. #2

ihomecall opened this issue Sep 22, 2015 · 2 comments

Comments

@ihomecall
Copy link

when I do pod install, and then compile, it always complains the bitcode not available for some of the library.

I found this solution. add this to the Podfile, it will disable bitcode for all library.

post_install do |installer|

installer.pods_project.targets.each do |target|

target.build_configurations.each do |config|

  config.build_settings['ENABLE_BITCODE'] = 'NO'

end

end

end

@kwkhaw
Copy link
Collaborator

kwkhaw commented Sep 22, 2015

@ihomecall Thanks, I will take a look into this. :-)

@kwkhaw
Copy link
Collaborator

kwkhaw commented Sep 24, 2015

@ihomecall I added it in this commit 8be32ef
Thanks!

@kwkhaw kwkhaw closed this as completed Sep 24, 2015
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants