cocoapods - How do I use a pod inside of a private pod -
i have created private pod, let's call private, , contains common functionality want share across apps. (i'm not sure matters it's private, that's situation.)
private depends on third-party pod, let's call thirdparty.
private has own podfile, specifies uses thirdparty normal syntax: pod thirdparty
private builds fine.
i have podspec private, specifies:
s.dependency thirdparty
the podspec lints fine.
i have app, let's call app.
app has podfile, , specifies uses private pod private, such:
pod private
using private pod in way has worked fine, until tried use thirdparty in private.
now, when build app, error in file private says: no such module thirdparty
what gives? i've tried specifying app needs pod thirdparty
in app's podfile well, no luck.
Comments
Post a Comment