Hi, I found that this works to some extent. It will save a few minutes for rebuilding the system image and rebooting the emulator:
adb shell mount -o remount,rw -t yaffs2 /dev/block/mtdblock3 /system adb push out/target/product/generic/system/framework/framework.jar / data adb shell rm /system/framework/framework.jar adb shell rm /data/dalvik-cache/ sys...@framework@[email protected] adb shell ln -s /data/framework.jar /system/framework/framework.jar adb shell kill `adb shell ps | grep system_server | cut -b 10- | cut - b -7` However, if I keep doing this, after a while the system server would fail to boot and I get stuck with "ANDROID" on the screen. What could be wrong? What do the Google engineers do to avoid rebuilding system image while modifying the framework? Thanks! -- unsubscribe: [email protected] website: http://groups.google.com/group/android-porting
