• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Root xultimate still work for 2.3.340?

yes it does! I used it yesterday! Be sure to use these ADB commands instead!

Completing Deodex:
adb shell
su
stop
mount -o rw,remount /dev/block/system /system
cp /sdcard/done_app/* /system/app/
cp /sdcard/done_frame/* /system/framework/
rm /system/app/*.odex
rm /system/framework/*.odex
exit
exit
adb reboot
 
nothing really changed, but, in a later post in the thread another user corrected the original post. if you follow the OP's adb commands, your phone will restart in the middle of the ADB commands and all kinds of hell will break loose.
 
To odex your phone, you should be able to copy both origi folders to your sd card and run the script, but modified to use the original folders and not delete the odex files:

Code:
adb shell
su
stop
mount -o rw,remount /dev/block/system /system
cp /sdcard/origi_app/* /system/app/
cp /sdcard/origi_frame/* /system/framework/
exit
exit
adb reboot
I have not tested this so make sure you have a backup first!
 
OK in order for me to complete this I had to have my phone in charge only mode otherwise it would not recognize the SD card was there. Just thought this might help...

Also, seems to be taking a long time to boot the first time so don't get scared if this happens to you...
 
Back
Top Bottom