Skip to content

Commit

Permalink
Updated README with the new subspec info.
Browse files Browse the repository at this point in the history
  • Loading branch information
asciimike committed Dec 1, 2015
1 parent 7457a9f commit 22e05fc
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,14 @@ FirebaseUI supports iOS 8.0+. We recommend using [CocoaPods](http://cocoapods.or
the following to your `Podfile`:

```
pod 'FirebaseUI', '~> 0.3'
pod 'FirebaseUI', '~> 0.3' # Pull in all Firebase UI features
```

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.

```
pod 'FirebaseUI/Core', '~> 0.3' # Only pull in the "Core" FirebaseUI features
pod 'FirebaseUI/Auth', '~> 0.3' # Only pull in the "Auth" FirebaseUI features
```

If you're including FirebaseUI in a Swift project, make sure you also have:
Expand Down Expand Up @@ -350,7 +357,7 @@ FirebaseDataSource acts as a generic data source by providing common information
```objective-c
// AppDelegate.h
#import <UIKit/UIKit.h>
#import <FirebaseUI/FirebaseUI.h>
#import <FirebaseUI/FirebaseAppDelegate.h>

@interface AppDelegate : FirebaseAppDelegate

Expand Down

0 comments on commit 22e05fc

Please sign in to comment.