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

Commit b4157a43 authored by Brad Fitzpatrick's avatar Brad Fitzpatrick Committed by Android (Google) Code Review
Browse files

Merge "StrictMode: fix docs to actually compile and add a utility method." into gingerbread

parents 6b2274a1 62a1eb58
Loading
Loading
Loading
Loading
+11 −0
Original line number Diff line number Diff line
@@ -131667,6 +131667,17 @@
 visibility="public"
>
</method>
<method name="enableDefaults"
 return="void"
 abstract="false"
 native="false"
 synchronized="false"
 static="true"
 final="false"
 deprecated="not deprecated"
 visibility="public"
>
</method>
<method name="getThreadPolicy"
 return="android.os.StrictMode.ThreadPolicy"
 abstract="false"
+19 −1
Original line number Diff line number Diff line
@@ -66,7 +66,7 @@ import java.util.HashMap;
 *                 .penaltyLog()
 *                 .build());
 *         StrictMode.setVmPolicy(new {@link VmPolicy.Builder StrictMode.VmPolicy.Builder}()
 *                 .detectLeakedSqlLiteCursors()
 *                 .detectLeakedSqlLiteObjects()
 *                 .penaltyLog()
 *                 .penaltyDeath()
 *                 .build());
@@ -961,6 +961,24 @@ public final class StrictMode {
        return new VmPolicy(sVmPolicyMask);
    }

    /**
     * Enable the recommended StrictMode defaults, with violations just being logged.
     *
     * <p>This catches disk and network access on the main thread, as
     * well as leaked SQLite cursors.  This is simply a wrapper around
     * {@link #setVmPolicy} and {@link #setThreadPolicy}.
     */
    public static void enableDefaults() {
        StrictMode.setThreadPolicy(new StrictMode.ThreadPolicy.Builder()
                                   .detectAll()
                                   .penaltyLog()
                                   .build());
        StrictMode.setVmPolicy(new StrictMode.VmPolicy.Builder()
                               .detectLeakedSqlLiteObjects()
                               .penaltyLog()
                               .build());
    }

    /**
     * @hide
     */