Reputation: 1205
After migrating my project from Swift 2.2 to 3.0 I get an error message on the Kanna framework, saying that
Module file was created by an older version of the compiler. Rebuild Kanna and try again
Have I done anything wrong or does the Kanna framework not work under Swift 3.0?
Upvotes: 1
Views: 866
Reputation: 21
To use Kanna library (CocoaPods) you need add it to your Podfile:
use_frameworks!
pod 'Kanna', git: 'https://github.com/tid-kijyun/Kanna.git', branch: 'swift3.0'
then in terminal:
rm Podfile.lock (if exist)
pod init
pod update
pod install
Take tutorial from here
Upvotes: 2
Reputation: 403
There is a now a working version for Swift 3.0, using carthage. Everything is described here: Kanna github
Upvotes: 1