Build .APK after editing with dex2jar and jd-gui?

I used dex2jar using an IT tutorial to extract .class files and used jd-gui to view classes. but I can’t edit in jd-gui, so through jd-gui I am "Saved All Resources", now I have .zip with .java classes, so I edited them using Notepad ++. So now I have a .zip with all the classes in .java and I edited what I wanted, how do I do all this for .apk to install on the phone? Is this the wrong way to edit .apk?
Thank you

+3
source share
2 answers

If the decompiler does not decompile everything correctly (in fact with obfuscation you will never get the code without errors), you will not be able to recompile the code ...

If you edit classes in eclipse, you will see that there are many errors and many $ NameClassNumber and other things.

Maybe you can edit than repackage some resources, but the code (fortunately) is missing.

+4
source

I have never had good dex2jar results.

dex jar 7-zip, baksmali http://code.google.com/p/smali/, dex ".smali" ( , , ), smali ( baksmali) . 7-zip, classes.dex .

+4

All Articles