'Android Studio : The application could not be installed: SHELL_UNRESPONSIVE

i'm trying to install my app debug from my android studio. it's work well yesterday, but today when i try to install it again, the application cant be installed on my device and showing error like below on my android studio.

Installation did not succeed.
The application could not be installed: SHELL_UNRESPONSIVE
The device timed out while trying to install the application.
Retry

what should i do? i tried install on other device, and it worked fine. My device is Redmi 4X and other device is Samsung J3



Solution 1:[1]

Faced the same issue, not sure of the reason but in Android studio, Click on the File -> Invalidate Caches/ Restart and then it starts to work.

Solution 2:[2]

I got same issue with my device. i restart my device and its work properly.

Solution 3:[3]

The problem is because you don't have the proper SDK for the Android version. I'm telling you because a month has passed for me too. The solution is to download the appropriate pack in the SDK Manager.

If you have doubts how to enter:

  1. Close the project.
  2. In the welcome panel click on settings, then choose the SDK Manager option.
  3. Click show package details and select the version for Android and choose all packages.
  4. Finally you click ok XD

Try this method if it works perfect greetings

Solution 4:[4]

If other answers didn't help and previously application was installing correctly on your device, try to check your AndroidManifest file. Check that nothing forbids to install your app because of os version conflict or manifest merging errors or other reasons.

Solution 5:[5]

I came across this problem recently, through process of elimination I determined the cause was related to dependencies in the build.gradle(your app name).

I suggest working backwards and comment out everything that was added since the last known working build/install.

In my case I have a legacy app developed back in 2016 being rewritten, dependencies for signalR have changed quite a bit since then, the original libs where causing the install to fail while everything else seemed excellent, not even a single build error was occurring. Commenting out the libs and references got the application to a runnable state.

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 KKM
Solution 2 Maulik Baraiya
Solution 3 Vadik
Solution 4 Palina Manenok
Solution 5 Ryan Dooley