1

I have recently become interested in changing an APK files extension to .ZIP. I began looking through them. I noticed that there were no .java or .class files. I do have hidden files enabled, so it cant be that. I am wondering:

How does the app function if the java is not there?File contents of the apk/zip

The zip file can be downloaded from here. (It's down right now. My dad is doing work with our WiFi.

http://71.204.114.18/Tyler/app.zip

(If the file is not there then I probably took it down. A few days or weeks, maybe months has probably passed)

  • Wow. some people I can't even trust with a link to my server. ClickMe.html and Virus.bat? I mean come on. My server is hosted on linux, not windows. and I downloaded the the .bat file as a text file on my computer(this one IS windows). shutdown -p. and what was going to make me run this Virus.bat? – Tyler Richardson Aug 14 '16 at 23:36
  • Wow. I was really mad when I wrote that. – Tyler Richardson Sep 08 '16 at 02:10

1 Answers1

1

Android programs are compiled into .dex (Dalvik Executable) files. File classes.dex contains app code.

You can read more on: Dalvik Executable format and StackOverflow question about .dex

pr0gramist
  • 8,305
  • 2
  • 36
  • 48