Reputation: 1121
I feel like this should be so simple yet I can't get this to work.
I simply downloaded a test project from github here, and installed the required module 'CryptoSwift' from cocoapods.
I build the project and I just get riddled with errors:
I've cleaned the project, deleted and started over but I can't get this to work at all. Any help would be greatly appreciated.
Upvotes: 0
Views: 372
Reputation: 5052
Your CryptoSwift download framework is not compatible with your code. If you use swift 4, use the following version:
pod 'CryptoSwift', '~> 0.7.1'
Swift 3:
pod 'CryptoSwift', '~> 0.7.0'
Upvotes: 1