0 votes
in JQuery by
How the build process works  in Android?

1 Answer

0 votes
by
  1. First step involves compiling the resources folder (/res) using the aapt (android asset packaging tool) tool. These are compiled to a single class file called R.java. This is a class that just contains constants.
  2. Second step involves the java source code being 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’. The output is classes.dex.
    1. The final step involves the android apkbuilder which takes all the input and builds the apk (android packaging key) file.

Related questions

0 votes
asked Jun 22, 2020 in JQuery by DavidAnderson
+1 vote
asked Aug 3, 2020 in JQuery by Hodge
...