You want to run your android project directly from eclipse on the device instead of dead slow emulator. For some reason you see something like this:
$ ./adb devices List of devices attached ???????????? no permissions
adb program is located in directory android-sdk-linux_x86/platform-tools.
Fixing it requires to run these commands as root
$ sudo ./adb kill-server $ sudo ./adb start-server * daemon not running. starting it now on port 5037 * * daemon started successfully *
Now you have permission to run android project directly from phone.
$ ./adb devicesList of devices attached I55003067f3ce device
Please comment ad hit +1 button above if this helped you.





