How to remove one of the cocoa pods plugin from Xcode project

后端 未结 4 2122
逝去的感伤
逝去的感伤 2021-02-12 23:19

anyone know how to remove one of the cocoa pods plugin from Xcode project ? For example, I have installed afnetworking and nyximagekit in my project. N

相关标签:
4条回答
  • 2021-02-12 23:47

    You have to edit the Podfile ($ emacs Podfile in terminal.app) and remove the line pod 'nyximagekit' from it. (ctrl+x, ctrl+s to save, then ctrl-x, ctrl+c to quit emacs)

    Once you did that, run pod update and it will remove nyximagekit from your project.

    0 讨论(0)
  • 2021-02-12 23:50

    pictorial information detailed

    0 讨论(0)
  • 2021-02-13 00:00

    Remove the pod from your podfile, then run pod install again.

    0 讨论(0)
  • 2021-02-13 00:08

    Just remove that pod line that you want to remove and run pod update !

    0 讨论(0)
提交回复
热议问题