Uninstall Cocoapods pod in XCode

0

Recently I added a podfile with the references to use the google maps framework to my project with swift in Xcode 9.3.1

source 'https://github.com/CocoaPods/Specs.git'
   target 'MyApp' do
   pod 'GoogleMaps'
   pod 'GooglePlaces'
end

It worked for me but we finally decided to use the MapKit and I'm no longer interested in keeping the google libraries.

What is the best way to remove all references that were added to my project when I ran the podfile?

    
asked by Salvador Nava 29.06.2018 в 18:26
source

1 answer

0

Just remove the pod (pod 'GooglePlaces') from the podfile, and execute the pod install command from the terminal

or if you can install two more gems to do a deeper cleaning:

1- $ sudo gem install cocoapods-deintegrate
2- $ sudo gem install cocoapods-clean

3- $ pod deintegrate
4- $ pod clean
5- $ pod install
    
answered by 29.06.2018 / 19:16
source