Skip to content

Commit

Permalink
DO NOT MERGE - Backport of ag/748165 to klp-dev
Browse files Browse the repository at this point in the history
Security patch level in Settings

b/23946860

Change-Id: I610d4dedf18fe1825d7df5febf29e6f0c006490d
  • Loading branch information
Zach Jang committed Sep 17, 2015
1 parent 18089ce commit bdf7f35
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions core/java/android/os/Build.java
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,21 @@ public static class VERSION {
*/
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.
Expand Down

0 comments on commit bdf7f35

Please sign in to comment.