1

I used cocoapods to install OneSignal into my xcode project, but now I want to remove it so I can go to Firebase instead(my ads are from google so I thought of just making life easier by using everything with google). How do I remove OneSignal completely from my Xcode project?

Dorian
  • 7,749
  • 4
  • 38
  • 57
DrPepperGrad
  • 361
  • 1
  • 4
  • 17

1 Answers1

0

One way to easily do it is to simply remove the line from your pod file and then run

pod install

from terminal.

However, if you want to compeltely start from scratch, use the cocoapods plugin deintegrate. You can get it from here: https://github.com/CocoaPods/cocoapods-deintegrate or install it from terminal:

$ [sudo] gem install cocoapods-deintegrate

Hope that helps!

Meagan S.
  • 974
  • 9
  • 11
  • 1
    De-integrate is now a default plugin, so you can run `pod deintegrate` straight off the bat :+1: – orta Jul 13 '16 at 14:40