I'm going to edit opera mini v6.5 server because it is blocked in our country

now i have unpacked the .apk file extract classes.Dex then convert in via dex2jar.bat now modified the server. here is a big problem i wanna to repack the .jar or .class to classes.Dex but no way to do it. how to ???

link|improve this question
feedback

1 Answer

To dexify a jar file, you would use dx.bat inside of your sdk's platform-tools folder. You can also look at the -dex task inside of the build.xml file inside of your tools\ant folder in your SDK.

link|improve this answer
Thanks for your answer now i have another problem i used this command line in run but nothing happened just opened and closed dx.bat e:\users\sadra\desktop\android-sdk-windows\platform-tools\dx –dex –output=classes.dex –locals=full –positions=lines classes.jar and i didn't find build.XML in that folder now what should i do??? – Sadra Nsh Dec 2 '11 at 12:12
Try looking in e:\users\sadra\desktop\android-sdk-windows\tools\ant\build.xml. You could also just use ant (by setting the properties needed by the -dex step) to do your conversion. – Justin Breitfeller Dec 2 '11 at 14:47
thanks a lot again but I'm no Ob and didn't understand what u said i didn't find build.xml again also another item how about using smali and how to ??? – Sadra Nsh Dec 2 '11 at 15:10
Are you sure you got no error when you ran the dx command? If there was no error, you should see a classes.dex file sitting in the directory somewhere. – Justin Breitfeller Dec 2 '11 at 15:16
here is the link what i see after using that it says no command link – Sadra Nsh Dec 2 '11 at 21:16
show 5 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.