skip to Main Content

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:Workegy_servy_client_appbuildappoutputsflutter-apkapp.apk: 
 Failure [INSTALL_FAILED_INSUFFICIENT_STORAGE]
 Error launching application on PRA LA1.

Anyone can help ?

4

Answers


  1. Check your device storage and make free space.

    Login or Signup to reply.
  2. 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)

    Login or Signup to reply.
  3. Try to wipe your emulators data,

    1. Open android studio
    2. Tools
    3. Device Manager (AVD)
    4. A list of your emulators will pop up, locate the one you have a problem with
    5. Press the dropdown icon
    6. Select Wipe data then Okay
    7. Start the emulator and then try again

    Note: the emulator must be closed.

    Login or Signup to reply.
  4. My emulator was freshly created, and I still ran into this issue. So in case you are using the Android SDK 33 for your emulator make sure to adjust the storage. You can do that by:

    • Open Device Manager (AVD)
    • Edit your Emulator by clicking on the edit button right next to it or creating a new Emulator
    • Enable "Show Advanced Settings"
    • Scroll down to "Internal Storage" and change it to 1000
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search