From d176e69cc1fc239dfc40d5974c4d52692721ecb9 Mon Sep 17 00:00:00 2001 From: Serghei Moret Date: Tue, 3 Jul 2018 20:46:23 +0200 Subject: [PATCH] Let default emulator pick the right kernel --- src/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app.py b/src/app.py index f309876..1ba4db4 100644 --- a/src/app.py +++ b/src/app.py @@ -193,7 +193,7 @@ def run(): dp_size = os.getenv('DATAPARTITION', '550m') with open("/root/android_emulator/config.ini", "a") as cfg: cfg.write('\ndisk.dataPartition.size={dp}'.format(dp=dp_size)) - cmd = 'emulator -avd {name} -gpu off -verbose'.format(name=avd_name) + cmd = 'emulator/emulator @{name} -gpu off -verbose'.format(name=avd_name) appium = convert_str_to_bool(str(os.getenv('APPIUM', False))) if appium: subprocess.Popen(cmd.split())