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

Getting this error again and again in IOS #78

Open
GobindaSaha opened this issue Sep 9, 2020 · 2 comments
Open

Getting this error again and again in IOS #78

GobindaSaha opened this issue Sep 9, 2020 · 2 comments

Comments

@GobindaSaha
Copy link

GobindaSaha commented Sep 9, 2020

CompileSwiftSources normal x86_64 com.apple.xcode.tools.swift.compiler
Screen Shot 2020-09-09 at 11 53 54 PM

@GobindaSaha GobindaSaha changed the title Getting this error again and again Getting this error again and again in IOS Sep 9, 2020
@AndyUGA
Copy link

AndyUGA commented Feb 21, 2021

I know it's a late reply but I was getting a similar error and this is what I did to fix it for anyone else running into a similar issue.

  1. I recloned the repo.
  2. Make sure change into the example folder of the current repo
  3. Run 'yarn install'
  4. Then change into the ios folder and run 'pod install'
  5. Then open Xcode and open the 'Test.xcworkspace' file located in './example/ios/Test.xcworkspace'
  6. Then build the application and it should work.

Hopefully this works for you or anyone else who is running into a similar issue!

@quriosapien
Copy link

quriosapien commented May 22, 2021

@GobindaSaha
Are you still facing this issue or is it resolved ??
Can we proceed with closing this ticket ?

You can refer this - CocoaPods/CocoaPods#9884 (comment)

tldr; Add this to your Podfile to change to iPhoneOS Deployment Target to 9.0

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

Please execute pod install in the ios folder of your project after adding this snippet.

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

3 participants