Google News
logo
Android - Interview Questions
Explain the build process in Android?
The build process in Android involves three steps
 
* The first step consists of the compilation of the resources folder using the Android Asset Packaging Tool (AAPT). These are compiled into a single class file known as R.java, which only holds constants.

* In the second step, the java source code needs to be compiled to .class files using javac, which are then converted to Dalvik bytecode using the ‘dx’ tool, which is one of the tools in the software development kit. The final output file is classes.ex.

* In the third and final step, the Android apkbuilder is required to take all the inputs and build the Android Packaging Key (APK) file.
Advertisement