I have to create an apk file from the files that I have extracted from the same app using reverse engineering. Can someone help me to create the app using the xml and java files that i have got. ?
How can I create an apk file from xml and java files which i have got after extracting from the app?
Asked
Active
Viewed 2,398 times
-1
-
Did you actually "reverse engineer" the code, or simply unpack someone else's binary? – durbnpoisn Jan 31 '16 at 22:42
-
Reverse engineer @durbnpoisn – Mohith Kalyan Feb 01 '16 at 08:05
2 Answers
0
If these are extracted from a .apk
file, just zip the root/base/top folder and rename it from example.zip
to example.apk
.
Otherwise use your IDE to generate an apk file.

Xander
- 5,487
- 14
- 49
- 77
0
I would recommend you to copy it to an IDE like Android Studio. Simply create a new Project and add the files on their directories.
The app might have some dependencies that you can only add using gradle build. So re-zipping the app and giving it the apk extension might not be enough.

Rosário Pereira Fernandes
- 11,015
- 6
- 55
- 79