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}`);
}
);
I'm not sure but the syntax should be
const firebase = require("nativescript-plugin-firebase");