Last active
May 5, 2022 14:57
-
-
Save afflicted-cat/ad38a97931faa5d2bf3393d2d216b63e to your computer and use it in GitHub Desktop.
Fish function to run android emulator on MacOSX
This file contains 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
function run-emulator --argument emulator | |
echo launch android emulator $emulator | |
$ANDROID_SDK_ROOT/emulator/emulator -avd $emulator -no-snapshot > /dev/null 2>&1 & | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment