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

Commit 9405262a authored by Mathieu Chartier's avatar Mathieu Chartier Committed by android-build-merger
Browse files

Merge "Disable activity leak detection by default for userdebug" into oc-dev

am: 956ea5f0

Change-Id: I30fd8dd0b5c221c067f978960832148484273a4c
parents 26902631 956ea5f0
Loading
Loading
Loading
Loading
+12 −1
Original line number Diff line number Diff line
@@ -936,6 +936,11 @@ public final class StrictMode {
                return this;
            }

            Builder disable(int bit) {
                mMask &= ~bit;
                return this;
            }

            /**
             * Construct the VmPolicy instance.
             *
@@ -1214,7 +1219,13 @@ public final class StrictMode {
        if (IS_USER_BUILD) {
            setCloseGuardEnabled(false);
        } else {
            VmPolicy.Builder policyBuilder = new VmPolicy.Builder().detectAll().penaltyDropBox();
            VmPolicy.Builder policyBuilder = new VmPolicy.Builder().detectAll();
            if (!IS_ENG_BUILD) {
                // Activity leak detection causes too much slowdown for userdebug because of the
                // GCs.
                policyBuilder = policyBuilder.disable(DETECT_VM_ACTIVITY_LEAKS);
            }
            policyBuilder = policyBuilder.penaltyDropBox();
            if (IS_ENG_BUILD) {
                policyBuilder.penaltyLog();
            }