File tree Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,14 @@ FirebaseUI supports iOS 8.0+. We recommend using [CocoaPods](http://cocoapods.or
12
12
the following to your ` Podfile ` :
13
13
14
14
```
15
- pod 'FirebaseUI', '~> 0.3'
15
+ pod 'FirebaseUI', '~> 0.3' # Pull in all Firebase UI features
16
+ ```
17
+
18
+ If you don't want to use all of FirebaseUI, there are two subspecs, ` Core ` and ` Auth ` which can selectively install subsets of the full feature set.
19
+
20
+ ```
21
+ pod 'FirebaseUI/Core', '~> 0.3' # Only pull in the "Core" FirebaseUI features
22
+ pod 'FirebaseUI/Auth', '~> 0.3' # Only pull in the "Auth" FirebaseUI features
16
23
```
17
24
18
25
If you're including FirebaseUI in a Swift project, make sure you also have:
@@ -350,7 +357,7 @@ FirebaseDataSource acts as a generic data source by providing common information
350
357
``` objective-c
351
358
// AppDelegate.h
352
359
#import < UIKit/UIKit.h>
353
- #import < FirebaseUI/FirebaseUI .h>
360
+ #import < FirebaseUI/FirebaseAppDelegate .h>
354
361
355
362
@interface AppDelegate : FirebaseAppDelegate
356
363
You can’t perform that action at this time.
0 commit comments