Cocoapods: Unable to find a specification for [PrivateSpec] depended upon by [PrivateClientSpec]

前端 未结 4 932
渐次进展
渐次进展 2020-12-07 18:00

I am trying to use private repositories to break up a larger application. I have followed the guides at:

  • http://www.objectpartners.com/2014/06/25/developing-p
4条回答
  •  粉色の甜心
    2020-12-07 18:25

    In order for pod install to work properly I still had to add:

    source ''
    source 'https://github.com/CocoaPods/Specs.git'
    

    ..to the pod file (not podspec).

    To get rid of:

    Unable to find a specification for [PrivateSpec] depended upon by [PrivateClientSpec]

提交回复
热议问题