我有一个应用程序,其中包含两个与cocoapods,Braintree和GoogleAnalytics一起安装的libray。我想做的是从我的项目中删除Braintree。这是我项目根目录中的Podfile:
# Uncomment this line to define a global platform for your project
# platform :ios, '7.0'
target 'MyApp' do
pod 'Braintree'
pod 'Google/Analytics'
end
target 'MyAppTests' do
pod 'Braintree'
end
我试过这个solution,但也许我做错了。我的步骤是:开放终端 - >转到我的项目的根目录 - > $ pod更新。这将返回给我"找不到pod update命令"。删除Braintree库有什么错误或正确的步骤是什么?
答案 0 :(得分:1)
按以下方式更新您的pod文件
# Uncomment this line to define a global platform for your project
# platform :ios, '7.0'
target 'MyApp' do
#pod 'Braintree'
pod 'Google/Analytics'
end
target 'MyAppTests' do
#pod 'Braintree'
end
上面的文件,我评论了Braintree库。现在您需要执行pod update
或pod install
。
当您遇到错误"找不到pod update命令"时,您应该首先按照https://stackoverflow.com/a/37939140/1030951回答中的指示在您的mac中安装cocoapod。
答案 1 :(得分:0)
尝试运行此命令
sudo gem intall cocoa pods
然后再次尝试pod更新