diff --git a/core/api/current.txt b/core/api/current.txt index 525884fb07c16..1abd168386633 100644 --- a/core/api/current.txt +++ b/core/api/current.txt @@ -11782,6 +11782,8 @@ package android.content.pm { field public int category; field public String className; field public int compatibleWidthLimitDp; + field public int compileSdkVersion; + field @Nullable public String compileSdkVersionCodename; field public String dataDir; field public int descriptionRes; field public String deviceProtectedDataDir; diff --git a/core/java/android/content/pm/ApplicationInfo.java b/core/java/android/content/pm/ApplicationInfo.java index 01ff4326a8001..dec2c3d7fe487 100644 --- a/core/java/android/content/pm/ApplicationInfo.java +++ b/core/java/android/content/pm/ApplicationInfo.java @@ -1105,19 +1105,15 @@ public class ApplicationInfo extends PackageItemInfo implements Parcelable { *
* This property is the compile-time equivalent of * {@link android.os.Build.VERSION#CODENAME Build.VERSION.SDK_INT}. - * - * @hide For platform use only; we don't expect developers to need to read this value. */ public int compileSdkVersion; /** - * The development codename (ex. "O", "REL") of the framework against which the application + * The development codename (ex. "S", "REL") of the framework against which the application * claims to have been compiled, or {@code null} if not specified. *
* This property is the compile-time equivalent of * {@link android.os.Build.VERSION#CODENAME Build.VERSION.CODENAME}. - * - * @hide For platform use only; we don't expect developers to need to read this value. */ @Nullable public String compileSdkVersionCodename;