Unable to find a specification in CocoaPods

后端 未结 17 2495
醉酒成梦
醉酒成梦 2020-12-07 15:31

I cannot understand why the Cocoapod is unable to find the pod specification I created when I run pod install. Could someone help me solve this trouble?

17条回答
  •  春和景丽
    2020-12-07 15:56

    I missed adding , causing issue.

    Replacing,

    pod 'PodName' '~> 2.3'
    

    With,

    pod 'PodName', '~> 2.3'
    

    Did the job.

提交回复
热议问题