本文介绍了失败[INSTALL_FAILED_ALREADY_EXISTS]当我试图更新我的应用程序的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
当我试图更新我的applcation与具有相同签名previous一新版本,显示了上述错误。
when I tried to update my applcation with new version that has same signature as previous one, shows above error.
我所缺少的?
推荐答案
如果您通过安装到设备上的应用程序ADB安装
你应该寻找重新安装选项应为 -r
。所以,如果你这样做 ADB安装-r
您应该能够无需卸载之前安装。
If you install the application on your device via adb install
you should look for the reinstall option which should be -r
. So if you do adb install -r
you should be able to install without uninstalling before.
这篇关于失败[INSTALL_FAILED_ALREADY_EXISTS]当我试图更新我的应用程序的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!