diff --git a/devices/emulator.py b/devices/emulator.py index 88cbcb4..751f62f 100644 --- a/devices/emulator.py +++ b/devices/emulator.py @@ -75,10 +75,10 @@ def boot_devices(): print "Booting Device:", device_name time.sleep(0.3) if settings.HEADLESS: - sub.Popen('emulator -avd ' + device_name + " -wipe-data -no-audio -no-window", + sub.Popen('emulator -avd ' + device_name + " -wipe-data -no-window", stdout=sub.PIPE, stderr=sub.PIPE, shell=True) else: - sub.Popen('emulator -avd ' + device_name + " -wipe-data -no-audio", + sub.Popen('emulator -avd ' + device_name + " -wipe-data", stdout=sub.PIPE, stderr=sub.PIPE, shell=True) print "Waiting", settings.AVD_BOOT_DELAY, "seconds"