从cocoapod项目中只删除一个库,我该怎么办?

时间:2016-06-21 08:20:21

标签: ios cocoapods braintree

我有一个应用程序,其中包含两个与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库有什么错误或正确的步骤是什么?

2 个答案:

答案 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 updatepod install

当您遇到错误"找不到pod update命令"时,您应该首先按照https://stackoverflow.com/a/37939140/1030951回答中的指示在您的mac中安装cocoapod。

答案 1 :(得分:0)

尝试运行此命令

sudo gem intall cocoa pods

然后再次尝试pod更新