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

If I do this, i am getting the next error: "path/BVLinearGradient does not contain bitcode. You must rebuild it with bitcode enabled" #36559

Closed
mfernandezgarcia opened this issue Mar 21, 2023 · 1 comment
Labels
Type: Invalid This issue does not belong here. Applying this label will cause issue to be closed.

Comments

@mfernandezgarcia
Copy link

Make sure to disable Bitcode in Xcode settings for every project/targets, and also add this in your Podfile inside postinstall (where react_native_post_install is)

installer.pods_project.targets.each do |target|
  target.build_configurations.each do |config|
    # Bitcode is deprecated by Apple
    config.build_settings['ENABLE_BITCODE'] = 'NO'
  end
end

Originally posted by @Minishlink in #34148 (comment)

@cortinico cortinico added the Type: Invalid This issue does not belong here. Applying this label will cause issue to be closed. label Mar 31, 2023
@github-actions
Copy link

⚠️ Issue is Invalid
ℹ️ This issue doesn't match any of the expected types for this repository - closing.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Type: Invalid This issue does not belong here. Applying this label will cause issue to be closed.
Projects
None yet
Development

No branches or pull requests

2 participants