问题描述:

Performing Streamed Install
adb: failed to install app-debug.apk: Failure [INSTALL_FAILED_UPDATE_INCOMPATIBLE: Package com.*.app signatures do not match the previously installed version; ignoring!]

通过命令行 adb install -r app-debug.apk 安装手机程序的时候遇到了这个问题。

原因:手机上已经安装了之前的版本,可能从桌面上没有发现该应用,但是手机系统中还有相应的目录和缓存文件。试了很多其他的方法,最终通过执行卸载命令解决了这个问题。

解决方法:运行命令 adb uninstall com.*.app 卸载程序,再执行adb install -r app-debug.apk,程序安装成功。