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

error compiling #74

Closed
geekhenno opened this issue Jan 19, 2021 · 4 comments · Fixed by #72
Closed

error compiling #74

geekhenno opened this issue Jan 19, 2021 · 4 comments · Fixed by #72

Comments

@geekhenno
Copy link

Hello,
I got this error after added the package in pubspec.yaml

error: compiling for iOS 8.0, but module 'FBSDKCoreKit' has a minimum deployment target of iOS 9.0

@charliegaldamez
Copy link

For now, I could resolve this by adding this to the Podfile

post_install do |installer|
  installer.pods_project.targets.each do |target|
    target.build_configurations.each do |config|
      config.build_settings['ENABLE_BITCODE'] = 'NO'
        config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '9.0'
    end
  end
end

Hope it can work for you, too.

@DennisAlund
Copy link
Member

For further reference, also please use issue template so that it's easier for us to get all the necessary information 🙏

image

This was referenced Feb 9, 2021
@DennisAlund
Copy link
Member

Please let me know if this is related to the same discussion as in #64 (comment)

@DennisAlund DennisAlund linked a pull request Feb 9, 2021 that will close this issue
@DennisAlund
Copy link
Member

Fixed in #72

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

Successfully merging a pull request may close this issue.

3 participants