I'm using Eclair2Cliq Beta and I've been suffering from getting "permission denied" when using adb commands.
After some search, I found that we need to edit "default.prop".
The present "default.prop" is :
Code:
#
# ADDITIONAL_DEFAULT_PROPERTIES
#
ro.secure=1
ro.allow.mock.location=0
ro.debuggable=0
persist.service.adb.enable=0
In order to make adb work properly, the "default.prop" should be:
Code:
#
# ADDITIONAL_DEFAULT_PROPERTIES
#
ro.secure=0
ro.allow.mock.location=0
ro.debuggable=1
persist.service.adb.enable=1
The fact is, every time you reboot, the default.prop remains the same, no matter what you have edited. The only way to modify default.prop is to modify the boot.img. There's a tutorial about how to modify boot.img, but you need to do this under Linux.
I hope someone can fix this issue.