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
This commit is contained in:
Neil Fuller
2021-01-28 18:16:37 +00:00
parent ebb573baeb
commit dfea9c4ab9
2 changed files with 9 additions and 0 deletions

View File

@@ -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";

View File

@@ -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.
*