jon_na_fun
jon_na_fun

Reputation: 1223

ADB exited with exit code 1

I'm getting the following error when running my flutter project on Android Emulator. It works fine on iOS Simulator and the project is also fine on my other Mac (runs on both Android and iOS Simulator)

Error: ADB exited with exit code 1 Performing Streamed Install

adb: failed to install /Users/xxxx/Dropbox/Flutter/test_app/build/app/outputs/apk/app.apk: Error launching application on Android SDK built for x86.

I've cleaned my project and reset my emulator but no luck. It only affects my mac book pro android build.

Flutter doctor also shows no issues

[✓] Flutter (Channel stable, v1.5.4-hotfix.2, on Mac OS X 10.14.5 18F132, locale en-CA)

[✓] Android toolchain - develop for Android devices (Android SDK version 28.0.3)
[!] iOS toolchain - develop for iOS devices (Xcode 10.2.1)
    ✗ Verify that all connected devices have been paired with this computer in Xcode.
      If all devices have been paired, libimobiledevice and ideviceinstaller may require updating.
      To update with Brew, run:
        brew update
        brew uninstall --ignore-dependencies libimobiledevice
        brew uninstall --ignore-dependencies usbmuxd
        brew install --HEAD usbmuxd
        brew unlink usbmuxd
        brew link usbmuxd
        brew install --HEAD libimobiledevice
        brew install ideviceinstaller
[✓] Android Studio (version 3.4)
[✓] Connected device (2 available)

Upvotes: 44

Views: 180071

Answers (22)

agelastrxn
agelastrxn

Reputation: 13

If you are using MIUI. Turn off the MIUI optimization. For this: Settings > Developer options > MIUI optimisation

Upvotes: 0

Brian
Brian

Reputation: 11

I have been struggling with this off and on for a year, here is what I just noticed that makes it work or not work on my system.

I discovered tonight that if I have my virus protection running my emulator stalls in the
" ---> Built build\app\outputs\apk\debug\app-debug.apk. and I just get a white screen. I turn off the virus protection and it works fine in debug mode. If its on I have to keep going to the terminal and doing: " flutter run " to see any changes I have made.

Upvotes: 1

Muhammed Sefa Yolcu
Muhammed Sefa Yolcu

Reputation: 41

Android Studio> More Actions> Virtual Device Manager> Wipe Data

This mistake's reason is emulator's storage is full. This solution is worked for me.

Upvotes: 0

Sai Kiran Katayath
Sai Kiran Katayath

Reputation: 289

Just Reinstall ADB on Mac

brew install android-platform-tools

And try again, It worked for me

Upvotes: 0

Ibrahim Memon
Ibrahim Memon

Reputation: 73

this worked for me:

go to android studio and click tools > sdk manager and check the one you need

Upvotes: 0

navalega0109
navalega0109

Reputation: 400

Solution:

  1. Try connect using wifi option.
  2. After connecting ADT using wifi then this error only come if wifi connection is lost.
  3. Enable wifi connect option in Developer Option and Pair android studio using QR code or Enter code manually.
  4. In addition : Allow USB install.
  5. Also disable Verify app over USB, OR if you do not want to disable then for 10 sec prompt will be displayed to confirm the installation if not confirmed then this error will be displayed because by default installation is denied.

Upvotes: 0

codrikaz
codrikaz

Reputation: 293

You can apply some simple steps

  1. flutter clean

  2. flutter pub cache repair or manually

example

enter image description here

finally

  1. flutter pub get
  2. flutter run

i'pe your problem will solved!

Upvotes: 0

Matthew Trent
Matthew Trent

Reputation: 3274

Terminal commands for solution

(worth trying quickly before attempting more complex solutions)

Run this command to clean out your build/dependencies:

flutter clean

Then run this command to fetch your dependencies again:

flutter pub get

Now try running your project! (flutter run)

Upvotes: 34

Ujjawal Maurya
Ujjawal Maurya

Reputation: 616

