Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f4b0c2b3 authored by Andrii Kulian's avatar Andrii Kulian Committed by android-build-merger
Browse files

Merge "Use shell package name when starting activities" into qt-r1-dev

am: 2cd6ecda

Change-Id: Icf99b2bc185362d2a845bed79a7311bdc69fdb1b
parents 1c3be190 2cd6ecda
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -510,12 +510,12 @@ final class ActivityManagerShellCommand extends ShellCommand {
                options.setLockTaskEnabled(true);
            }
            if (mWaitOption) {
                result = mInternal.startActivityAndWait(null, null, intent, mimeType,
                result = mInternal.startActivityAndWait(null, SHELL_PACKAGE_NAME, intent, mimeType,
                        null, null, 0, mStartFlags, profilerInfo,
                        options != null ? options.toBundle() : null, mUserId);
                res = result.result;
            } else {
                res = mInternal.startActivityAsUser(null, null, intent, mimeType,
                res = mInternal.startActivityAsUser(null, SHELL_PACKAGE_NAME, intent, mimeType,
                        null, null, 0, mStartFlags, profilerInfo,
                        options != null ? options.toBundle() : null, mUserId);
            }