FirebaseUI is an open-source library for iOS that allows you to quickly connect common UI elements to the Firebase database for data storage, allowing views to be updated in realtime as they change, and providing simple interfaces for common tasks like displaying lists or collections of items.
Additionally, FirebaseUI simplifies Firebase authentication by providing easy to use auth methods that integrate with common identity providers like Facebook, Twitter, and Google as well as allowing developers to use a built in headful UI for ease of development.
FirebaseUI clients are also available for Android and web.
FirebaseUI supports iOS 8.0+. We recommend using CocoaPods, add
the following to your Podfile
:
pod 'FirebaseUI', '~> 1.0' # Pull in all Firebase UI features
If you don't want to use all of FirebaseUI, there are multiple subspecs which can selectively install subsets of the full feature set:
# Only pull in FirebaseUI Database features
pod 'FirebaseUI/Database', '~> 1.0'
# Only pull in FirebaseUI Storage features
pod 'FirebaseUI/Storage', '~> 1.0'
# Only pull in FirebaseUI Auth features
pod 'FirebaseUI/Auth', '~> 1.0'
# Only pull in Facebook login features
pod 'FirebaseUI/Facebook', '~> 1.0'
# Only pull in Google login features
pod 'FirebaseUI/Google', '~> 1.0'
# Only pull in Twitter login features
pod 'FirebaseUI/Twitter', '~> 1.0'
If you're including FirebaseUI in a Swift project, make sure you also have:
platform :ios, '8.0'
use_frameworks!
Otherwise, you can download the latest version of the FirebaseUI.framework from the releases page or include the FirebaseUI Xcode project from this repo in your project. You also need to add the Firebase framework to your project.
If you'd like to contribute to FirebaseUI for iOS, you'll need to run the following commands to get your environment set up:
$ git clone https://github.com/firebase/FirebaseUI-iOS.git
$ cd FirebaseUI-iOS
$ pod install
Alternatively you can use pod try FirebaseUI
in order to install objective-c or swift sample project
You have to configure Xcode project in order to run samples.
-
You project should contain
GoogleService-Info.plist
downloaded from Firebase console.
CopyGoogleService-Info.plist
into sample project folder (samples/obj-c/GoogleService-Info.plist
orsamples/swift/GoogleService-Info.plist
).
Find more instructions and download a plist file from the Firebase console. -
Update URL Types.
Go toProject Settings -> Info tab -> Url Types
and update values for:REVERSED_CLIENT_ID
(get value fromGoogleService-Info.plist
)fb{your-app-id}
(put Facebook App Id)twitterkit-{consumer-key}
(put Twitter App Consumer key)
-
Update
Info.plist
twitter and facebook configuration valuesFacebookAppID -> {your-app-id}
(put Facebook App Id)Fabric -> Kits -> KitInfo -> consumerKey / consumerSecret
(put Twitter App consumer key/secret). Please notice that's it's not secure to storeconsumerSecret
in the app itself.
-
Enable Keychain Sharing.
Facebook SDK requires keychain sharing.
This can be done here:Project Settings -> Capabilities -> KeyChain Sharing -> ON
-
Don't forget to configure your Firebase App Database using Firebase console.
Database should contain appropriate read/write permissions and folders (objc_demo-chat
andswift_demo-chat
respectfully)
We'd love to accept your sample apps and patches! Before we can take them, we have to jump a couple of legal hurdles.
Please fill out either the individual or corporate Contributor License Agreement (CLA).
- If you are an individual writing original source code and you're sure you own the intellectual property, then you'll need to sign an [individual CLA] (https://developers.google.com/open-source/cla/individual).
- If you work for a company that wants to allow you to contribute your work, then you'll need to sign a [corporate CLA] (https://developers.google.com/open-source/cla/corporate).
Follow either of the two links above to access the appropriate CLA and instructions for how to sign and return it. Once we receive it, we'll be able to accept your pull requests.
- Submit an issue describing your proposed change to the repo in question.
- The repo owner will respond to your issue promptly.
- If your proposed change is accepted, and you haven't already done so, sign a Contributor License Agreement (see details above).
- Fork the desired repo, develop and test your code changes.
- Ensure that your code adheres to the existing style of the library to which you are contributing.
- Ensure that your code has an appropriate set of unit tests which all pass.
- Submit a pull request