From d6cbcd6b902b20ba1d6ca5ddbbe9e39f2d74a909 Mon Sep 17 00:00:00 2001 From: fatme Date: Thu, 25 Oct 2018 08:32:48 +0300 Subject: [PATCH] fix: improve the message when not able to start an emulator so it can be useful for sidekick as well. --- lib/common/constants.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/common/constants.ts b/lib/common/constants.ts index b3b1b5bcab..272291a758 100644 --- a/lib/common/constants.ts +++ b/lib/common/constants.ts @@ -155,5 +155,5 @@ export class AndroidVirtualDevice { static TIMEOUT_SECONDS = 120; static GENYMOTION_DEFAULT_STDERR_STRING = "Logging activities to file"; - static UNABLE_TO_START_EMULATOR_MESSAGE = "Cannot run your app in the native emulator. Increase the timeout of the operation with the --timeout option or try to restart your adb server with 'adb kill-server' command. Alternatively, run the Android Virtual Device manager and increase the allocated RAM for the virtual device."; + static UNABLE_TO_START_EMULATOR_MESSAGE = "Cannot run the app in the selected native emulator. Try to restart the adb server by running the `adb kill-server` command in the Command Prompt, or increase the allocated RAM of the virtual device through the Android Virtual Device manager. NativeScript CLI users can try to increase the timeout of the operation by adding the `--timeout` flag."; }