AWS vuejs Amplify - Failed to pull the backend - vue.js

I created an app using Admin UI then created a fresh Vue JS application.
When I run amplify pull --appId d2v01y74i7xjqk --envName staging on the CLI, I am getting the following error:
Invalid feature flag configuration
These feature flags are defined in the "amplify/cli.json" configuration file and are unknown to the currently running Amplify CLI:
graphqltransformer.skipoverridemutationinputtypes
This issue likely happens when the project has been pushed with a newer version of Amplify CLI, try updating to a newer version.
I have upgraded amplify to the latest 4.45.0 version.
Does anyone know how this can be resolved?

I finally got this working, and it was frustrating to say the least.
curl -sL https://aws-amplify.github.io/amplify-cli/install | zsh && $SHELL
Once i ran this, it worked for me aftewards.

Related

Quasar 2 Vue 3 "ReferenceError: process is not defined" error

I bump into ReferenceError: process is not defined error for my Quasar 2 application deployed to firebase. Howver, running it locally with quasar dev does not see the error. Any advice and insight is appreciated.
This happened to me as well after I accidentally ran "quasar build" in my functions directory rather than in my root directory then deployed that.
Easy way to test this is run the build command in the root directory and check if it fixes the error on the firebase hosting emulator (usually localhost:5000) before deploy.
Hope this helps anyone else who has my issue.
Solved by installing NPM process package.

Error of spawn vue-cli-service ENOENT after updating vue cli?

My vue project started throwing errors last night. At first I thought it was some sort of node issue because my project wasn't fully loading, which wasn't an issue before and I kept getting an audit issue about my cli plugin. I update node to the latest version and it uploaded fully once, then later it stopped loading and showing anything on the screen. This morning, I tried loading it through the vue cli instead of the terminal and noticed they had updated the vue cli plugin. I updated my vue cli plugin and tried to build my project but now I'm getting this error
"spawn vue-cli-service ENOENT"
can anyone help me with this error and what to do to get my vue project back up and running? Everything was up and running fine before this. Not really sure what is going on. I also have the following plugins running on my project, not sure if that may be impacting anything: vuetify, axios, vuex, vue router, and I have firebase and firestore, as well.
Thanks in advance for your help!
Please use the following link. It worked for me right away.
https://programmerah.com/solution-of-serve-with-message-spawn-vue-cli-service-enoent-395/
I ran all this in Windows shell
in CMD into the project directory (this is very important!!)
execute NPM install
re-import in the visualization panel. (I just ran "vue ui")
Prior to doing this I had installed node using windows installer and then the following from the powershell
npm update -g #vue/cli
npm install -g #vue/cli-service-global
restart if you need to, go to the project directory in powershell and "vue ui" without quotes and it worked after that. I was able to compile and run the project without any issues. Once the task is built, you may open a new tab and goto localhost:8080
best of luck! (it was a witch-hunt for me)

How to use titanium inspector using titanium 5.2.2?

I am using Appcelerator titanium CLI to build ios app. I want to debug the app With Chrome DevTools but it seems like it's not compatible with the version which I have installed currently.
As per ti-inspector documentation, I have installed the node package by the below command.
npm install -g ti-inspector
So, When I tried this into my titanium project directory I am getting this response which is unexpected.
tn-inspector
Unexpected error: undefined
NOTE: titanium version - 5.2.2
Useful GitHub link: https://github.com/omorandi/TiInspector
Need help to understand or mitigate this issue. Thanks in advance!!!.
That repo is 5 years old and might not be compatible with the current SDK. You can use this instruction: https://docs.axway.com/bundle/Appcelerator_Studio_allOS_en/page/debugging_android_apps_with_3rd-party_tools.html to use the internal dev tools connection.

Error when running nativescript-imagepicker

I am developing a mobile app by using nativescript with angular. I want to include an image upload in my app. So, I tried by cloning git repo for nativescript-imagepicker. It is ok if I used the command tns run. If I used tns run ios/android --bundle, it gave me the following error:
What is the solution to fix this?
Did you installed the plugin through
tns plugin add nativescript-imagepicker
If not, try checking if you have the dependency with:
tns plugin list
if nativescript-imagepicker is not there, try reinstalling it. I got it working with app

Error 400 when build:android setting keystore manually

We have an app previously built on phonegap and now migrated to React Native/Expo. We are trying to build the android .apk using the keystore we had before and we get the following error:
I know that the problem is not with my .keystore, since through expo fetch:android:keystore I’ve got the keystore generated by EXPO and it gives me the same error!
Using expo build:android works fine, but I can’t deploy since the fingerprints doesn’t match with the app I have already published.
Any ideas?
Thanks!
There was an issue with expo-cli 2.7.1 and it's fixed on 2.7.2. So just needed to update my cli version!