android - Trivial programming mistakes found in source codes, when APK file decoded -


i followed steps here decode apk file, , tried compile decoded project in eclipse. found errors, of them trivial programming mistakes. here examples:

int i;     (int j = 0;; j++)             {                 if (j >= i)                     return;              } 

this error says local variable may not have been initialized. apk file, means project has been compiled successfully, what's wrong? there problem dex2jar file, has missed parts of code? help.

here correction:

int = 0; (int j = 0;; j++)             {                 if (j >= i)                     return;              } 

you should decompile own project, 1 still have original source for. that's best way see how unreliable compiler , how unreadable becomes. decompiling project not trivial. may still need make manual adjustments afterwards.


Comments

Popular posts from this blog

java.util.scanner - How to read and add only numbers to array from a text file -

rewrite - Trouble with Wordpress multiple custom querystrings -