Share via


Build.VERSION.SdkIntFull Property

Definition

The major and minor SDK version of the software currently running on this hardware device.

[Android.Runtime.Register("SDK_INT_FULL", ApiSince=36)]
public static int SdkIntFull { get; }
[<Android.Runtime.Register("SDK_INT_FULL", ApiSince=36)>]
static member SdkIntFull : int

Property Value

Attributes

Remarks

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 android.os.Build.VERSION_CODES_FULL.

Java documentation for android.os.Build.VERSION.SDK_INT_FULL.

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to