emulation - android 2.3 emulator hangs after adb shell stop then start -
in android 2.2, able start emulator, run 'adb shell stop' 'adb shell start' have emulator come up. since changing android 2.3 emulator not start, , logcat hangs these messages:
settingsprovider cache settings table 'secure' rows=27; fullycached=true qemud fdhandler_accept_event: accepting on fd 9 qemud created client 0x11f88 listening on fd 11 qemud client_fd_receive: attempting registration service 'hw-control' qemud client_fd_receive: -> received channel id 5 settingsprovider cache settings table 'system' rows=45; fullycached=true
i'm using eclipse, help!
it might problem 1 of long running process re-establishing qemu hw simulation. kill process /system/bin/qemud
, start emulator.
steps
adb shell stop
adb shell ps
(get pid of/system/bin/qemud
)adb kill <pid_process>
adb shell start
Comments
Post a Comment