Pregunta

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?

¿Fue útil?

Solución

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

Otros consejos

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

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top