Home > Articles

This chapter is from the book

Exploring the Source

The last of this chapter’s high-level views of Android is, as promised, much more practical. It’s time to look at the AOSP code-base.

The primary source for Android code is the Android Open Source Project (AOSP) site at https://source.android.com/. Android system developers should be familiar with this site whether it is the source of the code for their project or not. Android originates here, and documentation and update information are available here before being available anywhere else.

In particular, the Overview section of the AOSP website contains important information about source branching and tagging strategies and the legal constraints on the use of the Android name, logos, and so on. Anyone working with Android code should read this documentation and be, at the least, generally familiar with it.

Other Sources

Several other sources for forks of the AOSP code exist, each with its own advantages and disadvantages. Among these forks, perhaps the best known are AOKP and MIUI. Sadly, one of the most important forks, CyanogenMod, has disappeared from the scene. The support community has rebranded it as LineageOS, and it may return to viability in the future.

What’s in the Box?

The remaining sections of this chapter assume that the developer/build machine has been set up as described in Chapter 2. Let’s take a quick walk through the source, just to get the lay of the land. Listing 3.2 shows the top-level directory structure.

Listing 3.2 Source Top Level

lrwxr-xr-x    1 aosp  staff     19 Oct 13 09:26 Android.bp
-r--r--r--    1 aosp  staff     92 Oct 13 09:26 Makefile
drwxr-xr-x   35 aosp  staff   1564 Oct 13 09:26 art
drwxr-xr-x   14 aosp  staff    816 Oct 13 09:26 bionic
drwxr-xr-x    3 aosp  staff    102 Oct 13 09:26 bootable
lrwxr-xr-x    1 aosp  staff     26 Oct 13 09:26 bootstrap.bash
drwxr-xr-x    5 aosp  staff    374 Oct 13 09:26 build
drwxr-xr-x    3 aosp  staff    102 Oct 13 09:26 compatibility
drwxr-xr-x   12 aosp  staff    748 Oct 13 09:26 cts
drwxr-xr-x    8 aosp  staff    476 Oct 13 09:26 dalvik
drwxr-xr-x    5 aosp  staff    170 Oct 13 09:26 developers
drwxr-xr-x   20 aosp  staff    748 Oct 13 09:26 development
drwxr-xr-x   10 aosp  staff    340 Oct 13 09:27 device
drwxr-xr-x  310 aosp  staff  10540 Oct 13 09:30 external
drwxr-xr-x   15 aosp  staff    510 Oct 13 09:31 frameworks
drwxr-xr-x   12 aosp  staff    408 Oct 13 09:31 hardware
drwxr-xr-x    5 aosp  staff    170 Oct 13 09:31 kernel
drwxr-xr-x   20 aosp  staff   1258 Oct 13 09:31 libcore
drwxr-xr-x    8 aosp  staff    680 Oct 13 09:31 libnativehelper
drwxr-xr-x    9 aosp  staff    306 Oct 13 09:32 packages
drwxr-xr-x    6 aosp  staff    272 Oct 13 09:32 pdk
drwxr-xr-x   10 aosp  staff    374 Oct 13 09:32 platform_testing
drwxr-xr-x   30 aosp  staff   1020 Oct 13 09:36 prebuilts
drwxr-xr-x   24 aosp  staff   1054 Oct 13 09:36 sdk
drwxr-xr-x   37 aosp  staff   1258 Oct 13 09:36 system
drwxr-xr-x   10 aosp  staff    340 Oct 13 09:36 test
drwxr-xr-x    4 aosp  staff    136 Oct 13 09:36 toolchain
drwxr-xr-x   21 aosp  staff    714 Oct 13 09:37 tools

Android.bp

The build system for Android is in transition. Up through the Marshmallow release, Android used an extension of GNU make as the underlying build system. The system used build files named Android.mk dispersed throughout the build tree, selected using a configuration describing the particular device being built. The process resulted in a large in-memory makefile to do the build. While powerful, this approach had limitations and never scaled well, especially noticeable as the Android source tree grew in size.

Nougat introduced a new build system, Soong, which is inspired by Bazel and uses a Go syntax. With Soong, the Android.mk files are replaced with Android.bp (blue print) files. As announced in late 2020, Google will be further transitioning the build system to Bazel in the near future.

