cocoapods

Removing a Pod from your Project

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.


This modified text is an extract of the original Stack Overflow Documentation created by the contributors and released under CC BY-SA 3.0 This website is not affiliated with Stack Overflow