user1416564
user1416564

Reputation: 401

Google Cloud Messaging (GCM) on iOS without CocoaPods

Basically that,

I have been tasked to set this up without actually using CocoaPods. Problem is, everywhere on Google's documentation they insist to use this. I can't find the github project with GCM for iOS and figure out which files I need to drag into my xcode project.

Upvotes: 4

Views: 1010

Answers (1)

Chris Gomez
Chris Gomez

Reputation: 6794

Now it it's possible to use it without cocoapods https://firebase.google.com/docs/ios/setup#frameworks Integrate without CocoaPods

If you don't want to use Cocoapods you can still take advantage of the Firebase SDKs by importing the frameworks directly.

Download the framework SDK zip (this is a ~100MB file and may take some time). Unzip and see the README file for which Frameworks to include in to your project. Add the ObjC linker flag in your Other Linker Settings in your target's build settings.

Upvotes: 2

Related Questions