Unable to debug using VSCode for flutter. I\'m using windows and I\'m trying to use a android emulator.
I have attempted to reinstall flutter, android SDK and VSCod
For android emulator there are alternatives like geanny motion.
Since you have AVD installed you could try running from the command line.
run flutter devices
to get the list of emulators and their id.
then run (assuming emulator-5554 is you emulator id) flutter run -v -d emulator-5554
Finally you the option of starting android studio then start your emulator,form the IDE and the run the above command or you even run the app from the IDE.