Skip to content
This repository was archived by the owner on Feb 2, 2021. It is now read-only.

Commit 6ae5a33

Browse files
committed
added updated start command from release to master as well
1 parent e251fdb commit 6ae5a33

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mobile/android/android-device.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ export class AndroidDevice implements Mobile.IAndroidDevice {
171171

172172
private startPackageOnDevice(packageName: string): IFuture<void> {
173173
return (() => {
174-
var startPackageCommand = this.composeCommand("shell am start -a android.intent.action.MAIN -n %s/%s", packageName, this.$staticConfig.START_PACKAGE_ACTIVITY_NAME);
174+
var startPackageCommand = this.composeCommand("shell am start -a android.intent.action.MAIN -n %s/%s -c android.intent.category.LAUNCHER", packageName, this.$staticConfig.START_PACKAGE_ACTIVITY_NAME);
175175
this.$childProcess.exec(startPackageCommand).wait();
176176

177177
if (options.printAppOutput) {

0 commit comments

Comments
 (0)