Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Android stores it's programs in APK format, which is a modified version of ZIP/JAR.

When these APK files are installed, they are stored in /system/app/$APKNAME.apk.

Some of the apps in this dir also have a $APKNAME.obex file.

These APK files contain some of the fallowing

META-INF
    MANIFEST.MF
    CERT.RSA
    CERT.SF
SHA1-Digest
res
AndroidManifest.xml
classes.dex
resources.arsc

So what I want to know is what are the .obex files and are androids program decompressed from the APK/ZIP/JAR at runtime and how?

share|improve this question
Sounds like an APK is a whole lot like a JAR. Which is to say, not even modified ZIP -- just a regular ZIP, but with particular files in particular places within it. – cHao Mar 22 '12 at 3:58
Keep in mind that obex are more than just decompressed, they are also optimized and verified. This makes it so that the verifier has to do less work, and you don't have to do as much optimization at runtime (nonobviously you still have to do some). – Kristopher Micinski Mar 22 '12 at 4:02
@cHao OK, I'm really wanting to know the process from the install of an APK to the launch/run. – Taylor Bioniks Mar 22 '12 at 4:03
@KristopherMicinski so the .obex files are like Verified keys + Optimized classes.dex ? – Taylor Bioniks Mar 22 '12 at 4:05
verified keys, no, it's not that (I mean, it's not about that kind of verification). It's verified bytecode, to some extent. Read up on the "bytecode verifier." Bytecode and verification both require some amount of static analysis, so it makes sense that they sit closely together in the system. However, you still have to do some stuff at runtime, and also can get better JIT. Android does trace based JIT, so you can't know which paths will be hottest until runtime. – Kristopher Micinski Mar 22 '12 at 4:12

1 Answer

up vote 2 down vote accepted

The way that this works is pretty interesting, and gives some key insights into Android's runtime model. The first thing I'd recommend watching is Dalvik VM internals, if you plan on doing any serious amount of systems stuff with Android. (Although, it's obviously old.) Now, when the Android package manager gets an intent which requires starting a new app it forks off a new virtual machine from an already running zygote process. This is basically a technique which allows the system to get a lot of nice memory properties (sharing the pages mapped, etc..). Then, the system loads up a (potentially pre optimized and verified) file to load so the vm can start executing it. You should read this document, which will tell you quite a bit about how this works. (Perhaps this thread will also help.) Keep in mind that as all systems are different -- for example, if you're on a new architecture, you won't get JIT support unless you explicitly write it! -- you can't know for sure how Dalvik will load code to run your app.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.