Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b56b9ada authored by Mårten Kongstad's avatar Mårten Kongstad Committed by Android (Google) Code Review
Browse files

Merge "Add SDK_MINOR_INT" into main

parents da03f3a7 ec350061
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -32771,6 +32771,7 @@ package android.os {
    field @NonNull public static final String RELEASE_OR_PREVIEW_DISPLAY;
    field @Deprecated public static final String SDK;
    field public static final int SDK_INT;
    field @FlaggedApi("android.sdk.major_minor_versioning_scheme") public static final int SDK_MINOR_INT;
    field public static final String SECURITY_PATCH;
  }
+25 −0
Original line number Diff line number Diff line
@@ -17,6 +17,7 @@
package android.os;

import android.Manifest;
import android.annotation.FlaggedApi;
import android.annotation.NonNull;
import android.annotation.Nullable;
import android.annotation.RequiresPermission;
@@ -28,6 +29,7 @@ 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.DeviceProperties;
import android.sysprop.SocProperties;
import android.sysprop.TelephonyProperties;
@@ -399,11 +401,34 @@ public class Build {
         * device. This value never changes while a device is booted, but it may
         * increase when the hardware manufacturer provides an OTA update.
         * <p>
         * Together with {@link SDK_MINOR_INT}, this constant defines the
         * <pre>major.minor</pre> version of Android. <pre>SDK_INT</pre> is
         * increased and <pre>SDK_MINOR_INT</pre> is set to 0 on new Android
         * dessert releases. Between these, Android may also release so called
         * minor releases where <pre>SDK_INT</pre> remains unchanged and
         * <pre>SDK_MINOR_INT</pre> is increased. Minor releases can add new
         * APIs, and have stricter guarantees around backwards compatibility
         * (e.g. no changes gated by <pre>targetSdkVersion</pre>) compared to
         * major releases.
         * <p>
         * Possible values are defined in {@link Build.VERSION_CODES}.
         */
        public static final int SDK_INT = SystemProperties.getInt(
                "ro.build.version.sdk", 0);

        /**
         * The 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.
         * <p>
         * Together with {@link SDK_INT}, this constant defines the
         * <pre>major.minor</pre> version of Android. See {@link SDK_INT} for
         * more information.
         */
        @FlaggedApi(Flags.FLAG_MAJOR_MINOR_VERSIONING_SCHEME)
        public static final int SDK_MINOR_INT = SystemProperties.getInt(
                "ro.build.version.sdk_minor", 0);

        /**
         * The SDK version of the software that <em>initially</em> shipped on
         * this hardware device. It <em>never</em> changes during the lifetime