Skip to content

Commit

Permalink
Merge pull request #6 from twocolors/main
Browse files Browse the repository at this point in the history
fix: keys and variables
  • Loading branch information
HQarroum authored Apr 24, 2024
2 parents 6828e2d + ed475a5 commit fe7e413
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.gpu
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ docker build \
```

### Variables
## Default variables
#### Default variables

#### Disable animation
DISABLE_ANIMATION=false
Expand Down
8 changes: 4 additions & 4 deletions scripts/start-emulator.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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" \
Expand Down

0 comments on commit fe7e413

Please sign in to comment.