A GitHub Action for installing, configuring and running hardware-accelerated Android Emulators on Linux and macOS virtual machines.
The old ARM-based emulators were slow and are no longer supported by Google. The modern Intel Atom (x86 and x86_64) emulators can be fast, but rely on two forms of hardware acceleration to reach their peak potential: Graphics Acceleration, e.g. emulator -gpu host and Virtual Machine(VM) Acceleration, e.g. emulator -accel on. Note: GPU and VM Acceleration are two different and non-mutually exclusive forms of Hardware Acceleration.
This presents a challenge when running emulators on CI especially when running emulators within a docker container, because Nested Virtualization must be supported by the host VM which isn't the case for most cloud-based CI providers due to infrastructural limits. If you want to learn more about Emulators on CI, here's an article Yang wrote: Running Android Instrumented Tests on CI.
GitHub's larger Linux runners support running hardware accelerated emulators. It is now recommended to use the Ubuntu (ubuntu-latest) runners which are 2-3 times faster than the macOS ones which are also a lot more expensive. Remember to enable KVM in your workflow before running this action:
- name: Enable KVM group perms
  run: |
    echo 'KERNEL=="kvm", GROUP="kvm", MODE="0666", OPTIONS+="static_node=kvm"' | sudo tee /etc/udev/rules.d/99-kvm4all.rules
    sudo udevadm control --reload-rules
    sudo udevadm trigger --name-match=kvm
According to this documentation, "on Mac OS X v10.10 Yosemite and higher, the Android Emulator uses the built-in Hypervisor.Framework by default, and falls back to using Intel HAXM if Hypervisor.Framework fails to initialize." This means that HAXM is only needed to achieve VM Acceleration if this default Hypervisor is not available on macOS machines.
Note: Manually enabling and downloading HAXM is not recommended because it is redundant and not needed (see above), and for users of macOS 10.13 High Sierra and higher: macOS 10.13 disables installation of kernel extensions by default. Because Intel HAXM is a kernel extension, we would need to manually enable its installation on the base runner VM. Furthermore, manually trying to install HAXM on a Github Runner brings up a popup which further hinders tests from running.
This action helps automate and configure the process of setting up an emulator and running your tests by doing the following:
- Install / update the required Android SDK components including build-tools,platform-tools,platform(for the required API level),emulatorandsystem-images(for the required API level).
- Create a new instance of AVD with the provided configurations.
- Launch a new Emulator with the provided configurations.
- Wait until the Emulator is booted and ready for use.
- Run a custom script provided by user once the Emulator is up and running - e.g. ./gradlew connectedCheck.
- Kill the Emulator and finish the action.
A workflow that uses android-emulator-runner to run your instrumented tests on API 29:
jobs:
  test:
    runs-on: ubuntu-latest
    steps:
      - name: checkout
        uses: actions/checkout@v4
      - name: Enable KVM
        run: |
          echo 'KERNEL=="kvm", GROUP="kvm", MODE="0666", OPTIONS+="static_node=kvm"' | sudo tee /etc/udev/rules.d/99-kvm4all.rules
          sudo udevadm control --reload-rules
          sudo udevadm trigger --name-match=kvm
      - name: run tests
        uses: reactivecircus/android-emulator-runner@v2
        with:
          api-level: 29
          script: ./gradlew connectedCheckWe can also leverage GitHub Actions's build matrix to test across multiple configurations:
jobs:
  test:
    runs-on: ubuntu-latest
    strategy:
      matrix:
        api-level: [21, 23, 29]
        target: [default, google_apis]
    steps:
      - name: checkout
        uses: actions/checkout@v4
      - name: Enable KVM
        run: |
          echo 'KERNEL=="kvm", GROUP="kvm", MODE="0666", OPTIONS+="static_node=kvm"' | sudo tee /etc/udev/rules.d/99-kvm4all.rules
          sudo udevadm control --reload-rules
          sudo udevadm trigger --name-match=kvm
      - name: run tests
        uses: reactivecircus/android-emulator-runner@v2
        with:
          api-level: ${{ matrix.api-level }}
          target: ${{ matrix.target }}
          arch: x86_64
          profile: pixel_7_pro
          script: ./gradlew connectedCheckIf you need specific versions of NDK and CMake installed:
