Eclipse Installation error: INSTALL_FAILED_UID_CHANGED

后端 未结 11 1709
粉色の甜心
粉色の甜心 2020-11-28 12:45

I have problem with running an android application from eclipse on real android device

when I click on Run it just show me this error: Installation error: INST

11条回答
  •  暗喜
    暗喜 (楼主)
    2020-11-28 13:29

    This solution finally worked for me with no root:

    $ platform-tools/adb -d install /path/to/proj/bin/foo.apk
    797 KB/s (4872885 bytes in 5.963s)
    pkg: /data/local/tmp/foo.apk
    Success
    $ platform-tools/adb -d uninstall com.example.foo.bar
    Success
    

    I don't completely understand why this worked when installing from Eclipse did not work for the same APK, but I'm just happy to move on...

提交回复
热议问题