OSDN Git Service

DO NOT MERGE - Backport of ag/748165 to klp-dev
authorZach Jang <zachjang@google.com>
Fri, 11 Sep 2015 23:35:04 +0000 (16:35 -0700)
committerThe Android Automerger <android-build@android.com>
Mon, 28 Sep 2015 23:30:16 +0000 (16:30 -0700)
Security patch level in Settings

b/23946860

Change-Id: I610d4dedf18fe1825d7df5febf29e6f0c006490d

core/java/android/os/Build.java

index 4b0cef6..a3b2015 100644 (file)
@@ -157,6 +157,21 @@ public class Build {
         public static final String RELEASE = getString("ro.build.version.release");
 
         /**
+         * The base OS build the product is based on.
+         * For Pre-API 23 - use support libs to access.
+         * @hide
+         */
+        public static final String BASE_OS = SystemProperties.get("ro.build.version.base_os", "");
+
+        /**
+         * The user-visible security patch level.
+         * For Pre-API 23 - use support libs to access.
+         * @hide
+         */
+        public static final String SECURITY_PATCH = SystemProperties.get(
+                "ro.build.version.security_patch", "");
+
+        /**
          * The user-visible SDK version of the framework in its raw String
          * representation; use {@link #SDK_INT} instead.
          *