nativescript-plugin-firebase readme ファイルに記載されている手順に従った後、このエラーが発生します。
JS: firebase.init エラー: TypeError: 未定義のプロパティ 'データベース' を読み取れません
https://github.com/EddyVerbruggen/nativescript-plugin-firebase
しかし、私はそれを本当に理解していないし、それを解決する方法も知りません。
使用しているプラグインのバージョンは次のとおりです: 6.4.0 with tns 4.1.2
編集: app.js からの初期化コード
var firebase = require("nativescript-plugin-firebase");
firebase.init({ persist: true
// Optionally pass in properties for database, authentication and cloud messaging,
// see their respective docs.
}).then(
function (instance) {
console.log("firebase.init done");
},
function (error) {
console.log("firebase.init error: " + error);
}
);