Makefile

Makefile is the top-level makefile used in the legacy GNU make build system. It is copied here from the build directory when repo sync is executed.

art

The art directory contains the code for the Android Runtime (ART), an ahead-of-time compiled runtime that replaces the original Android virtual machine, Dalvik.

bionic

The bionic directory contains the code for the Android Standard-C-like library, Bionic. The earlier section of this chapter, “System Libraries,” describes Bionic.

bootable

The bootable directory contains the source for the recovery executable. Recovery is used to apply OTA updates, write new firmware, and perform a factory data wipe.

bootstrap.bash

The bootstrap.bash script is part of the new build system, Soong.

build

The build directory contains the both the old and the new build systems. In particular, it contains the shell script envsetup.sh, used to configure the build environment. In addition to setting up required environment variables, this script introduces helper aliases and shell functions, such as lunch, which are used to configure and execute the build, as discussed in detail in Chapter 2.

cts

The cts directory contains the Android Compatibility Test Suite tests. Passing these tests is the minimum requirement for certification as an Android device.

dalvik

The dalvik directory contains the source for Android’s original VM, Dalvik.

developers

The developers directory contains three different repositories of mostly legacy example code. The example Gradle plug-ins may be of interest.

development

The development directory contains odds and ends that may be useful to developers. It contains things such as tools for editing Android source using one of the popular IDEs, Eclipse or IntelliJ; more example code; developer debug applications; configurations for checkstyle, the emulator; and other tools.

device

device is an extremely important directory for a device developer. The Android source and build system are designed with the intention that all device-specific code—device-specific configuration of the build system, toolchain customizations, kernel selection, and even specialized versions of applications—go here. Although most device developers will find that very constraining, it is a smart strategy to keep as much device-specific code as possible in this directory. Only broader, more generic cross-platform changes should be made outside of the device-specific directory. Much of the work in the rest of this book will happen in this directory.

external

external contains all the buildable packages that are used, but not maintained, as part of Android. It contains things like bouncycastle, the Android cryptography library; expat, an XML parser; junit, a standard testing framework; and so on. All of these things are essential components of a running Android system but are obtained from external providers. Placing the code for these components in this directory makes the dependency explicit and makes Android less susceptible to versioning issues.

frameworks

The frameworks directory is the heart of Android. The public Android API is located here, in the directory frameworks/base/core/java. Core system services such as the ActivityManagerService and PackageManagerService are in frameworks/base/services/core/java. Input event management and sensors code can be found under frameworks/base/native. You can usually find native implementation code next to java directories in sibling jni directories and static resources in directories named res.

hardware

The hardware directory contains the HAL. This is the abstraction layer code for common devices: Wi-Fi, Bluetooth, and baseband radios; sensors; cameras; and so on. Although this directory contains shim code for many common devices, it is the device directory that contains customizations for a specific board and any one-off hardware on that board.

libcore

The most interesting things that live in the libcore directory are the sources for the Apache Harmony base implementations of the Java API. For example, the file

libcore/ojluni/src/main/java/java/lang/Class.java

is the source for Android’s implementation of the Java type Class.

libnativehelper

As the name implies, the libnativehelper directory contains native helper functions. It is sort of a “commons” directory for HAL code that leverages Java Native Interface (JNI) to bridge the gap between the runtime code and backing native code.

packages

The packages directory contains applications that will be included as part of the system. The directory packages/apps, for instance, contains the standard DeskClock, Phone, and Camera apps that are pre-installed (and not uninstallable) on a typical Android device.

pdk

The pdk directory contains the platform development toolkit (PDK). It is given to original device manufacturers (ODMs) so that they can develop HAL and other specialization software for their devices. The PDK is a subset of the full Android source, so this directory doesn’t contain much that is useful as part of the Android source tree.

platform-testing

The platform-testing directory contains odds and ends of tools for testing device functionality.

prebuilts

The large prebuilts directory is very similar to the external directory, except that the things that it contains are not built as part of the system build process. For instance, it contains the binaries for the clang and gcc, C compilers; the Python and Go language SDKs; and the kernel for the QEMU-based Android emulator.

