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

Commit 0681ebd5 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

am: 8d189593

Change-Id: I8a24342b3c444072cc4cdcd8331fc7d78c804438
parents 75c98207 8d189593
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();
            }