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?
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?
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
.