1

I had another developer install pods in my application.

I am not sure why I need them, and from reading another thread, it seems that pods are causing some kind of an issue on my app.

What is the safe/proper/good-practice way to uninstall them?

rmaddy
  • 314,917
  • 42
  • 532
  • 579
Genadinik
  • 18,153
  • 63
  • 185
  • 284
  • 1
    Possible duplicate of [How to remove CocoaPods from a project?](http://stackoverflow.com/questions/16427421/how-to-remove-cocoapods-from-a-project) – Mihriban Minaz Feb 04 '16 at 00:56

1 Answers1

2

To remove pods completely follow this answer: https://stackoverflow.com/a/16427883/4244501

To uninstall single pods open the podfile. Remove the lines with the pods you don't want anymore and save the file. Open the console, navigate to the directory with the podfile and run pod install.

Community
  • 1
  • 1
FBente
  • 2,160
  • 23
  • 34
  • Thanks - just to clarify, I still want to keep the code that got put inside the pods. I just don't want it to be organized with pods. Do your suggestions still apply to my situation? – Genadinik Feb 04 '16 at 00:29
  • Why not flagging the question as a duplicate instead of answering @FBente ? – Mihriban Minaz Feb 04 '16 at 00:57
  • @Genadinik If you uninstall single pods or remove the pods completely the code will be removed. In that case you should follow the individual manual installation steps for every single project you want to integrate. – FBente Feb 04 '16 at 09:04
  • @Mihriban Minaz I didn't had enough reputation to flag anything. Maybe you can upvote my answers to help me out in that case. ;) – FBente Aug 14 '16 at 11:43