I had Universal ADB Driver installed in my system for fastboot and stuff. I uninstalled and it worked for me.

Also I had to delete adb directory from root to remove it completely.

Upvotes: 0

Nimasha Madhushani
Nimasha Madhushani

Reputation: 325

I fixed my error by running below code lines because Failure [INSTALL_FAILED_INSUFFICIENT_STORAGE] is mentioned in the error

  1. flutter clean
  2. flutter pub cache repair
  3. flutter run

Upvotes: 2

Ansh
Ansh

Reputation: 109

For me, I had the app already installed on the device. Once I deleted it, and then tried to install via adb again, it worked!

Upvotes: 0

Dariush Fathi
Dariush Fathi

Reputation: 1695

I know two reasons that lead to this error :

  • Maybe your device/emulator's storage is full. try deleting some apps or similar to free up storage.

Or

  • Invalid package name . for example, using a capital letter in the package name. use this to change package name in flutter

Upvotes: 82

Elmar
Elmar

Reputation: 4445

It usually happens with Emulator. Easiest way is to go Andorid Studio > ADB devices. Click on the dropdown arrow on the right side of the emulator name and choose Wipe data.

Upvotes: 2

Najam
Najam

Reputation: 1159

This problem is mainly due insufficient space because over the time your device collects many logs and cache many stuff.

Try following solutions and one of them could resolve your problem.

Solution 1

Run flutter clean and flutter pub get.

Solution 2

Try removing some apps or disable some services from your device/emulator. As last resort you can simply create new emulator with more space and memory.

Solution 3

Make sure your package name is correct and you are following conventions as per Dart/Flutter.

Upvotes: 2

Rahul Kushwaha
Rahul Kushwaha

Reputation: 6752

I resolved these issues using these steps .I am using BlueStack Emulator for running Emulator.

Steps:-

  1. Go to setting of BlueStack Emulator
  2. Then click on Advance and then
  3. Turn on Android Debug Bridge (ADB)

I resolved these issues using these steps.

Upvotes: 1

Mohammad Davari
Mohammad Davari

Reputation: 450

This error will appear when your device hasn't enough storage for installing the application if you work with Flutter, the android studio doesn't tell the exact problem.

Upvotes: 11

spekary
spekary

Reputation: 438

To debug this, on Android Studio, open the Logcat tab. You will get a ton of messages, but somewhere in there will be the answer.

For example, if the package name is invalid, you will see:

W/ActivityManager: Invalid packageName: your.bad.package.name

Try using the search field in the upper right of the logcat window to filter the messages.

Also, you need to make sure that the device you are working with is selected in the target dropdown at the top of the window. Often, if you get this error, Android Studio will automatically remove your device from the target list and switch it to a different device. You might have to unplug and plug back in your USB cable to get it to appear again. Then select it, and open the Logcat tab at the bottom. The messages from the previous session will be saved and you can look through them.

Upvotes: 0

Kalpit
Kalpit

Reputation: 191

If you have previously installed apps on your Android Emulator,
Try uninstalling some already installed apps from the Android Emulator by going to...


Settings >> Apps & notifications >> app_to_be_uninstalled >> Uninstall


It worked for me :)

Upvotes: 0

evals
evals

Reputation: 1869

for my phone (not emulator) i disabled Verify apps over USB from developer options from my phone settings and it works.

Upvotes: 22

Mohd Danish Khan
Mohd Danish Khan

Reputation: 1101

Google service scans apk and consider it harmful and block from installation

Disable/ turn off the google service app scan. in your emulator

Upvotes: 0

user3166024
user3166024

Reputation: 179

Allow 'installing apps from usb' on your phone if you get this error on physical device

Upvotes: 16

eyoeldefare
eyoeldefare

Reputation: 2303

For me, everything worked after I deleted the build directory inside my flutter project. The build should have the app.apk binary file.

  1. Delete that file or delete the whole build folder and run your project.
  2. If that doesn't work, just delete your AVD emulator completely and start a new one.

Upvotes: 11

Related Questions