Android INSTALL_FAILED_UID_CHANGED

前端 未结 26 1136
走了就别回头了
走了就别回头了 2020-11-28 07:37

I have been doing debugging on Android using my Nexus 4, however I recently encountered this error here. After doing some research on this error, it seems to be an issue wit

相关标签:
26条回答
  • 2020-11-28 07:46

    This worked for me:

    adb shell rm -rf /system/app/<package.name>
    
    0 讨论(0)
  • 2020-11-28 07:46

    A solution for non-rooted device. Go to the Application manager and uninstall the app called "Selendroid" and retry again. This solution works for me.

    0 讨论(0)
  • 2020-11-28 07:46

    Use

    adb shell

    go to the shell.
    Then run the command follow:

    rm -rf /data/data/package name

    please repleace package name with your own, such as com.map.map

    0 讨论(0)
  • 2020-11-28 07:47

    I do have root on my Nexus 5, but nothing worked, so I had to run a factory reset from the settings which worked.

    0 讨论(0)
  • 2020-11-28 07:48

    You probably introduced an SharedUserID which causes this.

    0 讨论(0)
  • 2020-11-28 07:48

    I met the similar problem. The reson is that you didn't uninstall all component of the app.My solution is: deleting /data/data/com.eg.android.AlipayGphone manually.

    work well for me.

    I hope it is helpful for u!

    0 讨论(0)
提交回复
热议问题