File tree Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -89,6 +89,21 @@ public static class VERSION {
89
89
*/
90
90
public static final String RELEASE = getString ("ro.build.version.release" );
91
91
92
+ /**
93
+ * The base OS build the product is based on.
94
+ * For Pre-API 23 - use support libs to access.
95
+ * @hide
96
+ */
97
+ public static final String BASE_OS = SystemProperties .get ("ro.build.version.base_os" , "" );
98
+
99
+ /**
100
+ * The user-visible security patch level.
101
+ * For Pre-API 23 - use support libs to access.
102
+ * @hide
103
+ */
104
+ public static final String SECURITY_PATCH = SystemProperties .get (
105
+ "ro.build.version.security_patch" , "" );
106
+
92
107
/**
93
108
* The user-visible SDK version of the framework in its raw String
94
109
* representation; use {@link #SDK_INT} instead.
You can’t perform that action at this time.
0 commit comments