Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
328 views
in Technique[技术] by (71.8m points)

uninstallation - Installing application and uninstalling does not remove completly - Android Studio

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

What I did:

  • Installing an application either directly using USB cable with Android Studio . Or downloading and installing signed APK through my local server.
  • Application works fine in all aspects
  • Uninstalling the application by long press and dragging the app icon to Uninstall icon
  • Or uninstalling through Settings -> Apps -> Uninstall by selecting the app

Problem:

  • After uninstall , under Settings -> Apps -> Still the app is shown as below

enter image description here

  • My application still shows in the list at the bottom with NOT INSTALLED FOR THIS USER message
  • I am not sure why this is happening. For majority of devices again downloading/installing new APK version from local server does not work unless I again uninstall by clicking on above list and goes to next screen as shown below.

enter image description here

  1. What might be causing this?
  2. Does any other developer faced same issue?

Android Studio Version : 2.1.3
Min SDK in Manifest : 17
Devices Tested : Nexus 4 , OnePlus 3 , Motorolla Gen-3 , Honor

Different Trials Made: Device is having only one user Owner

  1. Now I have uninstalled an application which was downloaded from App store. This was done successfully without giving an option again with NOT INSTALLED FOR THIS USER
  2. Again complete removal of my application and reinstalling is done. After this , I tried to uninstall again.The same options are shown for my application NOT INSTALLED FOR THIS USER
  3. Seems to be this is the issue with custom applications and not those installed from App Store. In-fact some steps which probably I am missing. Can anyone point out!!
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

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.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...