Android Studio Stuck on "Installing APK"

AndroidAndroid StudioAdb

Android Problem Overview


Android Studio no longer seems to be detecting when an app has installed on a target device and opened. It gets stuck on "Installing APK" and the progress bar is empty. There are no errors, the apk successfully installs and opens, it's just the IDE is still showing "Installing APK" and it does not automatically connect the debugger. I can manually connect the debugger using the "Attach debugger to Android process button", but this is not ideal.

Can anyone offer any suggestions for what's up and how to resolve it?

Android Solutions


Solution 1 - Android

It turns out the problem wasn't with Android Studio, but with the device I was using for testing. I tried a different device and it behaved normally, progressing beyond "Installing APK" and stopping on breakpoints.

Somehow the "wait for debugger" setting in developer options on the problem device had switched to off. I switched this back on and now this device is behaving normally.

-Note that I had to choose an arbitrary debug app for the setting to become active. Once I'd set it on, I deselected the debug app and the setting remained on, as I left it. This was a HUAWEI P8 running android 6.0 API Level 23.

Solution 2 - Android

Recently, I was facing the same issue when I have updated My Device (MI A1) OS from Android Oreo(8.0) to Android Pie(9.0),

Solution: Go to the Settings > Developer options > Now click on > Revoke USB debugging authorisations.

It will disable/remove developer options from your device, Now restart your device once and then you just need to re-enable your developer options and that all you need to do, Enjoy Developing on Pie.

Hope this will help you as well.. :)

Solution 3 - Android

I found a solution that works for me. In Developer Options turn off "Monitor apps installed by ADB".

screenshot

Solution 4 - Android

