Reputation: 401
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
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