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
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...