Build.VERSION_CODES
public
static
class
Build.VERSION_CODES
extends Object
java.lang.Object | |
↳ | android.os.Build.VERSION_CODES |
Enumeration of the currently known SDK version codes. These are the
values that can be found in VERSION#SDK
. Version numbers
increment monotonically with each official platform release.
Summary
Constants | |
---|---|
int |
BASE
The original, first, version of Android. |
int |
BASE_1_1
First Android update. |
int |
CUPCAKE
C. |
int |
CUR_DEVELOPMENT
Magic version number for a current development build, which has not yet turned into an official release. |
int |
DONUT
D. |
int |
ECLAIR
E. |
int |
ECLAIR_0_1
E incremental update. |
int |
ECLAIR_MR1
E MR1. |
int |
FROYO
F. |
int |
GINGERBREAD
G. |
int |
GINGERBREAD_MR1
G MR1. |
int |
HONEYCOMB
H. |
int |
HONEYCOMB_MR1
H MR1. |
int |
HONEYCOMB_MR2
H MR2. |
int |
ICE_CREAM_SANDWICH
I. |
int |
ICE_CREAM_SANDWICH_MR1
I MR1. |
int |
JELLY_BEAN
J. |
int |
JELLY_BEAN_MR1
J MR1. |
int |
JELLY_BEAN_MR2
J MR2. |
int |
KITKAT
K. |
int |
KITKAT_WATCH
K for watches. |
int |
LOLLIPOP
L. |
int |
LOLLIPOP_MR1
L MR1. |
int |
M
M. |
int |
N
N. |
int |
N_MR1
N MR1. |
int |
O
O. |
int |
O_MR1
O MR1. |
int |
P
P. |
int |
Q
Q. |
int |
R
R. |
int |
S
S. |
int |
S_V2
S V2. |
int |
TIRAMISU
Tiramisu. |
int |
UPSIDE_DOWN_CAKE
Upside Down Cake. |
int |
VANILLA_ICE_CREAM
Vanilla Ice Cream. |
Public constructors | |
---|---|
VERSION_CODES()
|
Inherited methods | |
---|---|
Constants
BASE
public static final int BASE
The original, first, version of Android. Yay!
Released publicly as Android 1.0 in September 2008.
Constant Value: 1 (0x00000001)
BASE_1_1
public static final int BASE_1_1
First Android update.
Released publicly as Android 1.1 in February 2009.
Constant Value: 2 (0x00000002)
CUPCAKE
public static final int CUPCAKE
C.
Released publicly as Android 1.5 in April 2009.
Constant Value: 3 (0x00000003)
CUR_DEVELOPMENT
public static final int CUR_DEVELOPMENT
Magic version number for a current development build, which has not yet turned into an official release.
Constant Value: 10000 (0x00002710)
DONUT
public static final int DONUT
D.
Released publicly as Android 1.6 in September 2009.
Applications targeting this or a later release will get these new changes in behavior:
- They must explicitly request the
Manifest.permission.WRITE_EXTERNAL_STORAGE
permission to be able to modify the contents of the SD card. (Apps targeting earlier versions will always request the permission.) - They must explicitly request the
Manifest.permission.READ_PHONE_STATE
permission to be able to be able to retrieve phone state info. (Apps targeting earlier versions will always request the permission.) - They are assumed to support different screen densities and sizes. (Apps targeting earlier versions are assumed to only support medium density normal size screens unless otherwise indicated). They can still explicitly specify screen support either way with the supports-screens manifest tag.
-
TabHost
will use the new dark tab background design.
Constant Value: 4 (0x00000004)
ECLAIR
public static final int ECLAIR
E.
Released publicly as Android 2.0 in October 2009.
Applications targeting this or a later release will get these new changes in behavior:
- The
Service.onStartCommand
function will return the newService.START_STICKY
behavior instead of the old compatibilityService.START_STICKY_COMPATIBILITY
. - The
Activity
class will now execute back key presses on the key up instead of key down, to be able to detect canceled presses from virtual keys. - The
TabWidget
class will use a new color scheme for tabs. In the new scheme, the foreground tab has a medium gray background the background tabs have a dark gray background.
Constant Value: 5 (0x00000005)
ECLAIR_0_1
public static final int ECLAIR_0_1
E incremental update.
Released publicly as Android 2.0.1 in December 2009.
Constant Value: 6 (0x00000006)
ECLAIR_MR1
public static final int ECLAIR_MR1
E MR1.
Released publicly as Android 2.1 in January 2010.
Constant Value: 7 (0x00000007)
FROYO
public static final int FROYO
F.
Released publicly as Android 2.2 in May 2010.
Constant Value: 8 (0x00000008)
GINGERBREAD
public static final int GINGERBREAD
G.
Released publicly as Android 2.3 in December 2010.
Applications targeting this or a later release will get these new changes in behavior:
- The application's notification icons will be shown on the new dark status bar background, so must be visible in this situation.
Constant Value: 9 (0x00000009)
GINGERBREAD_MR1
public static final int GINGERBREAD_MR1
G MR1.
Released publicly as Android 2.3.3 in February 2011.
Constant Value: 10 (0x0000000a)
HONEYCOMB
public static final int HONEYCOMB
H.
Released publicly as Android 3.0 in February 2011.
Applications targeting this or a later release will get these new changes in behavior:
- The default theme for applications is now dark holographic:
R.style.Theme_Holo
. - On large screen devices that do not have a physical menu button, the soft (compatibility) menu is disabled.
- The activity lifecycle has changed slightly as per
Activity
. - An application will crash if it does not call through
to the super implementation of its
Activity.onPause()
method. - When an application requires a permission to access one of its components (activity, receiver, service, provider), this permission is no longer enforced when the application wants to access its own component. This means it can require a permission on a component that it does not itself hold and still access that component.
-
Context.getSharedPreferences()
will not automatically reload the preferences if they have changed on storage, unlessContext.MODE_MULTI_PROCESS
is used. -
ViewGroup.setMotionEventSplittingEnabled(boolean)
will default to true. -
WindowManager.LayoutParams.FLAG_SPLIT_TOUCH
is enabled by default on windows. -
PopupWindow.isSplitTouchEnabled()
will return true by default. -
GridView
andListView
will useView.setActivated
for selected items if they do not implementCheckable
. -
Scroller
will be constructed with "flywheel" behavior enabled by default.
Constant Value: 11 (0x0000000b)
HONEYCOMB_MR1
public static final int HONEYCOMB_MR1
H MR1.
Released publicly as Android 3.1 in May 2011.
Constant Value: 12 (0x0000000c)
HONEYCOMB_MR2
public static final int HONEYCOMB_MR2
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
HONEYCOMB
or later; it had been 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
Configuration.screenWidthDp
,
Configuration.screenHeightDp
, and
Configuration.smallestScreenWidthDp
.
Supplying these in <supports-screens> as per
ApplicationInfo.requiresSmallestWidthDp
,
ApplicationInfo.compatibleWidthLimitDp
, and
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
PackageManager.FEATURE_SCREEN_PORTRAIT
andPackageManager.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.AsyncTask
will use the serial executor by default when callingAsyncTask.execute(Params)
.ActivityInfo.configChanges
will have theActivityInfo.CONFIG_SCREEN_SIZE
andActivityInfo.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.
Constant Value: 13 (0x0000000d)
ICE_CREAM_SANDWICH
public static final int ICE_CREAM_SANDWICH
I.
Released publicly as Android 4.0 in October 2011.
Applications targeting this or a later release will get these new changes in behavior:
- For devices without a dedicated menu key, the software compatibility menu key will not be shown even on phones. By targeting Ice Cream Sandwich or later, your UI must always have its own menu UI affordance if needed, on both tablets and phones. The ActionBar will take care of this for you.
- 2d drawing hardware acceleration is now turned on by default.
You can use
android:hardwareAccelerated
to turn it off if needed, although this is strongly discouraged since it will result in poor performance on larger screen devices. - The default theme for applications is now the "device default" theme:
R.style.Theme_DeviceDefault
. This may be the holo dark theme or a different dark theme defined by the specific device. TheR.style.Theme_Holo
family must not be modified for a device to be considered compatible. Applications that explicitly request a theme from the Holo family will be guaranteed that these themes will not change character within the same platform version. Applications that wish to blend in with the device should use a theme from theR.style.Theme_DeviceDefault
family. - Managed cursors can now throw an exception if you directly close the cursor yourself without stopping the management of it; previously failures would be silently ignored.
- The fadingEdge attribute on views will be ignored (fading edges is no longer a standard part of the UI). A new requiresFadingEdge attribute allows applications to still force fading edges on for special cases.
-
Context.bindService()
will not automatically add inContext.BIND_WAIVE_PRIORITY
. - App Widgets will have standard padding automatically added around them, rather than relying on the padding being baked into the widget itself.
- An exception will be thrown if you try to change the type of a window after it has been added to the window manager. Previously this would result in random incorrect behavior.
-
AnimationSet
will parse out the duration, fillBefore, fillAfter, repeatMode, and startOffset XML attributes that are defined. -
ActionBar.setHomeButtonEnabled()
is false by default.
Constant Value: 14 (0x0000000e)
ICE_CREAM_SANDWICH_MR1
public static final int ICE_CREAM_SANDWICH_MR1
I MR1.
Released publicly as Android 4.03 in December 2011.
Constant Value: 15 (0x0000000f)
JELLY_BEAN
public static final int JELLY_BEAN
J.
Released publicly as Android 4.1 in July 2012.
Applications targeting this or a later release will get these new changes in behavior:
- You must explicitly request the
Manifest.permission.READ_CALL_LOG
and/orManifest.permission.WRITE_CALL_LOG
permissions; access to the call log is no longer implicitly provided throughManifest.permission.READ_CONTACTS
andManifest.permission.WRITE_CONTACTS
. -
RemoteViews
will throw an exception if setting an onClick handler for views being generated by aRemoteViewsService
for a collection container; previously this just resulted in a warning log message. - New
ActionBar
policy for embedded tabs: embedded tabs are now always stacked in the action bar when in portrait mode, regardless of the size of the screen. -
WebSettings.setAllowFileAccessFromFileURLs
andWebSettings.setAllowUniversalAccessFromFileURLs
default to false. - Calls to
PackageManager.setComponentEnabledSetting
will now throw an IllegalArgumentException if the given component class name does not exist in the application's manifest. -
NfcAdapter.setNdefPushMessage
,NfcAdapter.setNdefPushMessageCallback
andNfcAdapter.setOnNdefPushCompleteCallback
will throw IllegalStateException if called after the Activity has been destroyed. - Accessibility services must require the new
Manifest.permission.BIND_ACCESSIBILITY_SERVICE
permission or they will not be available for use. -
AccessibilityServiceInfo.FLAG_INCLUDE_NOT_IMPORTANT_VIEWS
must be set for unimportant views to be included in queries.
Constant Value: 16 (0x00000010)
JELLY_BEAN_MR1
public static final int JELLY_BEAN_MR1
J MR1.
Released publicly as Android 4.2 in November 2012.
Applications targeting this or a later release will get these new changes in behavior:
- Content Providers: The default value of
android:exported
is nowfalse
. See the android:exported section in the provider documentation for more details. View.getLayoutDirection()
can return different values thanView.LAYOUT_DIRECTION_LTR
based on the locale etc.-
WebView.addJavascriptInterface
requires explicit annotations on methods for them to be accessible from Javascript.
Constant Value: 17 (0x00000011)
JELLY_BEAN_MR2
public static final int JELLY_BEAN_MR2
J MR2.
Released publicly as Android 4.3 in July 2013.
Constant Value: 18 (0x00000012)
KITKAT
public static final int KITKAT
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.
- The default result of
PreferenceActivity.isValueFragment
becomes false instead of true. - In
WebView
, apps targeting earlier versions will have JS URLs evaluated directly and any result of the evaluation will not replace the current page content. Apps targetting KITKAT or later that load a JS URL will have the result of that URL replace the content of the current page -
AlarmManager.set
becomes interpreted as an inexact value, to give the system more flexibility in scheduling alarms. -
Context.getSharedPreferences
no longer allows a null name. -
RelativeLayout
changes to compute wrapped content margins correctly. -
ActionBar
's window content overlay is allowed to be drawn. - The
Manifest.permission.READ_EXTERNAL_STORAGE
permission is now always enforced. - Access to package-specific external storage directories belonging
to the calling app no longer requires the
Manifest.permission.READ_EXTERNAL_STORAGE
orManifest.permission.WRITE_EXTERNAL_STORAGE
permissions.
Constant Value: 19 (0x00000013)
KITKAT_WATCH
public static final int KITKAT_WATCH
K for watches.
Released publicly as Android 4.4W in June 2014.
Applications targeting this or a later release will get these new changes in behavior:
AlertDialog
might not have a default background if the theme does not specify one.
Constant Value: 20 (0x00000014)
LOLLIPOP
public static final int LOLLIPOP
L.
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.
-
Context.bindService
now requires an explicit Intent, and will throw an exception if given an implicit Intent. -
Notification.Builder
will not have the colors of their various notification elements adjusted to better match the new material design look. -
Message
will validate that a message is not currently in use when it is recycled. - Hardware accelerated drawing in windows will be enabled automatically in most places.
-
Spinner
throws an exception if attaching an adapter with more than one item type. - If the app is a launcher, the launcher will be available to the user
even when they are using corporate profiles (which requires that the app
use
LauncherApps
to correctly populate its apps UI). - Calling
Service.stopForeground
with removeNotification false will modify the still posted notification so that it is no longer forced to be ongoing. - A
DreamService
must require theManifest.permission.BIND_DREAM_SERVICE
permission to be usable.
Constant Value: 21 (0x00000015)
LOLLIPOP_MR1
public static final int LOLLIPOP_MR1
L MR1.
Released publicly as Android 5.1 in March 2015.
For more information about this release, see the Android 5.1 APIs.
Constant Value: 22 (0x00000016)
M
public static final int M
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.
- Runtime permissions. Dangerous permissions are no longer granted at
install time, but must be requested by the application at runtime through
Activity.requestPermissions(String, int)
. - Bluetooth and Wi-Fi scanning now requires holding the location permission.
-
AlarmManager.setTimeZone
will fail if the given timezone is non-Olson. - Activity transitions will only return shared elements mapped in the returned view hierarchy back to the calling activity.
-
View
allows a number of behaviors that may break existing apps: Canvas throws an exception if restore() is called too many times, widgets may return a hint size when returning UNSPECIFIED measure specs, and it will respect the attributesR.attr.foreground
,R.attr.foregroundGravity
,R.attr.foregroundTint
, andR.attr.foregroundTintMode
. -
MotionEvent.getButtonState
will no longer reportMotionEvent.BUTTON_PRIMARY
andMotionEvent.BUTTON_SECONDARY
as synonyms forMotionEvent.BUTTON_STYLUS_PRIMARY
andMotionEvent.BUTTON_STYLUS_SECONDARY
. -
ScrollView
now respects the layout param margins when measuring.
Constant Value: 23 (0x00000017)
N
public static final int N
N.
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.
-
DownloadManager.Request.setAllowedNetworkTypes
will disable "allow over metered" when specifying onlyDownloadManager.Request.NETWORK_WIFI
. -
DownloadManager
no longer allows access to raw file paths. -
Notification.Builder.setShowWhen
must be called explicitly to have the time shown, and various other changes inNotification.Builder
to how notifications are shown. Context.MODE_WORLD_READABLE
andContext.MODE_WORLD_WRITEABLE
are no longer supported.FileUriExposedException
will be thrown to applications.- Applications will see global drag and drops as per
View.DRAG_FLAG_GLOBAL
. WebView.evaluateJavascript
will not persist state from an empty WebView.AnimatorSet
will not ignore calls to end() before start().AlarmManager.cancel
will throw a NullPointerException if given a null operation.FragmentManager
will ensure fragments have been created before being placed on the back stack.FragmentManager
restores fragments inFragment.onCreate
rather than after the method returns.R.attr.resizeableActivity
defaults to true.AnimatedVectorDrawable
throws exceptions when opening invalid VectorDrawable animations.ViewGroup.MarginLayoutParams
will no longer be dropped when converting between some types of layout params (such asLinearLayout.LayoutParams
toRelativeLayout.LayoutParams
).- Your application processes will not be killed when the device density changes.
- Drag and drop. After a view receives the
DragEvent.ACTION_DRAG_ENTERED
event, when the drag shadow moves into a descendant view that can accept the data, the view receives theDragEvent.ACTION_DRAG_EXITED
event and won\u2019t receiveDragEvent.ACTION_DRAG_LOCATION
andDragEvent.ACTION_DROP
events while the drag shadow is within that descendant view, even if the descendant view returnsfalse
from its handler for these events.
Constant Value: 24 (0x00000018)
N_MR1
public static final int N_MR1
N MR1.
Released publicly as Android 7.1 in October 2016.
For more information about this release, see Android 7.1 for Developers.
Constant Value: 25 (0x00000019)
O
public static final int O
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.
- Background execution limits are applied to the application.
- The behavior of AccountManager's
AccountManager.getAccountsByType(String)
,AccountManager.getAccountsByTypeAndFeatures(String, String, AccountManagerCallback, Handler)
, andAccountManager.hasFeatures(Account, String, AccountManagerCallback, Handler)
has changed as documented there. ActivityManager.RunningAppProcessInfo.IMPORTANCE_PERCEPTIBLE_PRE_26
is now returned asActivityManager.RunningAppProcessInfo.IMPORTANCE_PERCEPTIBLE
.- The
NotificationManager
now requires the use of notification channels. - Changes to the strict mode that are set in
Application.onCreate
will no longer be clobbered after that function returns. - A shared library apk with native code will have that native code included in the library path of its clients.
Context.getSharedPreferences
in credential encrypted storage will throw an exception before the user is unlocked.- Attempting to retrieve a
Context#FINGERPRINT_SERVICE
on a device that does not support that feature will now throw a runtime exception. Fragment
will stop any active view animations when the fragment is stopped.- Some compatibility code in Resources that attempts to use the default Theme the app may be using will be turned off, requiring the app to explicitly request resources with the right theme.
ContentResolver.notifyChange
andContentResolver.registerContentObserver
will throw a SecurityException if the caller does not have permission to access the provider (or the provider doesn't exit); otherwise the call will be silently ignored.CameraDevice.createCaptureRequest
will enableCaptureRequest.CONTROL_ENABLE_ZSL
by default for still image capture.- WallpaperManager's
WallpaperManager.getWallpaperFile(int)
,WallpaperManager.getDrawable()
,WallpaperManager.getFastDrawable()
,WallpaperManager.peekDrawable()
, andWallpaperManager.peekFastDrawable()
will throw an exception if you can not access the wallpaper. - The behavior of
UsbDeviceConnection.requestWait
is modified as per the documentation there. StrictMode.VmPolicy.Builder.detectAll
will also enableStrictMode.VmPolicy.Builder#detectContentUriWithoutPermission
andStrictMode.VmPolicy.Builder#detectUntaggedSockets
.StrictMode.ThreadPolicy.Builder.detectAll
will also enableStrictMode.ThreadPolicy.Builder#detectUnbufferedIo
.DocumentsContract
's various methods will throw failure exceptions back to the caller instead of returning null.View.hasFocusable
now includes auto-focusable views.SurfaceView
will no longer always change the underlying Surface object when something about it changes; apps need to look at the current state of the object to determine which things they are interested in have changed.WindowManager.LayoutParams.TYPE_APPLICATION_OVERLAY
must be used for overlay windows, other system overlay window types are not allowed.ViewTreeObserver.addOnDrawListener
will throw an exception if called from within onDraw.Canvas.setBitmap
will no longer preserve the current matrix and clip stack of the canvas.ListPopupWindow.setHeight
will throw an exception if a negative height is supplied.TextView
will use internationalized input for numbers, dates, and times.Toast
must be used for showing toast windows; the toast window type can not be directly used.WifiManager.getConnectionInfo
requires that the caller hold the location permission to return BSSID/SSIDWifiP2pManager.requestPeers
requires the caller hold the location permission.R.attr.maxAspectRatio
defaults to 0, meaning there is no restriction on the app's maximum aspect ratio (so it can be stretched to fill larger screens).R.attr.focusable
defaults to a new state (auto
) where it will inherit the value ofR.attr.clickable
unless explicitly overridden.- A default theme-appropriate focus-state highlight will be supplied to all Views
which don't provide a focus-state drawable themselves. This can be disabled by setting
R.attr.defaultFocusHighlightEnabled
to false.
Constant Value: 26 (0x0000001a)
O_MR1
public static final int O_MR1
O MR1.
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.
- Apps exporting and linking to apk shared libraries must explicitly enumerate all signing certificates in a consistent order.
R.attr.screenOrientation
can not be used to request a fixed orientation if the associated activity is not fullscreen and opaque.
Constant Value: 27 (0x0000001b)
P
public static final int P
P.
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.
Service.startForeground
requires that apps hold the permissionManifest.permission.FOREGROUND_SERVICE
.LinearLayout
will always remeasure weighted children, even if there is no excess space.
Constant Value: 28 (0x0000001c)
Q
public static final int Q
Q.
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.
Constant Value: 29 (0x0000001d)
R
public static final int R
R.
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.
- Behavior changes: all apps
- Behavior changes: Apps targeting Android 11
- Updates to non-SDK interface restrictions in Android 11
Constant Value: 30 (0x0000001e)
S_V2
public static final int S_V2
S V2. Once more unto the breach, dear friends, once more.
Constant Value: 32 (0x00000020)
TIRAMISU
public static final int TIRAMISU
Tiramisu.
Constant Value: 33 (0x00000021)
UPSIDE_DOWN_CAKE
public static final int UPSIDE_DOWN_CAKE
Upside Down Cake.
Constant Value: 34 (0x00000022)
VANILLA_ICE_CREAM
public static final int VANILLA_ICE_CREAM
Vanilla Ice Cream.
Constant Value: 35 (0x00000023)
Public constructors
VERSION_CODES
public VERSION_CODES ()