This is a demo Ionic project using FirebaseUI-web.
To properly configure your Firebase Project please follow all the instructions from the Set up Firebase Authentication for Cordova section at the following link:
https://firebase.google.com/docs/auth/web/cordova
To use FirebaseUI to authenticate users you first need to configure each provider you want to use in their own developer app settings. Please read the Before you begin section of Firebase Authentication at the following links:
Phone number is currently not supported for Ionic/Cordova environments.
$ npm install
$ ionic serve
ionic lab
or ionic serve --lab
does not work with Google provider, you will
have to use ionic serve
instead.
After setting up Firebase console as described above, please follow the next steps:
firebase
and firebaseui
dependencies:$ npm install firebase --save
$ npm install firebaseui --save
module.exports = {
copyFirebaseUiCss: {
src: ['./node_modules/firebaseui/dist/firebaseui.css'],
dest: '{{BUILD}}'
}
}
"config": {
"ionic_copy": "./config/copy.config.js"
}
<link href="https://github.com/alexnu/IonicFirebaseUI/blob/master/build/firebaseui.css" rel="stylesheet">
By adding the following line to config.xml:
<preference name="AndroidLaunchMode" value="singleInstance" />
This is needed for Google Provider because sometimes after authentication a new instance of the app is created resulting in never successfully authenticating. The issue does not occur on iOS devices.
There should only be a single instance of firebaseui for the whole app, so it is a good idea to create a provider and save the instance there:
@Injectable()
export class FirebaseuiProvider {
ui: any;
constructor() {
// Initialize the FirebaseUI Widget using Firebase.
this.ui = new firebaseui.auth.AuthUI(firebase.auth());
}
}
See example at src/pages/login/login.ts
.