summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMotomu Utsumi <motomuman@google.com>2023-08-15 12:50:18 +0900
committerMotomu Utsumi <motomuman@google.com>2023-08-15 13:27:10 +0900
commit3826a42010787df742477687ff6e4f99b98ec879 (patch)
treed70641f04f46637c9f3382e7c0592cdafd9fcf4d
parentf883e630097664b82e07c89e59fb625ff388ac76 (diff)
downloadConfigInfrastructure-3826a42010787df742477687ff6e4f99b98ec879.tar.gz
Fix the name of String constant for tethering native namespace
Followed suggestion from api council. Value of the constant ("tethering_u_or_later_native") is kept since the namespace name is used in the platform code and can not be updated. Bug: 286049425 Test: m Change-Id: I3f35ca20a48b2a5fa19b9b9e978e7bb9f9980c0c
-rw-r--r--framework/api/module-lib-current.txt2
-rw-r--r--framework/java/android/provider/DeviceConfig.java2
2 files changed, 2 insertions, 2 deletions
diff --git a/framework/api/module-lib-current.txt b/framework/api/module-lib-current.txt
index 63b7a12..ad11041 100644
--- a/framework/api/module-lib-current.txt
+++ b/framework/api/module-lib-current.txt
@@ -25,7 +25,7 @@ package android.provider {
field public static final String NAMESPACE_SETTINGS_STATS = "settings_stats";
field public static final String NAMESPACE_SETTINGS_UI = "settings_ui";
field public static final String NAMESPACE_TARE = "tare";
- field public static final String NAMESPACE_TETHERING_U_OR_LATER_NATIVE = "tethering_u_or_later_native";
+ field public static final String NAMESPACE_TETHERING_NATIVE = "tethering_u_or_later_native";
field public static final String NAMESPACE_VENDOR_SYSTEM_NATIVE = "vendor_system_native";
field public static final String NAMESPACE_VENDOR_SYSTEM_NATIVE_BOOT = "vendor_system_native_boot";
field public static final String NAMESPACE_VIRTUALIZATION_FRAMEWORK_NATIVE = "virtualization_framework_native";
diff --git a/framework/java/android/provider/DeviceConfig.java b/framework/java/android/provider/DeviceConfig.java
index 3cc3e91..57bfd55 100644
--- a/framework/java/android/provider/DeviceConfig.java
+++ b/framework/java/android/provider/DeviceConfig.java
@@ -991,7 +991,7 @@ public final class DeviceConfig {
* @hide
*/
@SystemApi(client = SystemApi.Client.MODULE_LIBRARIES)
- public static final String NAMESPACE_TETHERING_U_OR_LATER_NATIVE =
+ public static final String NAMESPACE_TETHERING_NATIVE =
"tethering_u_or_later_native";
/**