Skip to content

Commit 434f4f8

Browse files
Fix android emulator starting
Add appId option when starting android emulator in order to fix starting of the application (it is installed correctly on the device, but last call, that has to start the app, uses appid). Update common lib where support for genymotion emulator has been added. #167
1 parent 04d5afe commit 434f4f8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/services/platform-service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ export class PlatformService implements IPlatformService {
250250

251251
var logFilePath = path.join(platformData.projectRoot, this.$projectData.projectName, "emulator.log");
252252

253-
emulatorServices.startEmulator(packageFile, { stderrFilePath: logFilePath, stdoutFilePath: logFilePath }).wait();
253+
emulatorServices.startEmulator(packageFile, { stderrFilePath: logFilePath, stdoutFilePath: logFilePath, appId: this.$projectData.projectId }).wait();
254254
}).future<void>()();
255255
}
256256

0 commit comments

Comments
 (0)