Skip to content

Instantly share code, notes, and snippets.

@andersu
Created January 30, 2022 12:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save andersu/fb069be9a2ee68e651a582eca88e54f8 to your computer and use it in GitHub Desktop.
Save andersu/fb069be9a2ee68e651a582eca88e54f8 to your computer and use it in GitHub Desktop.
Run emulator for snapshot testing
if [ ! -d "$ANDROID_HOME" ] ; then
echo "Cannot find \$ANDROID_HOME."
exit
fi
"$ANDROID_HOME/emulator/emulator" "@snappy" "-verbose" "-no-window" "-no-audio" "-no-boot-anim" "-netdelay" "none" "-gpu" "swiftshader_indirect" "-camera-back" "none" "-camera-front" "none"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment