objective-ccocoapodsrmstore

How to handle Cocoapod dependency?


I'm creating my first cocoapod. It has a dependency on RMStore, so I added s.dependency "RMStore" to the podspec file. However, when I'm working on my framework, I always get errors saying that RMStore isn't available. So how do I handle this?


Solution

  • After adding s.dependency, you do indeed need to run pod install against your project so that the pods download and the pods project correctly references everything. Assuming you have an Example/Tester project with a Podfile that points to "your pod", this will download RMStore and configure everything for you.

    I prepared an example of how to do dependencies in developed pods and it's available here:

    https://github.com/ericwastaken/CocoaPod-Dependency-Demo