diff options
| -rw-r--r-- | services/java/com/android/server/ServiceWatcher.java | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/services/java/com/android/server/ServiceWatcher.java b/services/java/com/android/server/ServiceWatcher.java index 4a428ae58dc3..bca7faae484d 100644 --- a/services/java/com/android/server/ServiceWatcher.java +++ b/services/java/com/android/server/ServiceWatcher.java @@ -177,8 +177,7 @@ public class ServiceWatcher implements ServiceConnection { mVersion = version; if (D) Log.d(mTag, "binding " + packageName + " (version " + version + ")"); mContext.bindServiceAsUser(intent, this, Context.BIND_AUTO_CREATE | Context.BIND_NOT_FOREGROUND - | Context.BIND_ALLOW_OOM_MANAGEMENT | Context.BIND_NOT_VISIBLE, - new UserHandle(mCurrentUserId)); + | Context.BIND_NOT_VISIBLE, new UserHandle(mCurrentUserId)); } public static boolean isSignatureMatch(Signature[] signatures, |