Skip to content
This repository has been archived by the owner on Nov 4, 2024. It is now read-only.

Commit

Permalink
Reformat create avd command for readability
Browse files Browse the repository at this point in the history
  • Loading branch information
plastiv committed Mar 8, 2019
1 parent 48fa6c2 commit 2b0c007
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion android-emulator/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,10 @@ RUN yes 'y' | sdkmanager --licenses >/dev/null \
"tools" >/dev/null

# Create AVD
RUN yes 'n' | avdmanager --silent create avd --force --name android-emulator-${EMULATOR_API_LEVEL} --device "4in WVGA (Nexus S)" --package "system-images;android-${EMULATOR_API_LEVEL};google_apis;${EMULATOR_ARCH}"
RUN yes 'n' | avdmanager --silent create avd \
--name android-emulator-${EMULATOR_API_LEVEL} \
--device "4in WVGA (Nexus S)" \
--package "system-images;android-${EMULATOR_API_LEVEL};google_apis;${EMULATOR_ARCH}"

# GO to workspace
WORKDIR /opt/workspace

0 comments on commit 2b0c007

Please sign in to comment.