You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+10-6Lines changed: 10 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,6 +20,9 @@ pod 'FirebaseUI', '~> 5.0' # Pull in all Firebase UI features
20
20
If you don't want to use all of FirebaseUI, there are multiple subspecs which can selectively install subsets of the full feature set:
21
21
22
22
```ruby
23
+
# Only pull in FirebaseUI Firestore features
24
+
pod 'FirebaseUI/Firestore', '~> 5.0'
25
+
23
26
# Only pull in FirebaseUI Database features
24
27
pod 'FirebaseUI/Database', '~> 5.0'
25
28
@@ -60,6 +63,7 @@ The READMEs for components of FirebaseUI can be found in their respective
60
63
project folders.
61
64
62
65
-[Auth](FirebaseAuthUI/README.md)
66
+
-[Firestore](FirebaseFirestoreUI/README.md)
63
67
-[PhoneAuth](FirebasePhoneAuthUI/README.md)
64
68
-[Database](FirebaseDatabaseUI/README.md)
65
69
-[Firestore](FirebaseFirestoreUI/README.md)
@@ -78,22 +82,22 @@ $ pod install
78
82
79
83
Alternatively you can use `pod try FirebaseUI` to install the Objective-C or Swift sample projects.
80
84
81
-
## Mandatory Sample Project Configuration
85
+
## Sample Project Configuration
82
86
83
-
You have to configure your Xcode project in order to run samples.
87
+
You'll have to configure your Xcode project in order to run the samples.
84
88
85
-
1. Your Xcode project should contain `GoogleService-Info.plist`, downloaded from [Firebase console](https://console.firebase.google.com) when you add your app to a Firebase project.<br>
86
-
Copy `GoogleService-Info.plist` into sample the project folder (`samples/obj-c/GoogleService-Info.plist` or `samples/swift/GoogleService-Info.plist`).
89
+
1. Your Xcode project should contain a `GoogleService-Info.plist`, downloaded from [Firebase console](https://console.firebase.google.com) when you add your app to a Firebase project.<br>
90
+
Copy the `GoogleService-Info.plist` into the sample project folder (`samples/obj-c/GoogleService-Info.plist` or `samples/swift/GoogleService-Info.plist`).
87
91
88
92
1. Update URL Types.<br>
89
93
Go to `Project Settings -> Info tab -> Url Types` and update values for:
90
94
+ `REVERSED_CLIENT_ID` (get value from `GoogleService-Info.plist`)
+ `Fabric -> Kits -> KitInfo -> consumerKey / consumerSecret` (put Twitter App consumer key/secret). Please note that's it's not secure to store `consumerSecret` in the app itself.
100
+
+ `Fabric -> Kits -> KitInfo -> consumerKey / consumerSecret` (put Twitter App consumer key/secret). Please note that's it's not secure to store the `consumerSecret` in the app itself.
0 commit comments