On Thu, May 14, 2009 at 2:44 AM, ja...@work <[email protected]> wrote: > > Hi guys, > > I'm new to Android and i don't understand very well how dex files > work. > When I create an application, I do in in java (isn't it?). > Then, with the eclipse adt, this file is converted in a dex file and > the DVM can receive it.
In a nutshell: - Eclipse compiles your .java into .class - "dx" converts the various .class into bin/classes.dex. - aapt compiles your resources in a compact binary form. - the manifest, the compiled resources and the classes.dex get combined in your apk file, which is just a zile file. Unzip the apk to have a look at it. You can find many tutorials out there and youtube videos on android that explain that. R/ --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Android Beginners" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-beginners?hl=en -~----------~----~----~----~------~----~------~--~---

