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

Commit 79d59f09 authored by Victoria Lease's avatar Victoria Lease
Browse files

DO NOT MERGE Prevent OOM death for services under ServiceWatcher's care.

Change-Id: If87be5769b55368edaf4776189e8f6e51a21eb03

Conflicts:

	services/java/com/android/server/ServiceWatcher.java
parent 4a0f95cf
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -177,7 +177,7 @@ public class ServiceWatcher implements ServiceConnection {
        mVersion = version;
        if (D) Log.d(mTag, "binding " + packageName + " (version " + version + ")");
        mContext.bindService(intent, this, Context.BIND_AUTO_CREATE | Context.BIND_NOT_FOREGROUND
                | Context.BIND_ALLOW_OOM_MANAGEMENT | Context.BIND_NOT_VISIBLE, mCurrentUserId);
                | Context.BIND_NOT_VISIBLE, mCurrentUserId);
    }

    public static boolean isSignatureMatch(Signature[] signatures,