本文介绍了应用程序安装失败 - INSTALL_FAILED_VERIFICATION_FAILURE的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
开始了一个新项目,这个发生在我身上:
Started a new project, and this occurred to me:
我使用 Genymotion
作为我的模拟器.不确定是什么导致了这个问题.
I am using Genymotion
as my emulator. Not sure what causes this problem.
我试过了:
- 重建项目
- 确保我的
emulator
有足够的空间(我还有 4.5gb) - 检查它是否已经安装在
emulator
中,还没有.
- Rebuilding the project
- Made sure I have enough space in my
emulator
(I have 4.5gb left) - Check if it's already installed in the
emulator
, it hasn't.
推荐答案
打开终端,输入adb shell
进入模拟器shell.
Open terminal, and type adb shell
to access the emulator shell.
键入 settings 将全局 verifier_verify_adb_installs 0
放在 shell 上.
Type settings put global verifier_verify_adb_installs 0
on the shell.
我认为这与最近的 Google Play 服务更新有关.验证者更严格.该命令实质上禁用了验证应用选项.来自这篇文章.
I think this is related to the recent Google Play Services update. The verifier is more strict. This command in essence disables the Verify Apps option. From this article.
这篇关于应用程序安装失败 - INSTALL_FAILED_VERIFICATION_FAILURE的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!