O
Problem solved
I had to add also the Plugin “NIFCloudMB”. In addition I had to remove the “ü” and blank within app name.
Edit:
The NIFCloudMB was not the solution. I had to set a specific version of the “dpa99c/cordova-plugin-firebasex” - plugin for ios:
{
“name”: “monaca-template-minimum”,
“version”: “2.2.0”,
“displayName”: “Monaca Template Minimum”,
“dependencies”: {
“cordova-custom-config”: “5.1.1”,
“cordova-plugin-firebasex”: “11.0.3-cli”,
“cordova-plugin-splashscreen”: “6.0.1”,
“cordova-plugin-device”: “2.1.0”
},
“scripts”: {
“monaca:preview”: “npm run dev”,
“dev”: “browser-sync start -s www/ --watch --port 8080 --ui-port 8081”
},
“cordova”: {
“plugins”: {
“monaca-plugin-monaca-core”: {},
“cordova-plugin-device”: {},
“cordova-plugin-firebasex”: {},
“cordova-custom-config”: {},
“cordova-plugin-splashscreen”: {}
}
},
“devDependencies”: {
“browser-sync”: “~2.27.7”,
“cordova”: “^11.0.0”
}
}
For Android the current version:
{
“name”: “monaca-template-minimum”,
“version”: “2.2.0”,
“displayName”: “Monaca Template Minimum”,
“dependencies”: {
“cordova-custom-config”: “5.1.1”,
“cordova-plugin-splashscreen”: “6.0.1”,
“cordova-plugin-device”: “2.1.0”,
“cordova-plugin-firebasex”: “git+https://github.com/dpa99c/cordova-plugin-firebasex”
},
“scripts”: {
“monaca:preview”: “npm run dev”,
“dev”: “browser-sync start -s www/ --watch --port 8080 --ui-port 8081”
},
“cordova”: {
“plugins”: {
“monaca-plugin-monaca-core”: {},
“cordova-plugin-device”: {},
“cordova-custom-config”: {},
“cordova-plugin-splashscreen”: {},
“cordova-plugin-firebasex”: {}
}
},
“devDependencies”: {
“browser-sync”: “~2.27.7”,
“cordova”: “^11.0.0”
}
}