Skip to content

Commit 22e05fc

Browse files
committed
Updated README with the new subspec info.
1 parent 7457a9f commit 22e05fc

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

README.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,14 @@ FirebaseUI supports iOS 8.0+. We recommend using [CocoaPods](http://cocoapods.or
1212
the 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

1825
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
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

0 commit comments

Comments
 (0)