aboutsummaryrefslogtreecommitdiffhomepage
path: root/README.md
diff options
context:
space:
mode:
authorGravatar Paul Beusterien <paulbeusterien@google.com>2018-01-25 06:36:54 -0800
committerGravatar GitHub <noreply@github.com>2018-01-25 06:36:54 -0800
commite5745d1a149168506877d54ad87e32f833d7dc6f (patch)
treefdea02467aefd2d540f28f709cc0eb4324820314 /README.md
parentbfa0e40795ba676fd02d616794cce1c9b2d6a95f (diff)
README - FirebaseCore source pod must be included with all source pods (#705)
Diffstat (limited to 'README.md')
-rw-r--r--README.md5
1 files changed, 5 insertions, 0 deletions
diff --git a/README.md b/README.md
index 9e2f8ea..848e202 100644
--- a/README.md
+++ b/README.md
@@ -31,20 +31,25 @@ locations described via the Podfile syntax documented
**CocoaPods 1.4.0** or later is required.
+If source pods are included, **FirebaseCore** must also be included.
+
For example, to access FirebaseMessaging via a checked out version of the
firebase-ios-sdk repo do:
```
pod 'FirebaseMessaging', :path => '/path/to/firebase-ios-sdk'
+pod 'FirebaseCore', :path => '/path/to/firebase-ios-sdk'
```
To access via a branch:
```
pod 'FirebaseFirestore', :git => 'https://github.com/firebase/firebase-ios-sdk.git', :branch => 'master'
+pod 'FirebaseCore', :git => 'https://github.com/firebase/firebase-ios-sdk.git', :branch => 'master'
```
To access via a tag (Release tags will be available starting with Firebase 4.7.0:
```
pod 'FirebaseAuth', :git => 'https://github.com/firebase/firebase-ios-sdk.git', :tag => '4.7.0'
+pod 'FirebaseCore', :git => 'https://github.com/firebase/firebase-ios-sdk.git', :tag => '4.7.0'
```
If your Podfile does not include *use_frameworks!*, you need to workaround