Differences between revisions 2 and 3
Revision 2 as of 2016-06-05 09:42:38
Size: 860
Editor: ChirayuDesai
Comment: fix numbered list
Revision 3 as of 2016-06-05 09:43:00
Size: 863
Editor: ChirayuDesai
Comment: Fix bulleted list
Deletions are marked like this. Additions are marked like this.
Line 13: Line 13:
* Make this elaborate
* Include links to the relevant android build system files
* Give a brief into about the android build system.
 * Make this elaborate
 * Include links to the relevant android build system files
 * Give a brief into about the android build system.

Contents

  1. android.jar

This page describes the build process of various Android development tools. It is intended to serve as a reference to create Debian specific rules.

android.jar

This file contains the public API of the android framework, used when compiling apps. Since it only contains the public parts from the source which also includes private APIs, it's build process is a bit complex.

  1. doclava processes the public parts of the API and puts the relevant files in a folder
  2. framework-res.apk is built from framework/base/core/res, which includes all the common image and string resources.
  3. Both of the above are then used to create an android.jar including only the public API.

TODO:

  • Make this elaborate
  • Include links to the relevant android build system files
  • Give a brief into about the android build system.