Just reboot your phone (: It happens after update android version.

Solution 5 - Android

On my HTC One I unchecked “Verify apps over USB” in Settings -> Developer Options.

Solution 6 - Android

I had this same problem. I solved it by revoking USB Debugging Authorizations and then re-enabling USB Debugging on my chosen device(s).

Edit: Cleaning my project also helped with solving this problem.

Solution 7 - Android

for me it was something magic I solve it by removing the USB from the Laptop and from mobile too(type-c cable) and

turning off the debugging mode and again turn it on

and then I connect it back to my Laptop and selected the same FILE TRANSFER MODE
then run the app and it get installed to my device and work as expected 
Hope you will find Useful to

Solution 8 - Android

I have this problem recently on my Pixel 2 testing device, latest factory image with Android Studio 3.4, on windows 10.

I have tried all methods mentioned but none of them work. It cost me more than 6 hours to figure it out.

My problem is the USB driver, I am not using the "perfect" USB driver. My driver works in most scenarios and commands but not in every scenario.

You do not need Android Studio to dig into this problem, just using adb.

Please try if you can install apk from adb using following command:

adb install xxxx.apk

If it stuck at "performing streamed install" but never finish, this is the problem.

Please try push a big file(more than 5MB) to your device:

adb push xxxx.apk /storage/emulated/0

In my testing, it stuck at 13%, 16%, etc, but never go on. It seems cannot transfer large files. This is why the installation is pending in my case.

I update the driver to another one, and the problem is fixed. Hope it can solve your problem, too.

Solution 9 - Android

I had the exact same problem.

what's more, i can not adb shell and adb push files.

I am running an Ubuntu 18.04 VM and test on xiaomi phone 8,9. The problem for me was the USB Compatibility setting for the VM was set to 2.0, it needs to be at least 3.0. To change the setting power down the VM and choose the "Edit virtual machine settings" in the VMPlayer startup menu. Then select the "USB Controller" device and change "USB Compatibility" to USB 3.0. Hope this can help u!

Solution 10 - Android

It doesn't hurt to verify your USB port. In my case it was the faulty USB port which I had to switch to the mobo's one instead of the case port.

Solution 11 - Android

Restarting Android studio worked for me

Solution 12 - Android

I tried rebooting my phone and it worked.

Solution 13 - Android

When attach my mobile to my PC, the follow menu is showed. I Clicke on it. enter image description here

In the next section, I had changed from "USB connection" to "Transfer files"

FRom cable mode to Transfer mode

After that adb install works for me.

Solution 14 - Android

In my case, Second Space was created but not switched on. I had to delete the second space and everything worked just fine.

My settings are:

  • Usb debugging -> ON
  • Install via Usb -> ON
  • Verify over USB -> ON
  • Wait for debugger -> ON

Device: Redmi Note 5 Pro

Solution 15 - Android

I had this issue with an emulator on Linux. After trying pretty much every solution and suggestion on this page, what made it work for me was turning off Instant Run.

Solution 16 - Android

In my case i did not make sure that my android studio DSK manager was up to date with the android version that my device was operating on. So when running flutter doctor all seemed well, and i had the latest android version and all on android studio, but as mentioned it was not matching the version for my device i had connected.

Once i added the correct android version (in my case android 6.0) with SDK manager using android studio, it did not get stuck at installing apk.

Solution 17 - Android

My case was similar but for Android Version 10 required having the Verify bytecode of debuggable apps to off.

Final settings were:

  • USB debugging -> ON
  • Wait for debugger -> ON
  • Verify apps over USB -> ON
  • Verify bytecode of debuggable apps -> OFF

Device: Pixel XL

Solution 18 - Android

For me, the top answer "wait for debugger" was completely greyed out.

What worked for me was to look inside "Apps" and I noticed the app was uninstalled, but only for my current user. Clicking uninstall for all users unblocked the installation via Android Studio again.

Solution 19 - Android

Check following in your project

  • build-gradle plugin version in project level build.gradle file
  • gradle version in gradle-wrapper.properties file
  • buildToolsVersion

Solution 20 - Android

uninstalling the previous installed app worked for me

Solution 21 - Android

Turn off Verify apps over USB and Verify bytecode for debuggable apps (might not be available for all devices) in your Developer settings menu. The install time will decrease drastically.

Solution 22 - Android

I'm using Visual Studio Xamarin and the issue was caused by the missing CPU architecture. After checking them, the APK became installable via adb install ...

enter image description here

Solution 23 - Android

Just reboot your mobile . If not working try reboot your Android studio and mobile.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionpeterfhannonView Question on Stackoverflow
Solution 1 - AndroidpeterfhannonView Answer on Stackoverflow
Solution 2 - AndroidUttam PanchasaraView Answer on Stackoverflow
Solution 3 - AndroidDavorView Answer on Stackoverflow
Solution 4 - AndroidgordinmityaView Answer on Stackoverflow
Solution 5 - AndroidSteffo DimfeltView Answer on Stackoverflow
Solution 6 - AndroidLukeWaggonerView Answer on Stackoverflow
Solution 7 - AndroidMickey MouseView Answer on Stackoverflow
Solution 8 - AndroidHexiseView Answer on Stackoverflow
Solution 9 - AndroidCyrusView Answer on Stackoverflow
Solution 10 - AndroidVijay Kumar KantaView Answer on Stackoverflow
Solution 11 - AndroidRichard LindhoutView Answer on Stackoverflow
Solution 12 - AndroidamystView Answer on Stackoverflow
Solution 13 - AndroidEgaliciaView Answer on Stackoverflow
Solution 14 - AndroidPushan GuptaView Answer on Stackoverflow
Solution 15 - AndroidLeo supports Monica CellioView Answer on Stackoverflow
Solution 16 - AndroidVadydadyView Answer on Stackoverflow
Solution 17 - AndroidBrian BoyntonView Answer on Stackoverflow
Solution 18 - Androidgiorgio79View Answer on Stackoverflow
Solution 19 - AndroidJaydeepWView Answer on Stackoverflow
Solution 20 - AndroidMohammad SommakiaView Answer on Stackoverflow
Solution 21 - AndroidDevansh MauryaView Answer on Stackoverflow
Solution 22 - AndroidCelinHCView Answer on Stackoverflow
Solution 23 - AndroidTarif ChakderView Answer on Stackoverflow