sdk

sdk, a mostly historical directory, contains source for some of the Android development tools as they were just before Android Studio was introduced. Since Android Studio, the SDK tools have their own, partially overlapping, repo-maintained build tree (see http://tools.android.com/build). Most of the code here is obsolete.

system

Another very important directory, system contains the native daemons, system libraries, and data essential to an Android system. In here are the sources for vold, the SE Linux policies, and the system trusted certificates. These are the parts of the Android system that are illustrated in the top-left of Figure 3.1 and discussed in Chapter 7.

toolchain

The toolchain directory contains a set of automated tests that can be executed to gather benchmarking data. Building and running these tests require patching the source tree.

tools

The tools directory contains a number of helper tools, such as ones to ease the creation of Android AVDs and to analyze atrace data captures.

out

The out directory is not part of the build environment maintained by repo. It is, however, the default scratchpad for the build system. None of the previously mentioned directories should be affected in any way by a system build. From the build’s point of view, they are all read only. Restoring a build environment to its pristine state should always be possible by simply deleting this directory. All intermediates as well as the final build artifacts are put here.

InformIT Promotional Mailings & Special Offers

I would like to receive exclusive offers and hear about products from InformIT and its family of brands. I can unsubscribe at any time.

Overview


Pearson Education, Inc., 221 River Street, Hoboken, New Jersey 07030, (Pearson) presents this site to provide information about products and services that can be purchased through this site.

This privacy notice provides an overview of our commitment to privacy and describes how we collect, protect, use and share personal information collected through this site. Please note that other Pearson websites and online products and services have their own separate privacy policies.

Collection and Use of Information


To conduct business and deliver products and services, Pearson collects and uses personal information in several ways in connection with this site, including:

Questions and Inquiries

For inquiries and questions, we collect the inquiry or question, together with name, contact details (email address, phone number and mailing address) and any other additional information voluntarily submitted to us through a Contact Us form or an email. We use this information to address the inquiry and respond to the question.

Online Store

For orders and purchases placed through our online store on this site, we collect order details, name, institution name and address (if applicable), email address, phone number, shipping and billing addresses, credit/debit card information, shipping options and any instructions. We use this information to complete transactions, fulfill orders, communicate with individuals placing orders or visiting the online store, and for related purposes.

Surveys

Pearson may offer opportunities to provide feedback or participate in surveys, including surveys evaluating Pearson products, services or sites. Participation is voluntary. Pearson collects information requested in the survey questions and uses the information to evaluate, support, maintain and improve products, services or sites, develop new products and services, conduct educational research and for other purposes specified in the survey.

Contests and Drawings

Occasionally, we may sponsor a contest or drawing. Participation is optional. Pearson collects name, contact information and other information specified on the entry form for the contest or drawing to conduct the contest or drawing. Pearson may collect additional personal information from the winners of a contest or drawing in order to award the prize and for tax reporting purposes, as required by law.

Newsletters

If you have elected to receive email newsletters or promotional mailings and special offers but want to unsubscribe, simply email information@informit.com.

Service Announcements

On rare occasions it is necessary to send out a strictly service related announcement. For instance, if our service is temporarily suspended for maintenance we might send users an email. Generally, users may not opt-out of these communications, though they can deactivate their account information. However, these communications are not promotional in nature.

Customer Service

We communicate with users on a regular basis to provide requested services and in regard to issues relating to their account we reply via email or phone in accordance with the users' wishes when a user submits their information through our Contact Us form.

Other Collection and Use of Information


Application and System Logs

Pearson automatically collects log data to help ensure the delivery, availability and security of this site. Log data may include technical information about how a user or visitor connected to this site, such as browser type, type of computer/device, operating system, internet service provider and IP address. We use this information for support purposes and to monitor the health of the site, identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents and appropriately scale computing resources.

Web Analytics

Pearson may use third party web trend analytical services, including Google Analytics, to collect visitor information, such as IP addresses, browser types, referring pages, pages visited and time spent on a particular site. While these analytical services collect and report information on an anonymous basis, they may use cookies to gather web trend information. The information gathered may enable Pearson (but not the third party web trend services) to link information with application and system log data. Pearson uses this information for system administration and to identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents, appropriately scale computing resources and otherwise support and deliver this site and its services.

Cookies and Related Technologies

This site uses cookies and similar technologies to personalize content, measure traffic patterns, control security, track use and access of information on this site, and provide interest-based messages and advertising. Users can manage and block the use of cookies through their browser. Disabling or blocking certain cookies may limit the functionality of this site.

Do Not Track

This site currently does not respond to Do Not Track signals.

Security


Pearson uses appropriate physical, administrative and technical security measures to protect personal information from unauthorized access, use and disclosure.

Children


This site is not directed to children under the age of 13.

Marketing


Pearson may send or direct marketing communications to users, provided that

  • Pearson will not use personal information collected or processed as a K-12 school service provider for the purpose of directed or targeted advertising.
  • Such marketing is consistent with applicable law and Pearson's legal obligations.
  • Pearson will not knowingly direct or send marketing communications to an individual who has expressed a preference not to receive marketing.
  • Where required by applicable law, express or implied consent to marketing exists and has not been withdrawn.

Pearson may provide personal information to a third party service provider on a restricted basis to provide marketing solely on behalf of Pearson or an affiliate or customer for whom Pearson is a service provider. Marketing preferences may be changed at any time.

Correcting/Updating Personal Information


If a user's personally identifiable information changes (such as your postal address or email address), we provide a way to correct or update that user's personal data provided to us. This can be done on the Account page. If a user no longer desires our service and desires to delete his or her account, please contact us at customer-service@informit.com and we will process the deletion of a user's account.

Choice/Opt-out


Users can always make an informed choice as to whether they should proceed with certain services offered by InformIT. If you choose to remove yourself from our mailing list(s) simply visit the following page and uncheck any communication you no longer want to receive: www.informit.com/u.aspx.

Sale of Personal Information


Pearson does not rent or sell personal information in exchange for any payment of money.

While Pearson does not sell personal information, as defined in Nevada law, Nevada residents may email a request for no sale of their personal information to NevadaDesignatedRequest@pearson.com.

Supplemental Privacy Statement for California Residents


California residents should read our Supplemental privacy statement for California residents in conjunction with this Privacy Notice. The Supplemental privacy statement for California residents explains Pearson's commitment to comply with California law and applies to personal information of California residents collected in connection with this site and the Services.

Sharing and Disclosure


Pearson may disclose personal information, as follows:

  • As required by law.
  • With the consent of the individual (or their parent, if the individual is a minor)
  • In response to a subpoena, court order or legal process, to the extent permitted or required by law
  • To protect the security and safety of individuals, data, assets and systems, consistent with applicable law
  • In connection the sale, joint venture or other transfer of some or all of its company or assets, subject to the provisions of this Privacy Notice
  • To investigate or address actual or suspected fraud or other illegal activities
  • To exercise its legal rights, including enforcement of the Terms of Use for this site or another contract
  • To affiliated Pearson companies and other companies and organizations who perform work for Pearson and are obligated to protect the privacy of personal information consistent with this Privacy Notice
  • To a school, organization, company or government agency, where Pearson collects or processes the personal information in a school setting or on behalf of such organization, company or government agency.

Links


This web site contains links to other sites. Please be aware that we are not responsible for the privacy practices of such other sites. We encourage our users to be aware when they leave our site and to read the privacy statements of each and every web site that collects Personal Information. This privacy statement applies solely to information collected by this web site.

Requests and Contact


Please contact us about this Privacy Notice or if you have any requests or questions relating to the privacy of your personal information.

Changes to this Privacy Notice


We may revise this Privacy Notice through an updated posting. We will identify the effective date of the revision in the posting. Often, updates are made to provide greater clarity or to comply with changes in regulatory requirements. If the updates involve material changes to the collection, protection, use or disclosure of Personal Information, Pearson will provide notice of the change through a conspicuous notice on this site or other appropriate way. Continued use of the site after the effective date of a posted revision evidences acceptance. Please contact us if you have questions or concerns about the Privacy Notice or any objection to any revisions.

Last Update: November 17, 2020