jobs:
  test:
    runs-on: ubuntu-latest
    steps:
      - name: checkout
        uses: actions/checkout@v4
      - name: Enable KVM
        run: |
          echo 'KERNEL=="kvm", GROUP="kvm", MODE="0666", OPTIONS+="static_node=kvm"' | sudo tee /etc/udev/rules.d/99-kvm4all.rules
          sudo udevadm control --reload-rules
          sudo udevadm trigger --name-match=kvm
      - name: run tests
        uses: reactivecircus/android-emulator-runner@v2
        with:
          api-level: 29
          ndk: 21.0.6113669
          cmake: 3.10.2.4988404
          script: ./gradlew connectedCheckIf you need a specific SDK Extensions for the system image but not the platform:
jobs:
  test:
    runs-on: ubuntu-latest
    steps:
      - name: checkout
        uses: actions/checkout@v4
      - name: Enable KVM
        run: |
          echo 'KERNEL=="kvm", GROUP="kvm", MODE="0666", OPTIONS+="static_node=kvm"' | sudo tee /etc/udev/rules.d/99-kvm4all.rules
          sudo udevadm control --reload-rules
          sudo udevadm trigger --name-match=kvm
      - name: run tests
        uses: reactivecircus/android-emulator-runner@v2
        with:
          api-level: 34
          system-image-api-level: 34-ext9
          target: android-automotive
          script: ./gradlew connectedCheckWe can significantly reduce emulator startup time by setting up AVD snapshot caching:
