Skip to content

Latest commit

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..

Creates and launches an Android Virtual Device. Note: This action must run on a GitHub runner that supports KVM.

The action has the following inputs:

Name Required Default Description
apiLevel YES - Android version of the system image that the AVD will run.
avdName NO ci_avd The name of the created AVD.

Example:

- name: Create and launch AVD
  uses: shapehq/actions/create-and-launch-avd@v1
  with:
    apiLevel: 35
    avdName: my_avd

- name: Run instrumentation tests
  run: ./gradlew connectedAndroidTest