Merge "Build: Remove MIN_SUPPORTED_TARGET_SDK_INT from public API." into pi-dev

This commit is contained in:
Narayan Kamath
2018-03-28 08:43:08 +00:00
committed by Android (Google) Code Review
2 changed files with 4 additions and 3 deletions

View File

@@ -32058,7 +32058,6 @@ package android.os {
field public static final java.lang.String BASE_OS;
field public static final java.lang.String CODENAME;
field public static final java.lang.String INCREMENTAL;
field public static final int MIN_SUPPORTED_TARGET_SDK_INT;
field public static final int PREVIEW_SDK_INT;
field public static final java.lang.String RELEASE;
field public static final deprecated java.lang.String SDK;

View File

@@ -295,8 +295,10 @@ public class Build {
/**
* The current lowest supported value of app target SDK. Applications targeting
* lower values will fail to install and run. Its possible values are defined
* in {@link Build.VERSION_CODES}.
* lower values may not function on devices running this SDK version. Its possible
* values are defined in {@link Build.VERSION_CODES}.
*
* @hide
*/
public static final int MIN_SUPPORTED_TARGET_SDK_INT = SystemProperties.getInt(
"ro.build.version.min_supported_target_sdk", 0);