0

I am using XCode 8.3 and I am trying to Run my project which is connected with link and now I have a XCode Error: Module compiled with Swift 3.0.2 cannot be imported in Swift 3.1 So my question is how to update the version of the framework? I downloaded this framework from the link that I've posted above.

Community
  • 1
  • 1
Bogdan Bogdanov
  • 882
  • 11
  • 36
  • 79

1 Answers1

1

I think that you need to update CocoaPods to a newer version supports XCode 8 (CocoaPods 1.1.0 or newer):

sudo gem install cocoapods

Then do a pod update to fix your dependencies that are not linking:

pod update

Delete the DerivedData folder for your project and rebuild, the link error should be gone.