I have a MyFile.jar file. I use JD-GUI to decompile it and used its "Save All Sources" options to save the files to a .zip file. Now extracted the .zip file and edited a .java file.
the folder structure after extracting .zip file is like this
_____ META-INF(folder)
source(folder) -------|
------com(folder)-->example--->App---> all .java files
now how do i recompile it back to .jar file ??
javac
and usejar
to make a jar from the compiled class. – Reversojavac
but i get errors in various .java files -- error: package android.os does not exist, error: cannot file symbol .etc . how do i resolve these errors. – Cistaceous