Question

I've found a good article on how the Android build process works, which shows the following process:

enter image description here

However, I've also seen another article which says that it uses javac to convert all files to .class files, then the dx tool in the adk converts all .class files to classes.dex, like so:

enter image description here

Please can someone clarify which one is correct?

Was it helpful?

Solution

You can take a look at the official document Building and Running http://developer.android.com/tools/building/index.html

OTHER TIPS

Java source code is compiled to .class files by javac, and then the class files are converted to Dalvik bytecode by the "dx" tool, which is included in the sdk 'tools'.

Here is a good explanation of android build process

enter image description here

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top