Skip to content

Commit

Permalink
Fix script
Browse files Browse the repository at this point in the history
  • Loading branch information
adimiz1 committed Jan 7, 2024
1 parent a63dad9 commit dc7877e
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/android-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,18 @@ jobs:
bash tools/get_test_cloud.sh > cloudinary_url.txt
echo "CLOUDINARY_URL=$(cat cloudinary_url.txt)" >> $GITHUB_ENV
- name: Check Emulator Command Availability
run: |
which emulator # Check if emulator command is available
echo $PATH # Check the PATH variable contents for emulator directory
- name: Start Emulator
run: |
emulator -list-avds
emulator -avd your_emulator_name -no-window -no-audio &
android-wait-for-emulator
adb devices
- name: Wait for Emulator
run: |
emulator -list-avds # Lists available emulators for reference
Expand Down

0 comments on commit dc7877e

Please sign in to comment.