- add a gradle/actions/setup-gradle@v4step for caching Gradle, more details see #229
- add an actions/cache@v4step for caching theavd
- add a reactivecircus/android-emulator-runner@v2step to generate a clean snapshot - specifyemulator-optionswithoutno-snapshot
- add another reactivecircus/android-emulator-runner@v2step to run your tests using existing AVD / snapshot - specifyemulator-optionswithno-snapshot-save
jobs:
  test:
    runs-on: ubuntu-latest
    strategy:
      matrix:
        api-level: [21, 23, 29]
    steps:
      - name: checkout
        uses: actions/checkout@v4
      - name: Enable KVM
        run: |
          echo 'KERNEL=="kvm", GROUP="kvm", MODE="0666", OPTIONS+="static_node=kvm"' | sudo tee /etc/udev/rules.d/99-kvm4all.rules
          sudo udevadm control --reload-rules
          sudo udevadm trigger --name-match=kvm
      - name: Gradle cache
        uses: gradle/actions/setup-gradle@v3
        
      - name: AVD cache
        uses: actions/cache@v4
        id: avd-cache
        with:
          path: |
            ~/.android/avd/*
            ~/.android/adb*
          key: avd-${{ matrix.api-level }}
      - name: create AVD and generate snapshot for caching
        if: steps.avd-cache.outputs.cache-hit != 'true'
        uses: reactivecircus/android-emulator-runner@v2
        with:
          api-level: ${{ matrix.api-level }}
          force-avd-creation: false
          emulator-options: -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none
          disable-animations: false
          script: echo "Generated AVD snapshot for caching."
      - name: run tests
        uses: reactivecircus/android-emulator-runner@v2
        with:
          api-level: ${{ matrix.api-level }}
          force-avd-creation: false
          emulator-options: -no-snapshot-save -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none
          disable-animations: true
          script: ./gradlew connectedCheck| Input | Required | Default | Description | 
|---|---|---|---|
| api-level | Required | N/A | API level of the platform and system image - e.g. 23,33,35-ext15,Baklava. Minimum API level supported is 15. | 
| system-image-api-level | Optional | same as api-level | API level of the system image - e.g. 34-ext10,35-ext15. | 
| target | Optional | default | Target of the system image - e.g. default,google_apis,google_apis_ps16k,google_apis_playstore,google_apis_playstore_ps16k,android-wear,android-wear-cn,android-tv,google-tv,aosp_atd,google_atd,android-automotive,android-automotive-playstore,android-desktop. Please runsdkmanager --listto see the available targets. | 
| arch | Optional | x86 | CPU architecture of the system image - x86,x86_64orarm64-v8a. Note thatx86_64image is only available for API 21+.arm64-v8aimages require Android 4.2+ and are limited to fewer API levels (e.g. 30). | 
| profile | Optional | N/A | Hardware profile id used for creating the AVD - e.g. pixel_7_pro. For a list of all profiles available, runavdmanager list device. | 
| cores | Optional | 2 | Number of cores to use for the emulator ( hw.cpu.ncorein config.ini). | 
| ram-size | Optional | N/A | Size of RAM to use for this AVD, in KB or MB, denoted with K or M. - e.g. 2048M | 
| heap-size | Optional | N/A | Heap size to use for this AVD, in KB or MB, denoted with K or M. - e.g. 512M | 
| sdcard-path-or-size | Optional | N/A | Path to the SD card image for this AVD or the size of a new SD card image to create for this AVD, in KB or MB, denoted with K or M. - e.g. path/to/sdcard, or1000M. | 
| disk-size | Optional | N/A | Disk size, or partition size to use for this AVD. Either in bytes or KB, MB or GB, when denoted with K, M or G. - e.g. 2048M | 
| avd-name | Optional | test | Custom AVD name used for creating the Android Virtual Device. | 
| force-avd-creation | Optional | true | Whether to force create the AVD by overwriting an existing AVD with the same name as avd-name-trueorfalse. | 
| emulator-boot-timeout | Optional | 600 | Emulator boot timeout in seconds. If it takes longer to boot, the action would fail - e.g. 300for 5 minutes. | 
| emulator-port | Optional | 5554 | Emulator port to use. Allows to run this action on multiple workers on a single machine at the same time. This input is available for the script as EMULATOR_PORTenviromental variable. This port is automatically used by android device related tasks in gradle | 
| emulator-options | Optional | See below | Command-line options used when launching the emulator (replacing all default options) - e.g. -no-window -no-snapshot -camera-back emulated. | 
| disable-animations | Optional | true | Whether to disable animations - trueorfalse. | 
| disable-spellchecker | Optional | false | Whether to disable spellchecker - trueorfalse. | 
| disable-linux-hw-accel | Optional | auto | Whether to disable hardware acceleration on Linux machines - true,falseorauto. | 
| enable-hw-keyboard | Optional | false | Whether to enable hardware keyboard - trueorfalse. | 
| emulator-build | Optional | N/A | Build number of a specific version of the emulator binary to use e.g. 6061023for emulator v29.3.0.0. | 
| working-directory | Optional | ./ | A custom working directory - e.g. ./androidif your root Gradle project is under the./androidsub-directory within your repository. Will be used forscript&pre-emulator-launch-script. | 
| ndk | Optional | N/A | Version of NDK to install - e.g. 21.0.6113669 | 
| cmake | Optional | N/A | Version of CMake to install - e.g. 3.10.2.4988404 | 
| channel | Optional | stable | Channel to download the SDK components from - stable,beta,dev,canary | 
| script | Required | N/A | Custom script to run - e.g. to run Android instrumented tests on the emulator: ./gradlew connectedCheck | 
| pre-emulator-launch-script | Optional | N/A | Custom script to run after creating the AVD and before launching the emulator - e.g. ./adjust-emulator-configs.sh | 
Default emulator-options: -no-window -gpu swiftshader_indirect -no-snapshot -noaudio -no-boot-anim.
These are some of the open-source projects using (or used) Android Emulator Runner:
- coil-kt/coil
- cashapp/sqldelight
- square/workflow-kotlin
- square/retrofit
- natario1/CameraView
- natario1/Transcoder
- chrisbanes/insetter
- slackhq/keeper
- android/compose-samples
- ReactiveCircus/streamlined
- ReactiveCircus/FlowBinding
- JakeWharton/RxBinding
- vinaygaba/Learn-Jetpack-Compose-By-Example
- ashishb/adb-enhanced
- vgaidarji/ci-matters
- simpledotorg/simple-android
- cashapp/copper
- square/radiography
- Shopify/android-testify
- square/leakcanary
- hash-checker/hash-checker
- hash-checker/hash-checker-lite
- Kiwix/kiwix-android
- wikimedia/apps-android-wikipedia
- google/android-fhir
- google/accompanist
- dotanuki-labs/norris
- tinylog-org/tinylog
- hzi-braunschweig/SORMAS-Project
- ACRA/acra
- bitfireAT/davx5-ose
- robolectric/robolectric
- home-assistant/android
If you are using Android Emulator Runner and want your project included in the list, please feel free to open a pull request.