Skip to content Skip to sidebar Skip to footer

Error: Adb Exited With Exit Code 1 Performing Streamed Install

I'm receiving the following error while running flutter run on some projects, however, on other projects it works fine: (base) Nusraths-MacBook-Pro:flutter_uber_clone rahama$ flutt

Solution 1:

Actually, the answer lies in the error message of your question:

[ADB: failed to install /Users/rahama/development/flutter_uber_clone/build/app/outputs/apk/app.apk: Failure[INSTALL_FAILED_INSUFFICIENT_STORAGE]Error launching the application on Android SDK built for x86.]

Your Emulator is running out of space, clear its cache:

  1. Click on AVD Manager
  2. Wipe Data (Your Target Device )

How To Wipe Your Device Data

You are set to go..

Solution 2:

Flutter had a new update (I think last night), run flutter upgrade in the terminal and it should work fine (at least that did it for me).

Docs: To update both the Flutter SDK and the packages that your app depends on, use the flutter upgrade command from the root of your app (the same directory that contains the pubspec.yaml file)

https://flutter.dev/docs/development/tools/sdk/upgrading

Solution 3:

Solution 4:

this common problem with the Emulator and all you need to clear the Emulator cache . in my case it was the solution...

1- open AVD Manger.

2- click on the (bottom arrow) that beside (Edit) button.

3- choose Wipe Data.

Solution 5:

Sometimes it can work by uninstalling your app and and all it's data then try again,

another fix is to send the apk you are trying to install from projectname/build/app/outputs/apk and to your device and install it and try again.

Post a Comment for "Error: Adb Exited With Exit Code 1 Performing Streamed Install"