Error [INSTALL_FAILED_ALREADY_EXISTS] when trying to install adb

Apk does not appear in the menu or settings → apps-> manage applications, but when I tried to install it using adb install, I got this error [INSTALL_FAILED_ALREADY_EXISTS]. By the way, I already installed the same apk on my other emulator, which I already uninstalled. How can i fix this?

+3
source share
2 answers

try:

adb install -r <your_apk>
+17
source

To make sure, try uninstalling the application using this command:

adb uninstall <package_name>
+4
source

All Articles