From 467b0a6d87d808e7b99a8b45e0da0812d47b975d Mon Sep 17 00:00:00 2001 From: Libin Lu Date: Thu, 7 Jul 2016 17:45:01 -0400 Subject: [PATCH] add non pod steps --- README.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/README.md b/README.md index 759d4d1..cdb1414 100644 --- a/README.md +++ b/README.md @@ -85,6 +85,8 @@ public void onNewIntent (Intent intent) { ## IOS Configuration +### Pod approach: + install pod 'Firebase/Messaging' NOTE: make sure cocoapods version > 1.0 ``` @@ -92,8 +94,15 @@ cd ios && pod init pod install Firebase/Messaging ``` +### Non Cocoapod approach +1. download framework from https://firebase.google.com/docs/ios/setup last section Integrate without CocoaPods +2. Follow the readme to link frameworks (Analytics+Messaging) +3. current zip file is missing `FirebaseAnalytics.framework` file. I put one in the root of this repository + +### Shared steps in AppDelegate.m add ``` +#import "Firebase.h" <--add if you are using Non Cocoapod approach #import "RNFIRMessaging.h" <--add this line ... -- 2.26.2