Need help with Deodex (got 95% there)

guyinlaca

Member
Joined
Apr 4, 2010
Messages
42
Reaction score
0
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.
 

pandroid

Theme Developer
Theme Developer
Joined
Dec 16, 2009
Messages
850
Reaction score
0
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
 

Abe21599

Super Moderator
Rescue Squad
Joined
Dec 22, 2009
Messages
6,322
Reaction score
31
Location
Ohio
rm is just the remove command. go ahead and do it that way.
 
Top