我试着重新安装apk

$adb install -r new.apk

它显示了错误:

Failure [INSTALL_PARSE_FAILED_INCONSISTENT_CERTIFICATES]

一种解决方案是卸载并安装新的。apk,这很好。

但我想知道我是否可以重新构建apk并重新安装而不卸载。如。修改AndroidManifest.xml中的一些配置,或者不签署APK,等等。

如果您能告诉我“INSTALL_PARSE_FAILED_INCONSISTENT_CERTIFICATES”的全部含义,将不胜感激。


当前回答

只需从设备中删除旧版本并重新安装即可。因为设备。密钥存储库已经存在于设备中,所以只需卸载构建并重新安装APK即可。

谢谢

其他回答

If you encounter a failed deployment to an Andorid device or emulator with the error "Failure [INSTALL_PARSE_FAILED_INCONSISTENT_CERTIFICATES]" in the Output Window, simply delete the existing app on the device or emulator and redeploy. Debug builds will use a debug certificate while Release builds will use your configured certificate. This error is simply letting you know that the certificate of the app installed on the device is different than the one you are attempting to install. In non-development (app store) scenarios, this can be indicator of a corrupted or otherwise modified app not safe to install on the device.

这是使用adb从设备卸载应用程序的命令:

adb uninstall <package name>

在另一个用例中,我得到了类似的错误。 当我第一次得到错误,我惊慌失措,并删除/data/data/{package.name} 在那之后,我尝试了,但我的问题仍然存在。 然后我尝试卸载,它失败了。

然后我删除了/system/app中的apk文件(需要root访问权限),并尝试卸载,成功了。

之后我试着重新安装apk,它工作了。

我在编写更新代码时更改了包的名称,这样我就可以通过Eclipse在我的设备上调试它,而不用删除已安装的旧版本。没有恢复我试图重新安装时使用的包名,我得到了同样的错误。使用相同的包名重新安装成功。

我今天也犯了同样的错误,但问题不是完全一样的。我正在使用ADB和安装在VirtualBox中的Android。我尝试安装我的应用程序的不同版本(有签名/没有签名,调试/发布模式),得到了两个错误:INSTALL_FAILED_UID_CHANGED和INSTALL_PARSE_FAILED_INCONSISTENT_CERTIFICATES。

现在,当查看/data/data/{package.name}时,我发现卸载应用程序后仍然存在一堆文件。我试图rm -rf它们,但没有成功:我得到了I/O错误。

解决办法是:

关闭虚拟机 使用vdfuse挂载VDI映像(读/写) 使用e2fsck修复Partition1映像文件 Umount并重启虚拟机