How to remove CocoaPods from a project?

前端 未结 19 1372
深忆病人
深忆病人 2020-11-22 05:17

What\'s the right way of removing CocoaPods from a project? I want to remove the whole CocoaPod. Due to some limitations imposed by my client I can\'t use it. I need to have

19条回答
  •  广开言路
    2020-11-22 05:38

    pod deintegrate

    After this cmd, no traces of Cocoapods left in your project.

    But your workspace referencing the Pods project still remains, you need to should remove below 3 files manually:

    xx.xcworkspace
    Podifle
    Podfile.lock

    Then you can use your project again.

    Have fun!

    Test CocoaPod version = 1.2.0

提交回复
热议问题