What's new
DroidForums.net | Android Forum & News

This is a sample guest message. Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

Need help with Deodex (got 95% there)

guyinlaca

Member
I got all the way through the Deodex procedure, but the following adb commands at the end didn't work:

rm /system/app/*.odex
rm /system/framework/*.odex

It appears to me that these commands simply delete the .odex files in the app and framework folders. If so, can I use root explorer to manually delete the .odex files.

I'm concerned about touching anything until I get confirmation of what this does. Thank you in advance.
 
try

adb pull /system/app/*.odex
adb pull /system/framework/*.odex

that will transfer all the .odex files to your computer before you rm them all

and yes, you can use rootexplorer to do the same thing as the rm command
 
Back
Top