I recently upgraded my Swift iOS application from Xcode7
to Xcode8
and deployment platform from iOS 9.3
to iOS 10
. My application started breaking with errors like this:
Module file was created by an older version of the compiler: rebuild 'SwiftyJSON' and try again.
I Googled around and found this link on SO Module file was created by an older version of the compiler. Followed the instructions and removed the derived data and rebuilt using carthage update --no-use-binaries
command. But the application still fails to build and complains about the error message mentioned above.
Is SwiftyJSON
supported by Xcode 8
and iOS 10
?