Installing application and uninstalling does not remove completly - Android Studio

前端 未结 2 1495
走了就别回头了
走了就别回头了 2020-12-20 20:05

I got a strange issue in few of my recent applications.

What I did:

  • Installing an application either directly using USB cable
相关标签:
2条回答
  • 2020-12-20 20:26

    In Android there is multiuser environment came from Android 4.2,

    So when there are multiple user accounts present on the device, and if one user installs the app, it get's installed for all users.

    Though when you uninstall it from your user, it's still present in other user.

    So it shows that message:NOT INSTALLED FOR THIS USER

    To solve this problem, there's are three ways, you can try any one feasible to you:
    1. You need to login to that user environment and uninstall the app.
    2. Uninstall for all users(you need to be admin user) Go to Settings > Apps, find and open the app info. Then, open the overflow menu (3 vertical dots), and choose Uninstall for all users.
    3. You can uninstall app for all users from PC using adb command: adb uninstall on command prompt/shell.

    0 讨论(0)
  • 2020-12-20 20:28

    If you have multiple users on your device, which means that the apps are installed by another user,and while you uninstall app the default account is another than this issue occurs

    Try this

    1. (from Owner account) Go to Settings > Apps, find and open the app info. Then, open the overflow menu (3 vertical dots), and choose Uninstall for all users.

    2. (from PC) Enter adb uninstall on command prompt/shell. This is the same as "uninstall for all users"

    0 讨论(0)
提交回复
热议问题