Error [INSTALL_FAILED_UPDATE_INCOMPATIBLE] followed by DELETE_FAILED_INTERNAL_ERROR

When I try to run the application on the nexus5 device, a window opens with an Android version open window saying that “ it was not possible to install a message with the message INSTALL_FAILED_CONFLICTING_PROVIDER ”, and then asked me to delete the existing application, even if it does not exist on the device. the launch window also displays “ Failure [INSTALL_FAILED_CONFLICTING_PROVIDER]

when click ok, I will get in the launch window:

"SHELL DEVICE TEAM: pm uninstall com.app.app DELETE_FAILED_INTERNAL_ERROR"

Thank you for your help!

+4
source share
5 answers

I noticed that when using Marshmallow (Android 6.0+), there is a problem with the new game services com.google.android.gms version 8.3.0. I would recommend using version 8.1.0, which solved the problem in my case.

eg:

dependencies {
        compile fileTree(include: ['*.jar'], dir: 'libs')
        compile 'com.google.android.gms:play-services-gcm:8.3.0'
}

Must be changed to:

dependencies {
            compile fileTree(include: ['*.jar'], dir: 'libs')
            compile 'com.google.android.gms:play-services-gcm:8.1.0'
    }

In the build.gradle file

+4
source

It can be installed with a different signature. You need to uninstall the previous application.

You can check Settings → Applications

+2
source

UNINSTALL adb

adb uninstall com.app.app

. this, .

+1

, MI/Xiaomi, :

1: , :

Go to Settings-> Additional settings-> Privacy-> Unknown sources

2: "Developer options", " USB" "".

3: "Developer options" "Install via USB".

:

4: Settings --> Additional settings --> Developer options --> Turn Off MIUI optimization , , .

0

It is possible that MI users have encountered these problems.
Just go to Settings → Mi-account
Create an account Mi> .
Then go to Developer Options → Install via USB (check or enable it)
there you go. Hope this helps !!!

0
source

Source: https://habr.com/ru/post/1620986/


All Articles