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

Commit 0ac12528 authored by Yi Kong's avatar Yi Kong Committed by Automerger Merge Worker
Browse files

Merge "profcollect: alternative property to start profcollectd" am: 67bea71a...

Merge "profcollect: alternative property to start profcollectd" am: 67bea71a am: f965ffe0 am: a9a873f0

Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/1689805

Change-Id: Ic38016ae401d7b1852e178d792da209ac7983f3a
parents 5b0e5143 a9a873f0
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -29,6 +29,7 @@ import android.os.IBinder.DeathRecipient;
import android.os.Looper;
import android.os.RemoteException;
import android.os.ServiceManager;
import android.os.SystemProperties;
import android.os.UpdateEngine;
import android.os.UpdateEngineCallback;
import android.os.UserHandle;
@@ -79,7 +80,7 @@ public final class ProfcollectForwardingService extends SystemService {
     */
    public static boolean enabled() {
        return DeviceConfig.getBoolean(DeviceConfig.NAMESPACE_PROFCOLLECT_NATIVE_BOOT, "enabled",
            false);
            false) || SystemProperties.getBoolean("persist.profcollectd.enabled_override", false);
    }

    @Override