Skip to content

Commit

Permalink
Use explicit paths
Browse files Browse the repository at this point in the history
  • Loading branch information
ianthetechie committed Nov 5, 2023
1 parent d8bc6a0 commit 91abb6d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ jobs:
cache: gradle

- name: Create an Android Virtual Device
run: avdmanager create avd -n emulator -k "system-images;android-33;google_apis;x86_64"
run: $ANDROID_HOME/cmdline-tools/latest/bin/avdmanager create avd -n emulator -k "system-images;android-33;google_apis;x86_64"

- name: Launch the emulator
run: emulator -avd emulator
run: $ANDROID_HOME/emulator/emulator -avd emulator

- name: Grant execute permission for gradlew
run: chmod +x gradlew
Expand Down

0 comments on commit 91abb6d

Please sign in to comment.