Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Application Installation Failed - INSTALL_FAILED_VERIFICATION_FAILURE

Started a new project, and this occurred to me:

I am using Genymotion as my emulator. Not sure what causes this problem.

I tried:

  • 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.
like image 832
Matthew Francis Avatar asked Mar 09 '17 22:03

Matthew Francis


2 Answers

Open terminal, and type adb shell to access the emulator shell.

Type settings put global verifier_verify_adb_installs 0 on the shell.

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.

like image 123
Randy Sugianto 'Yuku' Avatar answered Sep 24 '22 05:09

Randy Sugianto 'Yuku'


For Genymotion the following works

Turning off Google play protect

Please go to Android Emulator Settings -> Security & Location -> Goolge Play protect then disable the settings

like image 23
DhineshYes Avatar answered Sep 24 '22 05:09

DhineshYes