1.问题内容
在真机启动调试Android App的时候报错: adb install 安装失败
adb install "D:\Downland\xxx.apk"
Performing Streamed Install
adb: failed to install D:\Downland\xxx.apk:
Failure [INSTALL_FAILED_UPDATE_INCOMPATIBLE: Package <包名>
signatures do not match previously installed version; ignoring!]
当前手机已经安装了相同报名的App,很久之前安装的。
然后就报了如上的错误。
2.解决方案
将就得测试App卸载即可。
操作方式1:
手机操作长按卸载App
操作方式2:使用 adb命令卸载
adb uninstall <包名>
更多: