Home > database >  Performing Streamed Install adb: failed to install [INSTALL_FAILED_INSUFFICIENT_STORAGE]
Performing Streamed Install adb: failed to install [INSTALL_FAILED_INSUFFICIENT_STORAGE]

Time:06-04

I'm trying to debug my application for the first time on a real device and found this error

 Error: ADB exited with exit code 1
 Performing Streamed Install

 adb: failed to install S:\Work\egy_servy_client_app\build\app\outputs\flutter-apk\app.apk: 
 Failure [INSTALL_FAILED_INSUFFICIENT_STORAGE]
 Error launching application on PRA LA1.

Anyone can help ?

CodePudding user response:

Check your device storage and make free space.

CodePudding user response:

This seems pretty obvious, but you don't have enough space on your phone, try deleting some app, or maybe delete some videos. (Note, at least 100mb are required for a basic flutter debug app)

  • Related