Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

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. Now, I want to remove nyximagekit but keep afnetwoking. How to do that ?

like image 204
vic3ai Avatar asked Jul 28 '15 09:07

vic3ai


People also ask

How do I delete a specific pod in Xcode?

Just rm -rf that pod's folder, and remove the line from the Podfile. Then run pod install again.

How do you remove pods?

First, confirm the name of the node you want to remove using kubectl get nodes , and make sure that all of the pods on the node can be safely terminated without any special procedures. Next, use the kubectl drain command to evict all user pods from the node.

How do I remove a pod lock?

If you want to remove a Pod, edit Podfile, delete the Pod you want, and rerun pod install . If i deleted podfile. lock file, that makes an issue or it's normally? Generally you should not delete the podfile.


3 Answers

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

like image 126
palme Avatar answered Oct 21 '22 15:10

palme


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.

like image 33
Loegic Avatar answered Oct 21 '22 16:10

Loegic


enter image description here

pictorial information detailed

like image 45
vilas deshmukh Avatar answered Oct 21 '22 16:10

vilas deshmukh