Created
May 10, 2021 02:38
-
-
Save pacozaa/09b86dc7cddcececdcd79ca1ba5372aa to your computer and use it in GitHub Desktop.
androidemu.sh
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
echo "Let's look at what you have:" | |
emulator -list-avds | |
# emulator @Pixel_2_XL_API_29 | |
read -p "Enter target devices: " DEVICE_NAME | |
if [ "$DEVICE_NAME" = "" ] | |
then | |
emulator @Pixel_2_XL_API_29 | |
else | |
emulator @${DEVICE_NAME} | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment