dotfiles/.scripts/headless.sh

13 lines
681 B
Bash
Raw Normal View History

2021-03-11 10:40:38 +01:00
#!/bin/zsh
2021-06-29 01:21:14 +02:00
export ANDROID_SDK=/opt/android-sdk-update-manager
export PATH=$ANDROID_SDK/emulator:$ANDROID_SDK/tools:$PATH
2021-06-17 01:00:47 +02:00
#emulator -accel on -avd thePhone -gpu host -delay-adb -no-boot-anim -no-window -no-snapshot-load -detect-image-hang
2021-06-29 01:21:14 +02:00
#emulator -accel on -avd thePhone -gpu host -delay-adb -no-boot-anim -no-window -no-snapshot-load -detect-image-hang -use-system-libs -cores 4
2021-06-17 01:00:47 +02:00
#emulator -accel on -avd thePhone -gpu host -delay-adb -no-boot-anim -no-window
2021-06-29 01:21:14 +02:00
2021-07-04 19:45:18 +02:00
#emulator -accel on -avd thePhone -gpu host -no-boot-anim -no-window -no-snapshot-load
emulator -accel on -avd thePhone -gpu host -no-boot-anim -no-audio -no-skin -no-window -cores 4 -no-snapshot-load
2021-06-29 01:21:14 +02:00
2021-03-11 10:40:38 +01:00
adb kill-server