pure-python-adb icon indicating copy to clipboard operation
pure-python-adb copied to clipboard

Uninstall does not remove the app from the installed app list

Open jborbik opened this issue 5 years ago • 0 comments

Uninstall does not remove the APK from the list of the installed apps. That is strange, because if we run:

>>> device.is_installed(apk_name)
True
>>> device.uninstall(apk_name)
True
>>> device.is_installed(apk_name)
False

we get the expected output, even though the app does not disappear from the installed app list and still can be launched. Any idea what may be the cause / how to fix it?

jborbik avatar Feb 05 '21 03:02 jborbik