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

Commit 750c23d5 authored by Michal Karpinski's avatar Michal Karpinski Committed by Android (Google) Code Review
Browse files

Merge "Default ACTIVITY_STARTS_LOGGING_ENABLED flag to 1"

parents 510945d8 b639402f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -11416,7 +11416,7 @@ public final class Settings {
        /**
         * Feature flag to enable or disable the activity starts logging feature.
         * Type: int (0 for false, 1 for true)
         * Default: 0
         * Default: 1
         * @hide
         */
        public static final String ACTIVITY_STARTS_LOGGING_ENABLED
+1 −1
Original line number Diff line number Diff line
@@ -402,7 +402,7 @@ final class ActivityManagerConstants extends ContentObserver {

    private void updateActivityStartsLoggingEnabled() {
        mFlagActivityStartsLoggingEnabled = Settings.Global.getInt(mResolver,
                Settings.Global.ACTIVITY_STARTS_LOGGING_ENABLED, 0) == 1;
                Settings.Global.ACTIVITY_STARTS_LOGGING_ENABLED, 1) == 1;
    }

    private void updateBackgroundActivityStartsEnabled() {