How to integrate Firebase authentication in nativescript?

386 Views Asked by At

Getting Error during firebase init in native-script + angular. I am using native-script-plugin-firebase. It shows the following run time error: JS: ERROR Error: Uncaught (in promise): TypeError: Cannot read property 'android' of undefined JS: TypeError: Cannot read property 'android' of undefined

home.component.ts
import firebase = require("nativescript-plugin-firebase");

firebase.init({ })
        .then(
            () => {
                console.log("firebase.init done");
            },
            error => {
                console.log(`firebase.init error: ${error}`);
            }
        );
2

There are 2 best solutions below

0
On

I'm not sure but the syntax should be const firebase = require("nativescript-plugin-firebase");

1
On

Use below snippet:

firebase
  .init({
    // Optionally pass in properties for database, authentication and cloud messaging,
    // see their respective docs and 'iOSEmulatorFlush' to flush token before init.
    iOSEmulatorFlush: true,
  })
  .then(
    () => {
      // console.log("firebase.init done: " + String(res));
    },
    (error) => {
      console.log("firebase.init error: " + String(error));
    }
  )
  .catch((err) => {
    console.log("firebase init error", err);
  });