Pod install displaying error in cocoapods version 1.0.0.beta.1

后端 未结 12 1033
傲寒
傲寒 2020-12-07 10:03

My podfile was working but after updating to cocoapods version 1.0.0.beta.1

pod install displays following error

MacBook-Pro:iOS-TuneIn home$ pod ins         


        
12条回答
  •  执笔经年
    2020-12-07 10:36

    After the new changes to cocoapods, You have to add the following lines to your podfile.

    target "YOUR_PROJECT_NAME" do
    
         pod "YOUR_POD"
    
    end
    

提交回复
热议问题