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
1212the following to your ` Podfile ` :
1313
1414```
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
1623```
1724
1825If 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
350357``` objective-c
351358// AppDelegate.h
352359#import < UIKit/UIKit.h>
353- #import < FirebaseUI/FirebaseUI .h>
360+ #import < FirebaseUI/FirebaseAppDelegate .h>
354361
355362@interface AppDelegate : FirebaseAppDelegate
356363
You can’t perform that action at this time.
0 commit comments