aboutsummaryrefslogtreecommitdiffhomepage
path: root/README.md
diff options
context:
space:
mode:
authorGravatar Paul Beusterien <paulbeusterien@google.com>2017-08-03 08:35:04 -0700
committerGravatar GitHub <noreply@github.com>2017-08-03 08:35:04 -0700
commit857cbc0a460c73ece212410d6971dd31641a8aa6 (patch)
tree1af0dbd5e7a8f8edcd7e711453a40b23691188b0 /README.md
parentf2e9c2533c041253afc4c8133097965c0e95785f (diff)
Improve confusing FirebaseCommunity pod usage instructions (#174)
Diffstat (limited to 'README.md')
-rw-r--r--README.md6
1 files changed, 4 insertions, 2 deletions
diff --git a/README.md b/README.md
index 11cf907..d1a919c 100644
--- a/README.md
+++ b/README.md
@@ -92,10 +92,12 @@ use_frameworks!
target 'MyAppTarget' do
platform :ios, '8.0'
- pod 'FirebaseCommunity', :git => 'https://github.com/firebase/firebase-ios-sdk.git'
+ pod 'FirebaseCommunity/Database'
end
```
-Replace `MyAppTarget` with the name of the target in your Xcode project.
+1. Replace `MyAppTarget` with the name of the target in your Xcode project.
+2. Specify the subspec in the pod specification for each Firebase component wanted. Database is
+used in the example above. Storage, Auth, and Messaging are other options.
### macOS
FirebaseAuth, FirebaseCore, FirebaseDatabase and FirebaseStorage now compile, run unit tests, and work on macOS, thanks to contributions from the community. There are a few tweaks needed, like ensuring iOS-only or macOS-only code is correctly guarded with checks for `TARGET_OS_IOS` and `TARGET_OS_OSX`.