while building my vue project it says
⠴ Building for production...Browserslist: caniuse-lite is outdated. Please run next command `yarn upgrade`
after that when i am updating my yarn in my project it gives me error.
error An unexpected error occurred: "expected hoisted manifest for \"vue-firestore#firebase##firebase/installations##firebase/installations-types\"".
i have checked that firebase tools are already installed.
Please help.
Related
I want to use firebase database in react-native Project but, i have a problem can you help me about it ?
I deleted all node module and package.json and reinstall with yarn but not solved
I am working on Kibana version 7.16.2. I wanted to build Kibana distributable so I executed yarn build --skip-os-packages . But it failed with exist code with following error. Can anyone help me resolve this error?
Build error image ss
Also I wanted to know that whether the build folders that are required are completed because before error message I can see an info log saying "All bazel production build are completed".
i was trying to deploy my next.js project to vercel but got the following error.
error datastore-pubsub#2.0.0: The engine "node" is incompatible with this module. Expected version ">=16.0.0". Got "14.18.3"
error Found incompatible module.
I tried deleting yarn.lock file but the same error showed up nonetheless.
Your dependency is relying on Node.js 16+, but Vercel currently does not have support, as we are dependent on AWS. You can follow along here: https://github.com/vercel/community/discussions/37
Should hopefully be resolved very soon.
I have cordova-plugin-firebase(1.1.3) and cordova-plugin-firebase-analytics(1.0.0) installed in my ionic project. But when I build, I get duplicate symbols error in Xcode like below:
ld:110 duplicate symbols for archetecture arm64
clang: error: linker command failed with exit code 1 (use -v to see invocation)
I had both plugins installed before and they both worked well. I need to use the crashlytics feature so I updated cordova-plugin-firebase to the newest version(1.1.3), but then I get this message on firebase console:
To see this data, make sure your app is using the Firebase Analytics
SDK and the latest version of Crashlytics.
So I updated cordova-plugin-firebase-analytics too(before I was using 0.11.0) and then the message on firebase console disapeared(but build failed), and now I'm getting duplicate symbols error. But if I remove analytics plugin, I get library not found for -lFirebaseCore error.
How can I remove duplicate symbols error?
I found out both plugins added firebase.core framework to my project, and that's why I was getting duplicate symbols error.
I removed cordova-plugin-firebase-analytics from package.json and config.xml, and THEN ran npm install, it stopped giving me a library not found for -lFirebaseCore error.
But now the version 1.1.3 of cordova-plugin-firebase is now deprecated because it had some problems implementing firebase features. I'm currently using cordova-plugin-firebase V2.0.1 and analytics is working just as I expected.
When running a meteor.js app via meteor run --verbose android I get this error:
Failed to install 'cordova-plugin-whitelist':Cannot find plugin.xml
for plugin "cordova-plugin-whitelist". Please try adding it again.
I've tried the fix suggested here (installed cordova plugin via add cordova-plugin-whitelist in the folder .meteor/local/cordova-build) and this got the emulator started but then this error appeared:
Execution failed for task ':processDebugResources'.
com.android.ide.common.process.ProcessException: Failed to execute aapt
I found some information about this one on the issues gitHub site for meteor, but I'm at a loss now for what to do.
These errors (not surprisingly) also cause meteor-up deployment to fail. I
tried adding buildOptions: { "serverOnly": true } to the mup.json file per the mup docs but this failed to stop meteor from building the cordova architecture. Is there is a build setting or flag for mup deploy or meteor build so that it doesn't try to build the web.cordova architecture at all?