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

Commit b639402f authored by Michal Karpinski's avatar Michal Karpinski
Browse files

Default ACTIVITY_STARTS_LOGGING_ENABLED flag to 1

Bug: 110956953
Test: atest WmTests:ActivityStarterTests
Change-Id: I864abba208d75a131da098b77cc09e46101c4986
parent 0eedd597
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -11417,7 +11417,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() {