Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Find and use the predefined ib_profile.xml file:

    1. Locate the ib_profile.xml file:
      /opt/incredibuild/data/custom_profiles/android/9-11

    2. Copy this ib_profilprofile.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 without any modifications (vanilla), create a back batch file to initialize certain environment variables:
    Note: 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.

    #!/bin/bash

    source build/envsetup.sh

    lunch aosp_arm-eng

    m droid


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

Code Block
ib_console ./m_droid -j <Number_of_Processes_to_Run_in_Parallel>

...