Adariel Lzinski
Adariel Lzinski

Reputation: 1121

Xcode can't find cocoapods module

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.

enter image description here

I build the project and I just get riddled with errors:

enter image description here

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

Answers (1)

Razib Mollick
Razib Mollick

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

Related Questions