0

I am trying to debug a demo app of flutter in vscode where the error is showing for ADB exit with code 1 performing streamed install. I uninstall the existing Flutter demo app.

enter image description here

greybeard
  • 2,249
  • 8
  • 30
  • 66
  • Welcome to SO! Please read the [how-to-ask article](https://stackoverflow.com/help/how-to-ask) before posting. Espc. do not post screen-shots of code etc. – toydarian Apr 09 '21 at 05:30

2 Answers2

0

You should try with these three stuff:

  1. Check out if your emulator memory full.
  2. Check your package name is alright
  3. Clean your flutter and re-run

flutter clean

flutter run

Jahidul Islam
  • 11,435
  • 3
  • 17
  • 38
0

as APK built is Successful there is no issue with the code. there is something wrong with the device

check u enabled USB debugging check u enabled install over USB in developer option

few devices don't have to enable install over USB.

then

flutter clean && flutter pub get 

uninstall the app in the device and run

flutter run -d <device name>

emphasized text

SULPHURIC ACID
  • 278
  • 5
  • 19