What mistake is this and what can I do to fix it?

Asked

Viewed 352 times

-1

Erro de android

Error: ADB exited with Exit code 1 Performing Streamed Install adb: failed to install C: pedidos build app outputs apk app.apk: Failure [INSTALL_FAILED_UPDATE_INCOMPATIBLE: Package with.ample orders. Signatures do not match Previously installed version; ignoring! ] Error Launching application on Mi 9 SE. Exited (sigterm)

  • Package com.example.pedidos signatures do not match previously installed version

2 answers

2

Try to understand the error:

[INSTALL_FAILED_UPDATE_INCOMPATIBLE: Package with.ample orders. Signatures do not match Previously installed version; ignoring!]

Incompatibility failure when installing the update, the signature of your package (Your application) is not equal to the installed version; Update ignored!


Uninstall the app from your phone and Compile again that will work.

This sometimes occurs when you compile from another computer, or create another project with the same name as one previously installed on your device.

Heed

Be alert when reinstalling, as your mobile phone is a Xiaomi will ask for permission for the installation, so when the popup appears on your mobile check the "Always allow" option and click Install.

-2

It happened to me recently without being installed the app on the device, I checked that eventually may have been poorly uninstalled, what I did to repair was to install the version I have in the playstore and uninstall through the command

adb uninstall 'packageName'

then solved it. If you do not have it in the playstore, you can extract the apk through a virtual machine and install it on the device, or still compile it.

Browser other questions tagged

You are not signed in. Login or sign up in order to post.