summaryrefslogtreecommitdiff
path: root/cmds
diff options
context:
space:
mode:
Diffstat (limited to 'cmds')
-rw-r--r--cmds/am/src/com/android/commands/am/Am.java4
-rw-r--r--cmds/pm/src/com/android/commands/pm/Pm.java14
2 files changed, 9 insertions, 9 deletions
diff --git a/cmds/am/src/com/android/commands/am/Am.java b/cmds/am/src/com/android/commands/am/Am.java
index 3ed72e5528b8..85de12fcc52e 100644
--- a/cmds/am/src/com/android/commands/am/Am.java
+++ b/cmds/am/src/com/android/commands/am/Am.java
@@ -2220,7 +2220,7 @@ public class Am extends BaseCommand {
}
private void runSetInactive() throws Exception {
- int userId = UserHandle.USER_OWNER;
+ int userId = UserHandle.USER_CURRENT;
String opt;
while ((opt=nextOption()) != null) {
@@ -2240,7 +2240,7 @@ public class Am extends BaseCommand {
}
private void runGetInactive() throws Exception {
- int userId = UserHandle.USER_OWNER;
+ int userId = UserHandle.USER_CURRENT;
String opt;
while ((opt=nextOption()) != null) {
diff --git a/cmds/pm/src/com/android/commands/pm/Pm.java b/cmds/pm/src/com/android/commands/pm/Pm.java
index 8b544abe909b..964b7762b685 100644
--- a/cmds/pm/src/com/android/commands/pm/Pm.java
+++ b/cmds/pm/src/com/android/commands/pm/Pm.java
@@ -335,7 +335,7 @@ public final class Pm {
boolean listDisabled = false, listEnabled = false;
boolean listSystem = false, listThirdParty = false;
boolean listInstaller = false;
- int userId = UserHandle.USER_OWNER;
+ int userId = UserHandle.USER_SYSTEM;
try {
String opt;
while ((opt=nextOption()) != null) {
@@ -846,7 +846,7 @@ public final class Pm {
// pm set-app-link [--user USER_ID] PACKAGE {always|ask|never|undefined}
private int runSetAppLink() {
- int userId = UserHandle.USER_OWNER;
+ int userId = UserHandle.USER_SYSTEM;
String opt;
while ((opt = nextOption()) != null) {
@@ -929,7 +929,7 @@ public final class Pm {
// pm get-app-link [--user USER_ID] PACKAGE
private int runGetAppLink() {
- int userId = UserHandle.USER_OWNER;
+ int userId = UserHandle.USER_SYSTEM;
String opt;
while ((opt = nextOption()) != null) {
@@ -1090,7 +1090,7 @@ public final class Pm {
}
if (userId == UserHandle.USER_ALL) {
- userId = UserHandle.USER_OWNER;
+ userId = UserHandle.USER_SYSTEM;
installFlags |= PackageManager.INSTALL_ALL_USERS;
}
@@ -1216,7 +1216,7 @@ public final class Pm {
}
if (userId == UserHandle.USER_ALL) {
- userId = UserHandle.USER_OWNER;
+ userId = UserHandle.USER_SYSTEM;
params.installFlags |= PackageManager.INSTALL_ALL_USERS;
}
@@ -1547,7 +1547,7 @@ public final class Pm {
}
if (userId == UserHandle.USER_ALL) {
- userId = UserHandle.USER_OWNER;
+ userId = UserHandle.USER_SYSTEM;
flags |= PackageManager.DELETE_ALL_USERS;
} else {
PackageInfo info;
@@ -1758,7 +1758,7 @@ public final class Pm {
}
private int runGrantRevokePermission(boolean grant) {
- int userId = UserHandle.USER_OWNER;
+ int userId = UserHandle.USER_SYSTEM;
String opt = null;
while ((opt = nextOption()) != null) {