/* * Copyright (C) 2007 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package android.os; import android.Manifest; import android.annotation.FlaggedApi; import android.annotation.IntDef; import android.annotation.NonNull; import android.annotation.Nullable; import android.annotation.RequiresPermission; import android.annotation.SuppressAutoDoc; import android.annotation.SuppressLint; import android.annotation.SystemApi; import android.annotation.TestApi; import android.app.ActivityThread; import android.app.Application; import android.compat.annotation.UnsupportedAppUsage; import android.content.Context; import android.ravenwood.annotation.RavenwoodKeepWholeClass; import android.sdk.Flags; import android.sysprop.BackportedFixesProperties; import android.sysprop.DeviceProperties; import android.sysprop.SocProperties; import android.sysprop.TelephonyProperties; import android.text.TextUtils; import android.util.ArraySet; import android.util.Slog; import android.view.View; import com.android.internal.util.FrameworkStatsLog; import dalvik.system.VMRuntime; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.util.ArrayList; import java.util.List; import java.util.Objects; import java.util.Set; import java.util.stream.Collectors; /** * Information about the current build, extracted from system properties. */ @RavenwoodKeepWholeClass public class Build { private static final String TAG = "Build"; /** Value used for when a build property is unknown. */ public static final String UNKNOWN = "unknown"; /** Either a changelist number, or a label like "M4-rc20". */ public static final String ID = getString("ro.build.id"); /** A build ID string meant for displaying to the user */ public static final String DISPLAY = getString("ro.build.display.id"); /** The name of the overall product. */ public static final String PRODUCT = getString("ro.product.name"); /** * The product name for attestation. In non-default builds (like the AOSP build) the value of * the 'PRODUCT' system property may be different to the one provisioned to KeyMint, * and Keymint attestation would still attest to the product name which was provisioned. * @hide */ @Nullable @TestApi public static final String PRODUCT_FOR_ATTESTATION = getVendorDeviceIdProperty("name"); /** The name of the industrial design. */ public static final String DEVICE = getString("ro.product.device"); /** * The device name for attestation. In non-default builds (like the AOSP build) the value of * the 'DEVICE' system property may be different to the one provisioned to KeyMint, * and Keymint attestation would still attest to the device name which was provisioned. * @hide */ @Nullable @TestApi public static final String DEVICE_FOR_ATTESTATION = getVendorDeviceIdProperty("device"); /** The name of the underlying board, like "goldfish". */ public static final String BOARD = getString("ro.product.board"); /** * The name of the instruction set (CPU type + ABI convention) of native code. * * @deprecated Use {@link #SUPPORTED_ABIS} instead. */ @Deprecated public static final String CPU_ABI; /** * The name of the second instruction set (CPU type + ABI convention) of native code. * * @deprecated Use {@link #SUPPORTED_ABIS} instead. */ @Deprecated public static final String CPU_ABI2; /** The manufacturer of the product/hardware. */ public static final String MANUFACTURER = getString("ro.product.manufacturer"); /** * The manufacturer name for attestation. In non-default builds (like the AOSP build) the value * of the 'MANUFACTURER' system property may be different to the one provisioned to KeyMint, * and Keymint attestation would still attest to the manufacturer which was provisioned. * @hide */ @Nullable @TestApi public static final String MANUFACTURER_FOR_ATTESTATION = getVendorDeviceIdProperty("manufacturer"); /** The consumer-visible brand with which the product/hardware will be associated, if any. */ public static final String BRAND = getString("ro.product.brand"); /** * The product brand for attestation. In non-default builds (like the AOSP build) the value of * the 'BRAND' system property may be different to the one provisioned to KeyMint, * and Keymint attestation would still attest to the product brand which was provisioned. * @hide */ @Nullable @TestApi public static final String BRAND_FOR_ATTESTATION = getVendorDeviceIdProperty("brand"); /** The end-user-visible name for the end product. */ public static final String MODEL = getString("ro.product.model"); /** * The product model for attestation. In non-default builds (like the AOSP build) the value of * the 'MODEL' system property may be different to the one provisioned to KeyMint, * and Keymint attestation would still attest to the product model which was provisioned. * @hide */ @Nullable @TestApi public static final String MODEL_FOR_ATTESTATION = getVendorDeviceIdProperty("model"); /** The manufacturer of the device's primary system-on-chip. */ @NonNull public static final String SOC_MANUFACTURER = SocProperties.soc_manufacturer().orElse(UNKNOWN); /** The model name of the device's primary system-on-chip. */ @NonNull public static final String SOC_MODEL = SocProperties.soc_model().orElse(UNKNOWN); /** The system bootloader version number. */ public static final String BOOTLOADER = getString("ro.bootloader"); /** * The radio firmware version number. * * @deprecated The radio firmware version is frequently not * available when this class is initialized, leading to a blank or * "unknown" value for this string. Use * {@link #getRadioVersion} instead. */ @Deprecated public static final String RADIO = joinListOrElse( TelephonyProperties.baseband_version(), UNKNOWN); /** The name of the hardware (from the kernel command line or /proc). */ public static final String HARDWARE = getString("ro.hardware"); /** * The SKU of the hardware (from the kernel command line). * *
The SKU is reported by the bootloader to configure system software features. * If no value is supplied by the bootloader, this is reported as {@link #UNKNOWN}. */ @NonNull public static final String SKU = getString("ro.boot.hardware.sku"); /** * The SKU of the device as set by the original design manufacturer (ODM). * *
This is a runtime-initialized property set during startup to configure device * services. If no value is set, this is reported as {@link #UNKNOWN}. * *
The ODM SKU may have multiple variants for the same system SKU in case a manufacturer * produces variants of the same design. For example, the same build may be released with * variations in physical keyboard and/or display hardware, each with a different ODM SKU. */ @NonNull public static final String ODM_SKU = getString("ro.boot.product.hardware.sku"); /** * Whether this build was for an emulator device. * @hide */ @UnsupportedAppUsage @TestApi public static final boolean IS_EMULATOR = getString("ro.boot.qemu").equals("1"); /** * A hardware serial number, if available. Alphanumeric only, case-insensitive. * This field is always set to {@link Build#UNKNOWN}. * * @deprecated Use {@link #getSerial()} instead. **/ @Deprecated // IMPORTANT: This field should be initialized via a function call to // prevent its value being inlined in the app during compilation because // we will later set it to the value based on the app's target SDK. public static final String SERIAL = getString("no.such.thing"); /** * Gets the hardware serial number, if available. * *
Note: Root access may allow you to modify device identifiers, such as * the hardware serial number. If you change these identifiers, you can not use * key attestation to obtain * proof of the device's original identifiers. KeyMint will reject an ID attestation request * if the identifiers provided by the frameworks do not match the identifiers it was * provisioned with. * *
Starting with API level 29, persistent device identifiers are guarded behind additional * restrictions, and apps are recommended to use resettable identifiers (see Best practices for unique identifiers). This * method can be invoked if one of the following requirements is met: *
If the calling app does not meet one of these requirements then this method will behave * as follows: * *
* If this value is not 0
, the device conforms to the media performance class
* definition of the SDK version of this value. This value never changes while a device is
* booted, but it may increase when the hardware manufacturer provides an OTA update.
*
* Possible non-zero values are defined in {@link Build.VERSION_CODES} starting with * {@link Build.VERSION_CODES#R}. */ public static final int MEDIA_PERFORMANCE_CLASS = DeviceProperties.media_performance_class().orElse(0); /** * The user-visible SDK version of the framework in its raw String * representation; use {@link #SDK_INT} instead. * * @deprecated Use {@link #SDK_INT} to easily get this as an integer. */ @Deprecated public static final String SDK = getString("ro.build.version.sdk"); /** * The SDK version of the software currently running on this hardware * device. This value never changes while a device is booted, but it may * increase when the hardware manufacturer provides an OTA update. *
* This constant records the major version of Android. Use {@link * #SDK_INT_FULL} if you need to consider the minor version of Android * as well. *
* Possible values are defined in {@link Build.VERSION_CODES}. * @see #SDK_INT_FULL */ public static final int SDK_INT = SystemProperties.getInt( "ro.build.version.sdk", 0); /** * The major and minor SDK version of the software currently running on * this hardware device. This value never changes while a device is * booted, but it may increase when the hardware manufacturer provides * an OTA update. *
* SDK_INT
is increased on new Android dessert releases,
* also called major releases. Between these, Android may also release
* minor releases where SDK_INT
remains unchanged. Minor
* releases can add new APIs, and have stricter guarantees around
* backwards compatibility (e.g. no changes gated by
* targetSdkVersion
) compared to major releases.
*
* SDK_INT_FULL
is increased on every release.
*
* Possible values are defined in {@link * android.os.Build.VERSION_CODES_FULL}. */ @FlaggedApi(Flags.FLAG_MAJOR_MINOR_VERSIONING_SCHEME) public static final int SDK_INT_FULL = parseFullVersion(SystemProperties.get( "ro.build.version.sdk_full", "")); /** * The SDK version of the software that initially shipped on * this hardware device. It never changes during the lifetime * of the device, even when {@link #SDK_INT} increases due to an OTA * update. *
* Possible values are defined in {@link Build.VERSION_CODES}.
*
* @see #SDK_INT
* @hide
*/
@SystemApi(client = SystemApi.Client.MODULE_LIBRARIES)
@TestApi
public static final int DEVICE_INITIAL_SDK_INT = SystemProperties
.getInt("ro.product.first_api_level", 0);
/**
* The developer preview revision of a prerelease SDK. This value will always
* be 0
on production platform builds/devices.
*
*
When this value is nonzero, any new API added since the last
* officially published {@link #SDK_INT API level} is only guaranteed to be present
* on that specific preview revision. For example, an API Activity.fooBar()
* might be present in preview revision 1 but renamed or removed entirely in
* preview revision 2, which may cause an app attempting to call it to crash
* at runtime.
Experimental apps targeting preview APIs should check this value for
* equality (==
) with the preview SDK revision they were built for
* before using any prerelease platform APIs. Apps that detect a preview SDK revision
* other than the specific one they expect should fall back to using APIs from
* the previously published API level only to avoid unwanted runtime exceptions.
*
When this value is not {@code REL}, it contains a string fingerprint of the API * surface exposed by the preview SDK. Preview platforms with different API surfaces * will have different {@code PREVIEW_SDK_FINGERPRINT}. * *
This attribute is intended for use by installers for finer grained targeting of * packages. Applications targeting preview APIs should not use this field and should * instead use {@code PREVIEW_SDK_INT} or use reflection or other runtime checks to * detect the presence of an API or guard themselves against unexpected runtime * behavior. * * @hide */ @SystemApi @NonNull public static final String PREVIEW_SDK_FINGERPRINT = SystemProperties.get( "ro.build.version.preview_sdk_fingerprint", "REL"); /** * The current development codename, or the string "REL" if this is * a release build. */ public static final String CODENAME = getString("ro.build.version.codename"); /** * All known codenames that are present in {@link VERSION_CODES}. * *
This includes in development codenames as well, i.e. if {@link #CODENAME} is not "REL" * then the value of that is present in this set. * *
If a particular string is not present in this set, then it is either not a codename
* or a codename for a future release. For example, during Android R development, "Tiramisu"
* was not a known codename.
*
* @hide
*/
@SystemApi
@NonNull public static final Set Released publicly as Android 1.0 in September 2008.
*/
public static final int BASE = 1;
/**
* First Android update.
*
* Released publicly as Android 1.1 in February 2009.
*/
public static final int BASE_1_1 = 2;
/**
* C.
*
* Released publicly as Android 1.5 in April 2009.
*/
public static final int CUPCAKE = 3;
/**
* D.
*
* Released publicly as Android 1.6 in September 2009.
* Applications targeting this or a later release will get these
* new changes in behavior: Released publicly as Android 2.0 in October 2009.
* Applications targeting this or a later release will get these
* new changes in behavior: Released publicly as Android 2.0.1 in December 2009.
*/
public static final int ECLAIR_0_1 = 6;
/**
* E MR1.
*
* Released publicly as Android 2.1 in January 2010.
*/
public static final int ECLAIR_MR1 = 7;
/**
* F.
*
* Released publicly as Android 2.2 in May 2010.
*/
public static final int FROYO = 8;
/**
* G.
*
* Released publicly as Android 2.3 in December 2010.
* Applications targeting this or a later release will get these
* new changes in behavior: Released publicly as Android 2.3.3 in February 2011.
*/
public static final int GINGERBREAD_MR1 = 10;
/**
* H.
*
* Released publicly as Android 3.0 in February 2011.
* Applications targeting this or a later release will get these
* new changes in behavior: Released publicly as Android 3.1 in May 2011.
*/
public static final int HONEYCOMB_MR1 = 12;
/**
* H MR2.
*
* Released publicly as Android 3.2 in July 2011.
* Update to Honeycomb MR1 to support 7 inch tablets, improve
* screen compatibility mode, etc. As of this version, applications that don't say whether they
* support XLARGE screens will be assumed to do so only if they target
* {@link #HONEYCOMB} or later; it had been {@link #GINGERBREAD} or
* later. Applications that don't support a screen size at least as
* large as the current screen will provide the user with a UI to
* switch them in to screen size compatibility mode. This version introduces new screen size resource qualifiers
* based on the screen size in dp: see
* {@link android.content.res.Configuration#screenWidthDp},
* {@link android.content.res.Configuration#screenHeightDp}, and
* {@link android.content.res.Configuration#smallestScreenWidthDp}.
* Supplying these in <supports-screens> as per
* {@link android.content.pm.ApplicationInfo#requiresSmallestWidthDp},
* {@link android.content.pm.ApplicationInfo#compatibleWidthLimitDp}, and
* {@link android.content.pm.ApplicationInfo#largestWidthLimitDp} is
* preferred over the older screen size buckets and for older devices
* the appropriate buckets will be inferred from them. Applications targeting this or a later release will get these
* new changes in behavior: New {@link android.content.pm.PackageManager#FEATURE_SCREEN_PORTRAIT}
* and {@link android.content.pm.PackageManager#FEATURE_SCREEN_LANDSCAPE}
* features were introduced in this release. Applications that target
* previous platform versions are assumed to require both portrait and
* landscape support in the device; when targeting Honeycomb MR1 or
* greater the application is responsible for specifying any specific
* orientation it requires. {@link android.os.AsyncTask} will use the serial executor
* by default when calling {@link android.os.AsyncTask#execute}. {@link android.content.pm.ActivityInfo#configChanges
* ActivityInfo.configChanges} will have the
* {@link android.content.pm.ActivityInfo#CONFIG_SCREEN_SIZE} and
* {@link android.content.pm.ActivityInfo#CONFIG_SMALLEST_SCREEN_SIZE}
* bits set; these need to be cleared for older applications because
* some developers have done absolute comparisons against this value
* instead of correctly masking the bits they are interested in.
* Released publicly as Android 4.0 in October 2011.
* Applications targeting this or a later release will get these
* new changes in behavior: Released publicly as Android 4.03 in December 2011.
*/
public static final int ICE_CREAM_SANDWICH_MR1 = 15;
/**
* J.
*
* Released publicly as Android 4.1 in July 2012.
* Applications targeting this or a later release will get these
* new changes in behavior: Released publicly as Android 4.2 in November 2012.
* Applications targeting this or a later release will get these
* new changes in behavior: Released publicly as Android 4.3 in July 2013.
*/
public static final int JELLY_BEAN_MR2 = 18;
/**
* K.
*
* Released publicly as Android 4.4 in October 2013.
* Applications targeting this or a later release will get these
* new changes in behavior. For more information about this release, see the
* Android KitKat overview. Released publicly as Android 4.4W in June 2014.
* Applications targeting this or a later release will get these
* new changes in behavior: Released publicly as Android 5.0 in November 2014.
* Applications targeting this or a later release will get these
* new changes in behavior. For more information about this release, see the
* Android Lollipop overview. Released publicly as Android 5.1 in March 2015.
* For more information about this release, see the
* Android 5.1 APIs.
*/
public static final int LOLLIPOP_MR1 = 22;
/**
* M.
*
* Released publicly as Android 6.0 in October 2015.
* Applications targeting this or a later release will get these
* new changes in behavior. For more information about this release, see the
* Android 6.0 Marshmallow overview. Released publicly as Android 7.0 in August 2016.
* Applications targeting this or a later release will get these
* new changes in behavior. For more information about this release, see
* the Android Nougat overview. Released publicly as Android 7.1 in October 2016.
* For more information about this release, see
* Android 7.1 for
* Developers.
*/
public static final int N_MR1 = 25;
/**
* O.
*
* Released publicly as Android 8.0 in August 2017.
* Applications targeting this or a later release will get these
* new changes in behavior. For more information about this release, see
* the Android Oreo overview. Released publicly as Android 8.1 in December 2017.
* Applications targeting this or a later release will get these
* new changes in behavior. For more information about this release, see
* Android 8.1 features and
* APIs. Released publicly as Android 9 in August 2018.
* Applications targeting this or a later release will get these
* new changes in behavior. For more information about this release, see the
* Android 9 Pie overview. Released publicly as Android 10 in September 2019.
* Applications targeting this or a later release will get these new changes in behavior.
* For more information about this release, see the
* Android 10 overview. Released publicly as Android 11 in September 2020.
* Applications targeting this or a later release will get these new changes in behavior.
* For more information about this release, see the
* Android 11 overview. For Android 14-QPR3 and later, the vendor API level is completely decoupled from the SDK
* API level and the format has switched to YYYYMM (year and month)
*
* @see Vendor API
* level
* @hide
*/
public static final int VENDOR_API_2024_Q2 = 202404;
/** The type of build, like "user" or "eng". */
public static final String TYPE = getString("ro.build.type");
/** Comma-separated tags describing the build, like "unsigned,debug". */
public static final String TAGS = getString("ro.build.tags");
/** A string that uniquely identifies this build. Do not attempt to parse this value. */
public static final String FINGERPRINT = deriveFingerprint();
/** The status of the known issue on this device is not known. */
@FlaggedApi(android.os.Flags.FLAG_API_FOR_BACKPORTED_FIXES)
public static final int BACKPORTED_FIX_STATUS_UNKNOWN = 0;
/** The known issue is fixed on this device. */
@FlaggedApi(android.os.Flags.FLAG_API_FOR_BACKPORTED_FIXES)
public static final int BACKPORTED_FIX_STATUS_FIXED = 1;
/**
* The known issue is not applicable to this device.
*
* For example if the issue only affects a specific brand, devices
* from other brands would report not applicable.
*/
@FlaggedApi(android.os.Flags.FLAG_API_FOR_BACKPORTED_FIXES)
public static final int BACKPORTED_FIX_STATUS_NOT_APPLICABLE = 2;
/** The known issue is not fixed on this device. */
@FlaggedApi(android.os.Flags.FLAG_API_FOR_BACKPORTED_FIXES)
public static final int BACKPORTED_FIX_STATUS_NOT_FIXED = 3;
/**
* The status of the backported fix for a known issue on this device.
*
* @hide
*/
@IntDef(
prefix = {"BACKPORTED_FIX_STATUS_"},
value = {
BACKPORTED_FIX_STATUS_UNKNOWN,
BACKPORTED_FIX_STATUS_FIXED,
BACKPORTED_FIX_STATUS_NOT_APPLICABLE,
BACKPORTED_FIX_STATUS_NOT_FIXED,
})
@Retention(RetentionPolicy.SOURCE)
public @interface BackportedFixStatus {
}
/**
* The status of the backported fix for a known issue on this device.
*
* @param id The id of the known issue to check.
* @return {@link #BACKPORTED_FIX_STATUS_FIXED} if the known issue is
* fixed on this device,
* {@link #BACKPORTED_FIX_STATUS_NOT_FIXED} if the known issue is not
* fixed on this device,
* {@link #BACKPORTED_FIX_STATUS_NOT_APPLICABLE} if the known issue is
* is not applicable on this device,
* otherwise {@link #BACKPORTED_FIX_STATUS_UNKNOWN}.
*/
@FlaggedApi(android.os.Flags.FLAG_API_FOR_BACKPORTED_FIXES)
public static @BackportedFixStatus int getBackportedFixStatus(long id) {
@BackportedFixStatus int status = BACKPORTED_FIX_STATUS_UNKNOWN;
int uid = Binder.getCallingUid();
if (id > 0 && id <= 1023) {
status = isBitSet(BackportedFixesProperties.alias_bitset(), (int) id)
? BACKPORTED_FIX_STATUS_FIXED : BACKPORTED_FIX_STATUS_UNKNOWN;
}
FrameworkStatsLog.write(FrameworkStatsLog.BACKPORTED_FIX_STATUS_REPORTED, uid, id, status);
return status;
}
private static boolean isBitSet(List
*
*/
public static final int DONUT = 4;
/**
* E.
*
*
*
*/
public static final int ECLAIR = 5;
/**
* E incremental update.
*
*
*
*/
public static final int GINGERBREAD = 9;
/**
* G MR1.
*
*
*
*/
public static final int HONEYCOMB = 11;
/**
* H MR1.
*
*
*
*/
public static final int HONEYCOMB_MR2 = 13;
/**
* I.
*
*
*
*/
public static final int ICE_CREAM_SANDWICH = 14;
/**
* I MR1.
*
*
*
*/
public static final int JELLY_BEAN = 16;
/**
* J MR1.
*
*
*
*/
public static final int JELLY_BEAN_MR1 = 17;
/**
* J MR2.
*
*
*
*/
public static final int KITKAT = 19;
/**
* K for watches.
*
*
*
*/
public static final int KITKAT_WATCH = 20;
/**
* Temporary until we completely switch to {@link #LOLLIPOP}.
* @hide
*/
public static final int L = 21;
/**
* L.
*
*
*
*/
public static final int LOLLIPOP = 21;
/**
* L MR1.
*
*
*
*/
public static final int M = 23;
/**
* N.
*
*
*
*/
public static final int N = 24;
/**
* N MR1.
*
* false
from its handler
* for these events.
*
*/
public static final int O = 26;
/**
* O MR1.
*
*
*
*
*/
public static final int O_MR1 = 27;
/**
* P.
*
*
*
*
*/
public static final int P = 28;
/**
* Q.
*
*
*
*
*/
public static final int R = 30;
/**
* S.
*/
public static final int S = 31;
/**
* S V2.
*
* Once more unto the breach, dear friends, once more.
*/
public static final int S_V2 = 32;
/**
* Tiramisu.
*/
public static final int TIRAMISU = 33;
/**
* Upside Down Cake.
*/
public static final int UPSIDE_DOWN_CAKE = 34;
/**
* Vanilla Ice Cream.
*/
public static final int VANILLA_ICE_CREAM = 35;
/**
* Baklava.
*/
@FlaggedApi(Flags.FLAG_MAJOR_MINOR_VERSIONING_SCHEME)
public static final int BAKLAVA = 36;
}
/** @hide */
@IntDef(value = {
VERSION_CODES_FULL.BASE,
VERSION_CODES_FULL.BASE_1_1,
VERSION_CODES_FULL.CUPCAKE,
VERSION_CODES_FULL.DONUT,
VERSION_CODES_FULL.ECLAIR,
VERSION_CODES_FULL.ECLAIR_0_1,
VERSION_CODES_FULL.ECLAIR_MR1,
VERSION_CODES_FULL.FROYO,
VERSION_CODES_FULL.GINGERBREAD,
VERSION_CODES_FULL.GINGERBREAD_MR1,
VERSION_CODES_FULL.HONEYCOMB,
VERSION_CODES_FULL.HONEYCOMB_MR1,
VERSION_CODES_FULL.HONEYCOMB_MR2,
VERSION_CODES_FULL.ICE_CREAM_SANDWICH,
VERSION_CODES_FULL.ICE_CREAM_SANDWICH_MR1,
VERSION_CODES_FULL.JELLY_BEAN,
VERSION_CODES_FULL.JELLY_BEAN_MR1,
VERSION_CODES_FULL.JELLY_BEAN_MR2,
VERSION_CODES_FULL.KITKAT,
VERSION_CODES_FULL.KITKAT_WATCH,
VERSION_CODES_FULL.LOLLIPOP,
VERSION_CODES_FULL.LOLLIPOP_MR1,
VERSION_CODES_FULL.M,
VERSION_CODES_FULL.N,
VERSION_CODES_FULL.N_MR1,
VERSION_CODES_FULL.O,
VERSION_CODES_FULL.O_MR1,
VERSION_CODES_FULL.P,
VERSION_CODES_FULL.Q,
VERSION_CODES_FULL.R,
VERSION_CODES_FULL.S,
VERSION_CODES_FULL.S_V2,
VERSION_CODES_FULL.TIRAMISU,
VERSION_CODES_FULL.UPSIDE_DOWN_CAKE,
VERSION_CODES_FULL.VANILLA_ICE_CREAM,
VERSION_CODES_FULL.BAKLAVA,
})
@Retention(RetentionPolicy.SOURCE)
public @interface SdkIntFull {}
/**
* Enumeration of the currently known SDK major and minor version codes.
* The numbers increase for every release, and are guaranteed to be ordered
* by the release date of each release. The actual values should be
* considered an implementation detail, and the current encoding scheme may
* change in the future.
*
* @see android.os.Build.VERSION#SDK_INT_FULL
*/
@FlaggedApi(Flags.FLAG_MAJOR_MINOR_VERSIONING_SCHEME)
@SuppressLint("AcronymName")
public static class VERSION_CODES_FULL {
private VERSION_CODES_FULL() {}
// Use the last 5 digits for the minor version. This allows the
// minor version to be set to CUR_DEVELOPMENT.
private static final int SDK_INT_MULTIPLIER = 100000;
/**
* Android 1.0.
*/
public static final int BASE = VERSION_CODES.BASE * SDK_INT_MULTIPLIER;
/**
* Android 2.0.
*/
public static final int BASE_1_1 = VERSION_CODES.BASE_1_1 * SDK_INT_MULTIPLIER;
/**
* Android 3.0.
*/
public static final int CUPCAKE = VERSION_CODES.CUPCAKE * SDK_INT_MULTIPLIER;
/**
* Android 4.0.
*/
public static final int DONUT = VERSION_CODES.DONUT * SDK_INT_MULTIPLIER;
/**
* Android 5.0.
*/
public static final int ECLAIR = VERSION_CODES.ECLAIR * SDK_INT_MULTIPLIER;
/**
* Android 6.0.
*/
public static final int ECLAIR_0_1 = VERSION_CODES.ECLAIR_0_1 * SDK_INT_MULTIPLIER;
/**
* Android 7.0.
*/
public static final int ECLAIR_MR1 = VERSION_CODES.ECLAIR_MR1 * SDK_INT_MULTIPLIER;
/**
* Android 8.0.
*/
public static final int FROYO = VERSION_CODES.FROYO * SDK_INT_MULTIPLIER;
/**
* Android 9.0.
*/
public static final int GINGERBREAD = VERSION_CODES.GINGERBREAD * SDK_INT_MULTIPLIER;
/**
* Android 10.0.
*/
public static final int GINGERBREAD_MR1 =
VERSION_CODES.GINGERBREAD_MR1 * SDK_INT_MULTIPLIER;
/**
* Android 11.0.
*/
public static final int HONEYCOMB = VERSION_CODES.HONEYCOMB * SDK_INT_MULTIPLIER;
/**
* Android 12.0.
*/
public static final int HONEYCOMB_MR1 = VERSION_CODES.HONEYCOMB_MR1 * SDK_INT_MULTIPLIER;
/**
* Android 13.0.
*/
public static final int HONEYCOMB_MR2 = VERSION_CODES.HONEYCOMB_MR2 * SDK_INT_MULTIPLIER;
/**
* Android 14.0.
*/
public static final int ICE_CREAM_SANDWICH =
VERSION_CODES.ICE_CREAM_SANDWICH * SDK_INT_MULTIPLIER;
/**
* Android 15.0.
*/
public static final int ICE_CREAM_SANDWICH_MR1 =
VERSION_CODES.ICE_CREAM_SANDWICH_MR1 * SDK_INT_MULTIPLIER;
/**
* Android 16.0.
*/
public static final int JELLY_BEAN = VERSION_CODES.JELLY_BEAN * SDK_INT_MULTIPLIER;
/**
* Android 17.0.
*/
public static final int JELLY_BEAN_MR1 = VERSION_CODES.JELLY_BEAN_MR1 * SDK_INT_MULTIPLIER;
/**
* Android 18.0.
*/
public static final int JELLY_BEAN_MR2 = VERSION_CODES.JELLY_BEAN_MR2 * SDK_INT_MULTIPLIER;
/**
* Android 19.0.
*/
public static final int KITKAT = VERSION_CODES.KITKAT * SDK_INT_MULTIPLIER;
/**
* Android 20.0.
*/
public static final int KITKAT_WATCH = VERSION_CODES.KITKAT_WATCH * SDK_INT_MULTIPLIER;
/**
* Android 21.0.
*/
public static final int LOLLIPOP = VERSION_CODES.LOLLIPOP * SDK_INT_MULTIPLIER;
/**
* Android 22.0.
*/
public static final int LOLLIPOP_MR1 = VERSION_CODES.LOLLIPOP_MR1 * SDK_INT_MULTIPLIER;
/**
* Android 23.0.
*/
public static final int M = VERSION_CODES.M * SDK_INT_MULTIPLIER;
/**
* Android 24.0.
*/
public static final int N = VERSION_CODES.N * SDK_INT_MULTIPLIER;
/**
* Android 25.0.
*/
public static final int N_MR1 = VERSION_CODES.N_MR1 * SDK_INT_MULTIPLIER;
/**
* Android 26.0.
*/
public static final int O = VERSION_CODES.O * SDK_INT_MULTIPLIER;
/**
* Android 27.0.
*/
public static final int O_MR1 = VERSION_CODES.O_MR1 * SDK_INT_MULTIPLIER;
/**
* Android 28.0.
*/
public static final int P = VERSION_CODES.P * SDK_INT_MULTIPLIER;
/**
* Android 29.0.
*/
public static final int Q = VERSION_CODES.Q * SDK_INT_MULTIPLIER;
/**
* Android 30.0.
*/
public static final int R = VERSION_CODES.R * SDK_INT_MULTIPLIER;
/**
* Android 31.0.
*/
public static final int S = VERSION_CODES.S * SDK_INT_MULTIPLIER;
/**
* Android 32.0.
*/
public static final int S_V2 = VERSION_CODES.S_V2 * SDK_INT_MULTIPLIER;
/**
* Android 33.0.
*/
public static final int TIRAMISU = VERSION_CODES.TIRAMISU * SDK_INT_MULTIPLIER;
/**
* Android 34.0.
*/
public static final int UPSIDE_DOWN_CAKE =
VERSION_CODES.UPSIDE_DOWN_CAKE * SDK_INT_MULTIPLIER;
/**
* Android 35.0.
*/
public static final int VANILLA_ICE_CREAM =
VERSION_CODES.VANILLA_ICE_CREAM * SDK_INT_MULTIPLIER;
/**
* Android 36.0.
*/
public static final int BAKLAVA = VERSION_CODES.BAKLAVA * SDK_INT_MULTIPLIER;
}
/**
* Obtain the major version encoded in a VERSION_CODES_FULL value.
* This value is guaranteed to be non-negative.
*
* @return The major version encoded in a VERSION_CODES_FULL value
*/
@FlaggedApi(Flags.FLAG_MAJOR_MINOR_VERSIONING_SCHEME)
public static int getMajorSdkVersion(@SdkIntFull int sdkIntFull) {
return sdkIntFull / VERSION_CODES_FULL.SDK_INT_MULTIPLIER;
}
/**
* Obtain the minor version encoded in a VERSION_CODES_FULL value.
* This value is guaranteed to be non-negative.
*
* @return The minor version encoded in a VERSION_CODES_FULL value
*/
@FlaggedApi(Flags.FLAG_MAJOR_MINOR_VERSIONING_SCHEME)
public static int getMinorSdkVersion(@SdkIntFull int sdkIntFull) {
return sdkIntFull % VERSION_CODES_FULL.SDK_INT_MULTIPLIER;
}
/**
* Convert a major.minor version String like "36.1" to an int that
* represents both major and minor version.
*
* @param version the String to parse
* @return an int encoding the major and minor version
* @throws IllegalArgumentException if the string could not be converted into an int
*
* @hide
*/
@SuppressWarnings("FlaggedApi") // SDK_INT_MULTIPLIER is defined in this file
@SuppressLint("InlinedApi")
public static @SdkIntFull int parseFullVersion(@NonNull String version) {
int index = version.indexOf('.');
int major;
int minor = 0;
try {
if (index == -1) {
major = Integer.parseInt(version);
} else {
major = Integer.parseInt(version.substring(0, index));
minor = Integer.parseInt(version.substring(index + 1));
}
if (major < 0) {
throw new NumberFormatException("negative major version");
}
if (major >= 21474) {
throw new NumberFormatException("major version too large, must be less than 21474");
}
if (minor < 0) {
throw new NumberFormatException("negative minor version");
}
if (minor >= VERSION_CODES_FULL.SDK_INT_MULTIPLIER) {
throw new NumberFormatException("minor version too large, must be less than "
+ VERSION_CODES_FULL.SDK_INT_MULTIPLIER);
}
} catch (NumberFormatException e) {
throw new IllegalArgumentException("failed to parse '" + version
+ "' as a major.minor version code", e);
}
return major * VERSION_CODES_FULL.SDK_INT_MULTIPLIER + minor;
}
/**
* Convert an int representing a major.minor version like SDK_INT_FULL to a
* human readable string. The returned string is only intended for debug
* and error messages.
*
* @param version the int to convert to a string
* @return a String representing the same major.minor version as the int passed in
* @throws IllegalArgumentException if {@code version} is negative
*
* @hide
*/
public static String fullVersionToString(@SdkIntFull int version) {
if (version < 0) {
throw new IllegalArgumentException("failed to convert '" + version
+ "' to string: not a valid major.minor version code");
}
return String.format("%d.%d", getMajorSdkVersion(version), getMinorSdkVersion(version));
}
/**
* The vendor API for 2024 Q2
*
*