diff options
| author | Narayan Kamath <narayan@google.com> | 2018-03-28 08:43:08 +0000 |
|---|---|---|
| committer | Android (Google) Code Review <android-gerrit@google.com> | 2018-03-28 08:43:08 +0000 |
| commit | 77e0b7b821a4d334606f07c7626aa59f9bee8446 (patch) | |
| tree | 0955bd7ec0fec391ef351217007f2026f1a8f5ca /core/java | |
| parent | 9911073f6a492177f8d33437af8b8b60993c66ab (diff) | |
| parent | 91c361dcbb1a480c9c8ddec855ac1400117de226 (diff) | |
Merge "Build: Remove MIN_SUPPORTED_TARGET_SDK_INT from public API." into pi-dev
Diffstat (limited to 'core/java')
| -rw-r--r-- | core/java/android/os/Build.java | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/core/java/android/os/Build.java b/core/java/android/os/Build.java index e22c65fee4cf..8378a829ed66 100644 --- a/core/java/android/os/Build.java +++ b/core/java/android/os/Build.java @@ -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); |
