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

Commit dfea9c4a authored by Neil Fuller's avatar Neil Fuller
Browse files

Add a constant for system_time to DeviceConfig

Add a constant for "system_time" to DeviceConfig for server-push feature
flags. "system_time" has been added server-side under cl/353067789.

This change references the new namespace for device-side config code.

This change is following the go/android-flags-setup process. Flags will
be added in follow up changes.

Bug: 159121373
Bug: 178107773
Test: build only
Change-Id: If49365cddc5827382ea4c466322c9fc65777d564
parent ebb573ba
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -8880,6 +8880,7 @@ package android.provider {
    field @Deprecated public static final String NAMESPACE_STORAGE = "storage";
    field public static final String NAMESPACE_STORAGE_NATIVE_BOOT = "storage_native_boot";
    field public static final String NAMESPACE_SYSTEMUI = "systemui";
    field public static final String NAMESPACE_SYSTEM_TIME = "system_time";
    field public static final String NAMESPACE_TELEPHONY = "telephony";
    field public static final String NAMESPACE_TEXTCLASSIFIER = "textclassifier";
    field public static final String NAMESPACE_WINDOW_MANAGER_NATIVE_BOOT = "window_manager_native_boot";
+8 −0
Original line number Diff line number Diff line
@@ -367,6 +367,14 @@ public final class DeviceConfig {
    @SystemApi
    public static final String NAMESPACE_SYSTEMUI = "systemui";

    /**
     * Namespace for system time and time zone detection related features / behavior.
     *
     * @hide
     */
    @SystemApi
    public static final String NAMESPACE_SYSTEM_TIME = "system_time";

    /**
     * Telephony related properties.
     *