Removing a Pod from your Project

Other topics

Removing a Pod

Example Podfile:

target 'MyProject' do
    pod 'AWSS3'
    pod 'RealmSwift'
end

and if you wanted to remove RealmSwift, remove that line from your Podfile

target 'MyProject' do
    pod 'AWSS3'
end

then from the command line run

$ pod install

and CocoaPods will remove RealmSwift.

Contributors

Topic Id: 4041

Example Ids: 14114

This site is not affiliated with any of the contributors.