Error: Adb Exited With Exit Code 1 Performing Streamed Install
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:
- Click on AVD Manager
- Wipe Data (Your Target Device )
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)
Solution 3:
Run in terminal
$ flutter clean
and then
$ flutter pub getand then
$ flutter packages getthen
$ flutter run
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"