blob: abd73efa33d9c673f8294470f1aaff1a8cd5f2ef (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
#!/usr/bin/env bash
# Boots an emulator that exactly matches the one in our CI. It is recommended
# to use this as the target device for android tests.
set -euo pipefail
[ -n "${ANDROID_SDK_ROOT:-}" ] || {
echo "ANDROID_SDK_ROOT must be set to use this script"
exit
1
}
[ -n "${ANDROID_API_LEVEL:-}" ] || { echo "ANDROID_API_LEVEL not defined; defaulting to 30"; }
API_LEVEL="${ANDROID_API_LEVEL:-30}"
echo no | "${ANDROID_SDK_ROOT}"/cmdline-tools/latest/bin/avdmanager create avd \
--force \
-n "Pixel_XL_API_${API_LEVEL}" \
--abi 'google_apis/x86' \
--package "system-images;android-${API_LEVEL};google_apis;x86" \
--device 'pixel_xl'
"${ANDROID_SDK_ROOT}"/emulator/emulator \
-avd "Pixel_XL_API_${API_LEVEL}" \
-no-window \
-gpu swiftshader_indirect \
-noaudio \
-no-boot-anim
|