diff --git a/core/java/android/os/SystemProperties.java b/core/java/android/os/SystemProperties.java index 7bf1c4b68390d..a6e5972faa55b 100644 --- a/core/java/android/os/SystemProperties.java +++ b/core/java/android/os/SystemProperties.java @@ -39,6 +39,13 @@ import java.util.HashMap; * Gives access to the system properties store. The system properties * store contains a list of string key-value pairs. * + *

Use this class only for the system properties that are local. e.g., within + * an app, a partition, or a module. For system properties used across the + * boundaries, formally define them in *.sysprop files and use the + * auto-generated methods. For more information, see Implementing + * System Properties as APIs.

+ * * {@hide} */ @SystemApi