From ed475a5b33e5256719d1672d9c1473f8aba3a28f Mon Sep 17 00:00:00 2001 From: D Date: Wed, 24 Apr 2024 13:08:32 +0300 Subject: [PATCH] fix: keys and variables --- Dockerfile | 2 +- Dockerfile.gpu | 2 +- README.md | 2 +- scripts/start-emulator.sh | 8 ++++---- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Dockerfile b/Dockerfile index e382c84..9d29284 100644 --- a/Dockerfile +++ b/Dockerfile @@ -64,7 +64,7 @@ RUN mkdir /root/.android/ && \ mkdir /data # Exporting ADB keys. -#COPY keys/* /root/.android/ +COPY keys/* /root/.android/ # The following layers will download the Android command-line tools # to install the Android SDK, emulator and system images. diff --git a/Dockerfile.gpu b/Dockerfile.gpu index e7ff2c8..c6f09ea 100644 --- a/Dockerfile.gpu +++ b/Dockerfile.gpu @@ -67,7 +67,7 @@ RUN mkdir /root/.android/ && \ mkdir /data # Exporting ADB keys. -#COPY keys/* /root/.android/ +COPY keys/* /root/.android/ # The following layers will download the Android command-line tools # to install the Android SDK, emulator and system images. diff --git a/README.md b/README.md index edfed3e..c225360 100644 --- a/README.md +++ b/README.md @@ -149,7 +149,7 @@ docker build \ ``` ### Variables -## Default variables +#### Default variables #### Disable animation DISABLE_ANIMATION=false diff --git a/scripts/start-emulator.sh b/scripts/start-emulator.sh index da705c5..b6202fb 100644 --- a/scripts/start-emulator.sh +++ b/scripts/start-emulator.sh @@ -62,10 +62,10 @@ wait_for_boot & # Start the emulator with no audio, no GUI, and no snapshots. echo "Starting the emulator ..." echo "OPTIONS:" -echo "ADB AUTH - $OPT_SKIP_AUTH" -echo "GPU - $GPU_MODE" -echo "MEMORY - $OPT_MEMORY" -echo "CORES - $OPT_CORES" +echo "SKIP ADB AUTH - $OPT_SKIP_AUTH" +echo "GPU - $GPU_MODE" +echo "MEMORY - $OPT_MEMORY" +echo "CORES - $OPT_CORES" emulator \ -avd android \ -gpu "$GPU_MODE" \