I followed the steps here to decode an APK file, and tried to compile the decoded project in eclipse. But I found some errors, which some of them are trivial programming mistakes. Here is an examples:
int i;
for (int j = 0;; j++)
{
if (j >= i)
return;
}
This error says that the local variable i may not have been initialized. The APK file, means that the project has been compiled successfully, so what's wrong? Is there any problem with my dex2jar file, so that it has missed some parts of the code? Thanks for your help.