We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Some users are not aware that they can create a and launch a custom Android emulator for running e2e tests
https://github.com/orgs/codemagic-ci-cd/discussions/2773
- name: Setup and Launch Android 14 Emulator script: | # Set Android SDK paths export ANDROID_SDK_ROOT=/usr/local/share/android-sdk export PATH="$ANDROID_SDK_ROOT/cmdline-tools/latest/bin:$ANDROID_SDK_ROOT/emulator:$ANDROID_SDK_ROOT/platform-tools:$PATH" # Install necessary SDK components and Android 14 system image echo y | sdkmanager --install "cmdline-tools;latest" "emulator" "platform-tools" "system-images;android-34;google_apis;x86_64" # Create the AVD (emulator) if not already created echo no | avdmanager create avd -n Android14 -k "system-images;android-34;google_apis;x86_64" --force # Launch the emulator emulator -avd Android14 -no-window -no-snapshot -no-audio -gpu swiftshader_indirect & adb wait-for-device
The text was updated successfully, but these errors were encountered:
dtrdic
No branches or pull requests
Some users are not aware that they can create a and launch a custom Android emulator for running e2e tests
https://github.com/orgs/codemagic-ci-cd/discussions/2773
The text was updated successfully, but these errors were encountered: