I'm with jazzy, I would love to do this but don't have a clue how to. Can someone describe the process (hopefully in Fisher Price terms)?
Thanks
Once again - hok beat me to it. blah!
first, you have to have root (so that you can access and edit the file) - for rooting, there's a nice tutorial in the rooting forum.
here's what I did, but I'm sure there's another easier way and shorter way...
1. download the attached file (either hok's or mine)
2. ensure that you have all the right drivers and ADB installed (basically, i just took the folder and dumped it into c:/windows/system32 folder) on your computer (once again, i think all the files are in the rooting forum).
to test this in windows:
- turn USB debugging on in your phone (under menu > settings > applications > development)
- connect phone to your computer
- click start > run > type in "cmd" and you should get the command prompt
- type "adb devices" and your phone should be on there.
- go to the folder where you downloaded the file (or throw the file in your current folder) and throw it on your /sdcard (i.e. type "adb push PhoneEClair.apk /sdcard/")
where PhoneEclair.apk is whatever downloaded file you picked.
3. turn off your phone and disconnect the USB wire.-
4. boot up the phone in recovery: hold volume down, call button (green), and end button (red) - you should get a weird looking blue screen.
5. connect your phone via USB to your computer again.
6. go back into the command prompt (start > run > cmd) and type in "adb shell"
7. you'll get a # or $ prompt (if you have the $ prompt, type in "su")
8. type "cd sdcard" - and you should be in the sdcard folder
9. type "ls P*.*" to make sure your Phone.apk is listed
10. backup your current Phone.apk by typing in "cp /system/app/Phone.apk /sdcard/PhoneBAK.apk"
11. now just copy your downloaded apk over the current one: "cp PhoneEclair.apk /system/app/Phone.apk" (note: the name needs to be changed to Phone.apk)
it seems like a lot, but it really isn't - basically, you're just copying the new Phone.apk over the one in /system/app - i tried to 'baby-step' it.
hopfully that makes sense.