Sunday, October 24, 2010

android tool box

Emulator:
emulator -cpu-delay 0 -no-boot-anim -cache ./cache  -avd froyo


adb log view:
adb -e logcat

(-d if device, -s xxxx if multiple emulators/devices)

and for the code:
import android.util.Log;
[...]
Log.d(TAG, sb.toString());


controling the emulator (will never understand why it's not implemented in the shell...)
telnet localhost 5554
# gsm call 5555
# sms...

No comments:

Post a Comment