diff --git a/lib/common/mobile/android/android-virtual-device-service.ts b/lib/common/mobile/android/android-virtual-device-service.ts index d2a02234a1..4acdab64f1 100644 --- a/lib/common/mobile/android/android-virtual-device-service.ts +++ b/lib/common/mobile/android/android-virtual-device-service.ts @@ -331,7 +331,7 @@ export class AndroidVirtualDeviceService private getConfigurationError(): string { const pathToEmulatorExecutable = this.$hostInfo.isWindows ? `${this.pathToEmulatorExecutable}.exe` - : this.pathToAndroidExecutable; + : this.pathToEmulatorExecutable; if (!this.$fs.exists(pathToEmulatorExecutable)) { return "Unable to find the path to emulator executable and will not be able to start the emulator. Searched paths: [$ANDROID_HOME/tools/emulator, $ANDROID_HOME/emulator/emulator]"; }