Customize Android API level and image type during build
mainYou can specify the Android version, image type, and architecture using build arguments when building the Docker image.
Build Arguments:
API_LEVEL: The API level (e.g.,28).IMG_TYPE: The type of image (e.g.,google_apis_playstore).ARCHITECTURE: The CPU architecture. Supported values:x86_64,x86.
docker build \
--build-arg API_LEVEL=28 \
--build-arg IMG_TYPE=google_apis_playstore \
--build-arg ARCHITECTURE=x86 \
--tag android-emulator .