> ## Documentation Index
> Fetch the complete documentation index at: https://docs.incredibuild.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Accelerating Android OS Builds (AOSP)

Last updated on Dec 17, 2024

For all supported AOSP versions, Incredibuild Linux provides a customized ib\_profile.xml file, which is designed for each version separately. Before you run an AOSP build, you need to locate the appropriate ib\_profile.xml file for your AOSP version, and copy it to your project directory. Then, you can run your AOSP builds with Make.

## **Executing AOSP Builds (version 10-15)**

Before you execute AOSP 10-15 builds, there are certain actions you need to perform in order to prepare your Incredibuild Environment for the executions.

1. Find and use the predefined ib\_profile.xml file

   1. Locate the ib\_profile.xml file

      ```
      /opt/incredibuild/data/custom_profiles/android/10-15/
      ```

   2. Copy this ib\_profile.xml file to your project directory, where the ib\_console \*\*will run.\*\*For example:

      ```
      ~/Android/Project_Directory/ib_profile.xml
      ```

2. If you are using AOSP 11-15 without any modifications (vanilla), create a batch file to initialize certain environment variables. If you are using a different shell, create a similar file (named m\_droid in the example below) that is suited to your shell with the following commands:

   [Copy](javascript:void\(0\);)

   ```
   #!/bin/bash
   source build/envsetup.sh
   lunch aosp_arm-eng
   m droid -j200
   ```

You can now execute builds with Incredibuild Linux by running AOSP builds with Incredibuild Linux as follows:

```
ib_console ./m_droid
```

### Troubleshooting AOSP 10-15

If you are having issues, verify that the config file sets the size of the shared memory that will be used by the running builds. This setting is sometimes needed for the execution of AOSP 10+ sandbox. Unlike other AOSP versions, AOSP 10-15 have limitations on the size of shared memory that can be used. Therefore, you may need to explicitly set the memory size, and not to use the default size.

1. Go to: /opt/incredibuild/settings/initiatorShmMaxSize.config. If this file does not exist, please create it.

2. Verify that the file includes the number 300. This is the maximum memory size in MB that will be allocated to AOSP 10+ builds.

<Note>
  **Note:**

  * Do NOT enter "**MB**" into the file, only the number of the memory size.

  * Generally, the shared memory size can be between 200 MB and 1 GB. However, it is important to set it to 300 in this case.
</Note>

## **Executing Android 9 OS Builds**

1. Find and use the predefined ib\_profile.xml file that is appropriate for your Android version:
   1. Locate the appropriate ib\_profile.xml file for your Android version at:

      ```
      /opt/incredibuild/data/custom_profiles/android/9
      ```

   2. Copy the appropriate ib\_process.xml file to your project directory, where the ib\_console command will run. For example:

      ```
      ~/Android/Project_Directory/ib_profile.xml
      ```

2. Run your Android builds with the appropriate parameters:

   ```
   ib_console <Your_Build_Tool_Command> -<Multiprocessing_Command> <Number_of_Processes_to_Run_in_Parallel>
   ```

   For example, if your are using Make enter the following:

   ```
   ib_console make –j XX
   ```
