Tyler Richardson
Tyler Richardson

Reputation: 71

Where is APK java file?

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)

Upvotes: 1

Views: 495

Answers (1)

pr0gramista
pr0gramista

Reputation: 9008

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

Upvotes: 1

Related Questions