From 61a01fb0caedb8a15e70e00801ee2693ab570e64 Mon Sep 17 00:00:00 2001 From: Zach Johnson Date: Fri, 15 May 2020 10:51:44 -0700 Subject: [PATCH] Add NAMESPACE_BLUETOOTH for bluetooth feature experiments Exempt-From-Owner-Approval: dianne approved, but from her android.com account instead of google.com account Test: compile Bug: 156757711 Merged-In: I330b8cc5aeb14ebcc15fb88c605ac72770497040 Change-Id: I330b8cc5aeb14ebcc15fb88c605ac72770497040 --- api/system-current.txt | 1 + core/java/android/provider/DeviceConfig.java | 8 ++++++++ 2 files changed, 9 insertions(+) diff --git a/api/system-current.txt b/api/system-current.txt index 4a1bf0d803a6e..26153caebfce4 100755 --- a/api/system-current.txt +++ b/api/system-current.txt @@ -6572,6 +6572,7 @@ package android.provider { field public static final String NAMESPACE_APP_COMPAT = "app_compat"; field public static final String NAMESPACE_ATTENTION_MANAGER_SERVICE = "attention_manager_service"; field public static final String NAMESPACE_AUTOFILL = "autofill"; + field public static final String NAMESPACE_BLUETOOTH = "bluetooth"; field public static final String NAMESPACE_CONNECTIVITY = "connectivity"; field public static final String NAMESPACE_CONTENT_CAPTURE = "content_capture"; field public static final String NAMESPACE_DEX_BOOT = "dex_boot"; diff --git a/core/java/android/provider/DeviceConfig.java b/core/java/android/provider/DeviceConfig.java index c837b93461737..5e1b22399d574 100644 --- a/core/java/android/provider/DeviceConfig.java +++ b/core/java/android/provider/DeviceConfig.java @@ -109,6 +109,14 @@ public final class DeviceConfig { @TestApi public static final String NAMESPACE_AUTOFILL = "autofill"; + /** + * Namespace for all Bluetooth related features. + * + * @hide + */ + @SystemApi + public static final String NAMESPACE_BLUETOOTH = "bluetooth"; + /** * Namespace for all networking connectivity related features. *