Trevor
Trevor

Reputation: 2467

xcode cocoapods cant find pod module

I have a project that I work on one computer with. I installed it and it runs fine.

I have another computer and tried to run the project. It tells me it can't find a module...even though it says it downloaded and installed the module and I followed the same steps as the other computer

enter image description here enter image description here

Any ideas?

Checklist:

  1. restarted xcode,
  2. cleaned project,
  3. updated xcode,
  4. opened project from 3 workspace, folder and project,
  5. built module from scheme (no problems)

Upvotes: 0

Views: 91

Answers (1)

Thomas Maw
Thomas Maw

Reputation: 423

I think the import you are using is wrong, it should be:

import Reachability

Not:

import ReachabilitySwift

Upvotes: 1

Related Questions