blob: f5426cd9203d3625219fd47a98e3bfd7e650b354 [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001/*
2 * Copyright (C) 2007 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package android.os;
18
Svet Ganov37e43272016-09-09 16:01:32 -070019import android.Manifest;
Anton Hansson81f76a02018-10-04 18:40:22 +010020import android.annotation.NonNull;
Svet Ganov37e43272016-09-09 16:01:32 -070021import android.annotation.RequiresPermission;
Michael Groover6d20d752018-10-01 16:14:50 -070022import android.annotation.SuppressAutoDoc;
Svet Ganovae0e03a2016-02-25 18:22:10 -080023import android.annotation.SystemApi;
Dianne Hackborn337e01a2018-02-27 17:16:37 -080024import android.annotation.TestApi;
Andrei Onea24ec3212019-03-15 17:35:05 +000025import android.annotation.UnsupportedAppUsage;
Michael Groover6d20d752018-10-01 16:14:50 -070026import android.app.ActivityThread;
Dianne Hackborna47d0452017-11-21 15:04:57 -080027import android.app.Application;
Svet Ganov37e43272016-09-09 16:01:32 -070028import android.content.Context;
Jeff Sharkey55687722014-04-09 18:07:19 -070029import android.text.TextUtils;
Jeff Sharkeybdd44912014-04-11 16:30:14 -070030import android.util.Slog;
Dianne Hackborna47d0452017-11-21 15:04:57 -080031import android.view.View;
Jeff Sharkey55687722014-04-09 18:07:19 -070032
Doug Zongkerad2171a2011-06-14 11:07:24 -070033import com.android.internal.telephony.TelephonyProperties;
Jeff Sharkey2cffc7d2014-11-14 13:57:53 -080034
Narayan Kamatheff258c2014-09-30 13:20:57 +010035import dalvik.system.VMRuntime;
Doug Zongkerad2171a2011-06-14 11:07:24 -070036
Anton Hansson91b54f12018-09-24 18:24:19 +010037import java.util.ArrayList;
38import java.util.List;
Jeff Sharkey2cffc7d2014-11-14 13:57:53 -080039import java.util.Objects;
40
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080041/**
42 * Information about the current build, extracted from system properties.
43 */
44public class Build {
Jeff Sharkeybdd44912014-04-11 16:30:14 -070045 private static final String TAG = "Build";
46
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080047 /** Value used for when a build property is unknown. */
Ficus Kirkpatrick71de7852010-01-08 13:10:51 -080048 public static final String UNKNOWN = "unknown";
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080049
50 /** Either a changelist number, or a label like "M4-rc20". */
51 public static final String ID = getString("ro.build.id");
52
53 /** A build ID string meant for displaying to the user */
54 public static final String DISPLAY = getString("ro.build.display.id");
55
56 /** The name of the overall product. */
57 public static final String PRODUCT = getString("ro.product.name");
58
59 /** The name of the industrial design. */
60 public static final String DEVICE = getString("ro.product.device");
61
62 /** The name of the underlying board, like "goldfish". */
63 public static final String BOARD = getString("ro.product.board");
64
Narayan Kamath1adf4002014-07-12 11:46:37 +010065 /**
66 * The name of the instruction set (CPU type + ABI convention) of native code.
67 *
68 * @deprecated Use {@link #SUPPORTED_ABIS} instead.
69 */
70 @Deprecated
Narayan Kamatheff258c2014-09-30 13:20:57 +010071 public static final String CPU_ABI;
Dianne Hackbornb1811182009-05-21 15:45:42 -070072
Narayan Kamath1adf4002014-07-12 11:46:37 +010073 /**
74 * The name of the second instruction set (CPU type + ABI convention) of native code.
75 *
76 * @deprecated Use {@link #SUPPORTED_ABIS} instead.
77 */
78 @Deprecated
Narayan Kamatheff258c2014-09-30 13:20:57 +010079 public static final String CPU_ABI2;
Ficus Kirkpatrickfa9cafa2010-01-06 17:37:13 -080080
Dianne Hackbornd62ad4f2009-05-19 19:06:25 -070081 /** The manufacturer of the product/hardware. */
82 public static final String MANUFACTURER = getString("ro.product.manufacturer");
83
Dirk Dougherty491b40d2013-10-29 18:33:29 -070084 /** The consumer-visible brand with which the product/hardware will be associated, if any. */
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080085 public static final String BRAND = getString("ro.product.brand");
86
87 /** The end-user-visible name for the end product. */
88 public static final String MODEL = getString("ro.product.model");
89
Doug Zongker74885ef2010-02-02 17:39:26 -080090 /** The system bootloader version number. */
Dan Egnor42471dd2010-01-07 17:25:22 -080091 public static final String BOOTLOADER = getString("ro.bootloader");
92
Doug Zongkerad2171a2011-06-14 11:07:24 -070093 /**
94 * The radio firmware version number.
95 *
96 * @deprecated The radio firmware version is frequently not
97 * available when this class is initialized, leading to a blank or
98 * "unknown" value for this string. Use
99 * {@link #getRadioVersion} instead.
100 */
101 @Deprecated
102 public static final String RADIO = getString(TelephonyProperties.PROPERTY_BASEBAND_VERSION);
Dan Egnor42471dd2010-01-07 17:25:22 -0800103
Doug Zongker74885ef2010-02-02 17:39:26 -0800104 /** The name of the hardware (from the kernel command line or /proc). */
105 public static final String HARDWARE = getString("ro.hardware");
Dan Egnor42471dd2010-01-07 17:25:22 -0800106
Griff Hazend3c454d2016-03-25 07:30:34 -0700107 /**
108 * Whether this build was for an emulator device.
109 * @hide
110 */
Wale Ogunwale691af682019-02-11 03:09:10 -0800111 @TestApi
Griff Hazend3c454d2016-03-25 07:30:34 -0700112 public static final boolean IS_EMULATOR = getString("ro.kernel.qemu").equals("1");
113
Svet Ganov37e43272016-09-09 16:01:32 -0700114 /**
115 * A hardware serial number, if available. Alphanumeric only, case-insensitive.
Michael Groover1279ff92019-05-29 14:19:16 -0700116 * This field is always set to {@link Build#UNKNOWN}.
Svet Ganov37e43272016-09-09 16:01:32 -0700117 *
118 * @deprecated Use {@link #getSerial()} instead.
119 **/
120 @Deprecated
121 // IMPORTANT: This field should be initialized via a function call to
122 // prevent its value being inlined in the app during compilation because
123 // we will later set it to the value based on the app's target SDK.
124 public static final String SERIAL = getString("no.such.thing");
125
126 /**
Kevin Hufnagled6ebb552017-05-16 16:48:10 -0700127 * Gets the hardware serial number, if available.
128 *
129 * <p class="note"><b>Note:</b> Root access may allow you to modify device identifiers, such as
130 * the hardware serial number. If you change these identifiers, you can use
131 * <a href="/training/articles/security-key-attestation.html">key attestation</a> to obtain
132 * proof of the device's original identifiers.
133 *
Michael Grooverb0401fb2019-05-09 19:35:16 -0700134 * <p>Requires Permission: READ_PRIVILEGED_PHONE_STATE, for the calling app to be the device or
135 * profile owner and have the READ_PHONE_STATE permission, or that the calling app has carrier
136 * privileges (see {@link android.telephony.TelephonyManager#hasCarrierPrivileges}). The profile
137 * owner is an app that owns a managed profile on the device; for more details see <a
138 * href="https://developer.android.com/work/managed-profiles">Work profiles</a>. Profile owner
139 * access is deprecated and will be removed in a future release.
Michael Groover6d20d752018-10-01 16:14:50 -0700140 *
Michael Grooverb0401fb2019-05-09 19:35:16 -0700141 * <p>If the calling app does not meet one of these requirements then this method will behave
142 * as follows:
143 *
144 * <ul>
145 * <li>If the calling app's target SDK is API level 28 or lower and the app has the
146 * READ_PHONE_STATE permission then {@link Build#UNKNOWN} is returned.</li>
147 * <li>If the calling app's target SDK is API level 28 or lower and the app does not have
148 * the READ_PHONE_STATE permission, or if the calling app is targeting API level 29 or
149 * higher, then a SecurityException is thrown.</li>
150 * </ul>
151 * *
Kevin Hufnagled6ebb552017-05-16 16:48:10 -0700152 * @return The serial number if specified.
Svet Ganov37e43272016-09-09 16:01:32 -0700153 */
Michael Groover6d20d752018-10-01 16:14:50 -0700154 @SuppressAutoDoc // No support for device / profile owner.
155 @RequiresPermission(Manifest.permission.READ_PRIVILEGED_PHONE_STATE)
Svet Ganov37e43272016-09-09 16:01:32 -0700156 public static String getSerial() {
157 IDeviceIdentifiersPolicyService service = IDeviceIdentifiersPolicyService.Stub
158 .asInterface(ServiceManager.getService(Context.DEVICE_IDENTIFIERS_SERVICE));
159 try {
Michael Groover6d20d752018-10-01 16:14:50 -0700160 Application application = ActivityThread.currentApplication();
161 String callingPackage = application != null ? application.getPackageName() : null;
162 return service.getSerialForPackage(callingPackage);
Svet Ganov37e43272016-09-09 16:01:32 -0700163 } catch (RemoteException e) {
164 e.rethrowFromSystemServer();
165 }
166 return UNKNOWN;
167 }
Ramin Zaghi1378aba2014-02-28 15:03:19 +0000168
169 /**
Narayan Kamath0f206a12014-04-12 11:41:13 +0100170 * An ordered list of ABIs supported by this device. The most preferred ABI is the first
171 * element in the list.
172 *
173 * See {@link #SUPPORTED_32_BIT_ABIS} and {@link #SUPPORTED_64_BIT_ABIS}.
Ramin Zaghi1378aba2014-02-28 15:03:19 +0000174 */
Torne (Richard Coles)ff701a62014-07-30 12:11:15 +0100175 public static final String[] SUPPORTED_ABIS = getStringList("ro.product.cpu.abilist", ",");
Ramin Zaghi1378aba2014-02-28 15:03:19 +0000176
Narayan Kamath0f206a12014-04-12 11:41:13 +0100177 /**
178 * An ordered list of <b>32 bit</b> ABIs supported by this device. The most preferred ABI
179 * is the first element in the list.
180 *
181 * See {@link #SUPPORTED_ABIS} and {@link #SUPPORTED_64_BIT_ABIS}.
Narayan Kamath0f206a12014-04-12 11:41:13 +0100182 */
Torne (Richard Coles)da8c0372014-05-14 16:17:26 +0100183 public static final String[] SUPPORTED_32_BIT_ABIS =
Torne (Richard Coles)ff701a62014-07-30 12:11:15 +0100184 getStringList("ro.product.cpu.abilist32", ",");
Narayan Kamath0f206a12014-04-12 11:41:13 +0100185
186 /**
187 * An ordered list of <b>64 bit</b> ABIs supported by this device. The most preferred ABI
188 * is the first element in the list.
189 *
190 * See {@link #SUPPORTED_ABIS} and {@link #SUPPORTED_32_BIT_ABIS}.
Narayan Kamath0f206a12014-04-12 11:41:13 +0100191 */
Torne (Richard Coles)da8c0372014-05-14 16:17:26 +0100192 public static final String[] SUPPORTED_64_BIT_ABIS =
Torne (Richard Coles)ff701a62014-07-30 12:11:15 +0100193 getStringList("ro.product.cpu.abilist64", ",");
Narayan Kamath0f206a12014-04-12 11:41:13 +0100194
Jeff Sharkeyc6091162018-06-29 17:15:40 -0600195 /** {@hide} */
196 @TestApi
197 public static boolean is64BitAbi(String abi) {
198 return VMRuntime.is64BitAbi(abi);
199 }
Narayan Kamath0f206a12014-04-12 11:41:13 +0100200
Narayan Kamatheff258c2014-09-30 13:20:57 +0100201 static {
202 /*
203 * Adjusts CPU_ABI and CPU_ABI2 depending on whether or not a given process is 64 bit.
204 * 32 bit processes will always see 32 bit ABIs in these fields for backward
205 * compatibility.
206 */
207 final String[] abiList;
208 if (VMRuntime.getRuntime().is64Bit()) {
209 abiList = SUPPORTED_64_BIT_ABIS;
210 } else {
211 abiList = SUPPORTED_32_BIT_ABIS;
212 }
213
214 CPU_ABI = abiList[0];
215 if (abiList.length > 1) {
216 CPU_ABI2 = abiList[1];
217 } else {
218 CPU_ABI2 = "";
219 }
220 }
221
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800222 /** Various version strings. */
223 public static class VERSION {
224 /**
225 * The internal value used by the underlying source control to
226 * represent this build. E.g., a perforce changelist number
227 * or a git hash.
228 */
229 public static final String INCREMENTAL = getString("ro.build.version.incremental");
230
231 /**
Daniel Colascioned1520aa2018-04-06 08:12:05 -0700232 * The user-visible version string. E.g., "1.0" or "3.4b5" or "bananas".
233 *
234 * This field is an opaque string. Do not assume that its value
235 * has any particular structure or that values of RELEASE from
236 * different releases can be somehow ordered.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800237 */
238 public static final String RELEASE = getString("ro.build.version.release");
239
240 /**
Dianne Hackbornc3f74492015-08-12 16:10:58 -0700241 * The base OS build the product is based on.
242 */
243 public static final String BASE_OS = SystemProperties.get("ro.build.version.base_os", "");
244
245 /**
246 * The user-visible security patch level.
247 */
248 public static final String SECURITY_PATCH = SystemProperties.get(
249 "ro.build.version.security_patch", "");
250
251 /**
Dianne Hackborn851a5412009-05-08 12:06:44 -0700252 * The user-visible SDK version of the framework in its raw String
253 * representation; use {@link #SDK_INT} instead.
Andres Moralescb3fd692015-01-14 10:07:55 -0800254 *
Dianne Hackborn851a5412009-05-08 12:06:44 -0700255 * @deprecated Use {@link #SDK_INT} to easily get this as an integer.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800256 */
Dianne Hackborn4a51c202009-08-21 15:14:02 -0700257 @Deprecated
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800258 public static final String SDK = getString("ro.build.version.sdk");
Dianne Hackborn851a5412009-05-08 12:06:44 -0700259
260 /**
Jeff Sharkey28c660f2017-12-12 13:51:32 -0700261 * The SDK version of the software currently running on this hardware
262 * device. This value never changes while a device is booted, but it may
263 * increase when the hardware manufacturer provides an OTA update.
264 * <p>
265 * Possible values are defined in {@link Build.VERSION_CODES}.
Dianne Hackborn851a5412009-05-08 12:06:44 -0700266 */
267 public static final int SDK_INT = SystemProperties.getInt(
268 "ro.build.version.sdk", 0);
269
270 /**
Jeff Sharkey28c660f2017-12-12 13:51:32 -0700271 * The SDK version of the software that <em>initially</em> shipped on
272 * this hardware device. It <em>never</em> changes during the lifetime
273 * of the device, even when {@link #SDK_INT} increases due to an OTA
274 * update.
275 * <p>
276 * Possible values are defined in {@link Build.VERSION_CODES}.
277 *
278 * @see #SDK_INT
Jeff Sharkey1da8bb12018-03-26 12:50:54 -0600279 * @hide
Jeff Sharkey28c660f2017-12-12 13:51:32 -0700280 */
Jeff Sharkey1da8bb12018-03-26 12:50:54 -0600281 @TestApi
Jeff Sharkey28c660f2017-12-12 13:51:32 -0700282 public static final int FIRST_SDK_INT = SystemProperties
283 .getInt("ro.product.first_api_level", 0);
284
285 /**
Adam Powelle9600302015-05-06 18:13:09 -0700286 * The developer preview revision of a prerelease SDK. This value will always
287 * be <code>0</code> on production platform builds/devices.
288 *
289 * <p>When this value is nonzero, any new API added since the last
290 * officially published {@link #SDK_INT API level} is only guaranteed to be present
291 * on that specific preview revision. For example, an API <code>Activity.fooBar()</code>
292 * might be present in preview revision 1 but renamed or removed entirely in
293 * preview revision 2, which may cause an app attempting to call it to crash
294 * at runtime.</p>
295 *
296 * <p>Experimental apps targeting preview APIs should check this value for
297 * equality (<code>==</code>) with the preview SDK revision they were built for
298 * before using any prerelease platform APIs. Apps that detect a preview SDK revision
299 * other than the specific one they expect should fall back to using APIs from
300 * the previously published API level only to avoid unwanted runtime exceptions.
301 * </p>
302 */
303 public static final int PREVIEW_SDK_INT = SystemProperties.getInt(
304 "ro.build.version.preview_sdk", 0);
305
306 /**
Narayan Kamathb081e072018-12-13 19:09:20 +0000307 * The SDK fingerprint for a given prerelease SDK. This value will always be
308 * {@code REL} on production platform builds/devices.
309 *
310 * <p>When this value is not {@code REL}, it contains a string fingerprint of the API
311 * surface exposed by the preview SDK. Preview platforms with different API surfaces
312 * will have different {@code PREVIEW_SDK_FINGERPRINT}.
313 *
314 * <p>This attribute is intended for use by installers for finer grained targeting of
315 * packages. Applications targeting preview APIs should not use this field and should
316 * instead use {@code PREVIEW_SDK_INT} or use reflection or other runtime checks to
317 * detect the presence of an API or guard themselves against unexpected runtime
318 * behavior.
319 *
320 * @hide
321 */
322 @SystemApi
Narayan Kamath714bf492019-03-08 17:08:07 +0000323 @NonNull public static final String PREVIEW_SDK_FINGERPRINT = SystemProperties.get(
Narayan Kamathb081e072018-12-13 19:09:20 +0000324 "ro.build.version.preview_sdk_fingerprint", "REL");
325
326 /**
Dianne Hackborn851a5412009-05-08 12:06:44 -0700327 * The current development codename, or the string "REL" if this is
328 * a release build.
329 */
330 public static final String CODENAME = getString("ro.build.version.codename");
Dianne Hackborn3b81bc12011-01-15 11:50:52 -0800331
Dianne Hackbornffcda102014-04-24 13:06:27 -0700332 private static final String[] ALL_CODENAMES
Torne (Richard Coles)ff701a62014-07-30 12:11:15 +0100333 = getStringList("ro.build.version.all_codenames", ",");
Dianne Hackbornffcda102014-04-24 13:06:27 -0700334
Dianne Hackborn3b81bc12011-01-15 11:50:52 -0800335 /**
Dianne Hackborn3b81bc12011-01-15 11:50:52 -0800336 * @hide
337 */
Dan Willemsencac5c612019-04-18 13:38:57 -0700338 @TestApi
Andrei Onea24ec3212019-03-15 17:35:05 +0000339 @UnsupportedAppUsage
Dianne Hackbornffcda102014-04-24 13:06:27 -0700340 public static final String[] ACTIVE_CODENAMES = "REL".equals(ALL_CODENAMES[0])
341 ? new String[0] : ALL_CODENAMES;
342
343 /**
344 * The SDK version to use when accessing resources.
345 * Use the current SDK version code. For every active development codename
346 * we are operating under, we bump the assumed resource platform version by 1.
347 * @hide
348 */
Dianne Hackborn337e01a2018-02-27 17:16:37 -0800349 @TestApi
Dianne Hackbornffcda102014-04-24 13:06:27 -0700350 public static final int RESOURCES_SDK_INT = SDK_INT + ACTIVE_CODENAMES.length;
Przemyslaw Szczepaniak73b6bc82017-12-05 11:07:30 +0000351
352 /**
353 * The current lowest supported value of app target SDK. Applications targeting
Narayan Kamath91c361d2018-03-26 18:31:33 +0100354 * lower values may not function on devices running this SDK version. Its possible
355 * values are defined in {@link Build.VERSION_CODES}.
356 *
357 * @hide
Przemyslaw Szczepaniak73b6bc82017-12-05 11:07:30 +0000358 */
359 public static final int MIN_SUPPORTED_TARGET_SDK_INT = SystemProperties.getInt(
360 "ro.build.version.min_supported_target_sdk", 0);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800361 }
362
Dianne Hackborn851a5412009-05-08 12:06:44 -0700363 /**
364 * Enumeration of the currently known SDK version codes. These are the
365 * values that can be found in {@link VERSION#SDK}. Version numbers
366 * increment monotonically with each official platform release.
367 */
368 public static class VERSION_CODES {
369 /**
Dianne Hackborna96cbb42009-05-13 15:06:13 -0700370 * Magic version number for a current development build, which has
371 * not yet turned into an official release.
372 */
Tobias Thierer8bacd9b2017-02-15 20:38:29 +0000373 public static final int CUR_DEVELOPMENT = VMRuntime.SDK_VERSION_CUR_DEVELOPMENT;
Andres Moralescb3fd692015-01-14 10:07:55 -0800374
Dianne Hackborna96cbb42009-05-13 15:06:13 -0700375 /**
Dianne Hackborn851a5412009-05-08 12:06:44 -0700376 * October 2008: The original, first, version of Android. Yay!
377 */
378 public static final int BASE = 1;
Andres Moralescb3fd692015-01-14 10:07:55 -0800379
Dianne Hackborn851a5412009-05-08 12:06:44 -0700380 /**
381 * February 2009: First Android update, officially called 1.1.
382 */
383 public static final int BASE_1_1 = 2;
Andres Moralescb3fd692015-01-14 10:07:55 -0800384
Dianne Hackborn851a5412009-05-08 12:06:44 -0700385 /**
386 * May 2009: Android 1.5.
387 */
388 public static final int CUPCAKE = 3;
Andres Moralescb3fd692015-01-14 10:07:55 -0800389
Dianne Hackborna96cbb42009-05-13 15:06:13 -0700390 /**
Dianne Hackborn0fa35912009-10-23 12:32:45 -0700391 * September 2009: Android 1.6.
Andres Moralescb3fd692015-01-14 10:07:55 -0800392 *
Dianne Hackborna96cbb42009-05-13 15:06:13 -0700393 * <p>Applications targeting this or a later release will get these
394 * new changes in behavior:</p>
395 * <ul>
396 * <li> They must explicitly request the
San Mehat5a3a77d2009-06-01 09:25:28 -0700397 * {@link android.Manifest.permission#WRITE_EXTERNAL_STORAGE} permission to be
Dianne Hackborna96cbb42009-05-13 15:06:13 -0700398 * able to modify the contents of the SD card. (Apps targeting
399 * earlier versions will always request the permission.)
Dianne Hackbornfe77ec82009-08-12 16:53:56 -0700400 * <li> They must explicitly request the
401 * {@link android.Manifest.permission#READ_PHONE_STATE} permission to be
402 * able to be able to retrieve phone state info. (Apps targeting
403 * earlier versions will always request the permission.)
404 * <li> They are assumed to support different screen densities and
405 * sizes. (Apps targeting earlier versions are assumed to only support
406 * medium density normal size screens unless otherwise indicated).
407 * They can still explicitly specify screen support either way with the
408 * supports-screens manifest tag.
Dianne Hackborn81e92762011-10-09 16:00:21 -0700409 * <li> {@link android.widget.TabHost} will use the new dark tab
410 * background design.
Dianne Hackborna96cbb42009-05-13 15:06:13 -0700411 * </ul>
412 */
Dianne Hackbornfe77ec82009-08-12 16:53:56 -0700413 public static final int DONUT = 4;
Andres Moralescb3fd692015-01-14 10:07:55 -0800414
Dianne Hackbornf6f9f2d2009-08-21 16:26:03 -0700415 /**
Dianne Hackborn0fa35912009-10-23 12:32:45 -0700416 * November 2009: Android 2.0
Andres Moralescb3fd692015-01-14 10:07:55 -0800417 *
Dianne Hackbornf6f9f2d2009-08-21 16:26:03 -0700418 * <p>Applications targeting this or a later release will get these
419 * new changes in behavior:</p>
420 * <ul>
421 * <li> The {@link android.app.Service#onStartCommand
422 * Service.onStartCommand} function will return the new
423 * {@link android.app.Service#START_STICKY} behavior instead of the
424 * old compatibility {@link android.app.Service#START_STICKY_COMPATIBILITY}.
Dianne Hackborn8d374262009-09-14 21:21:52 -0700425 * <li> The {@link android.app.Activity} class will now execute back
426 * key presses on the key up instead of key down, to be able to detect
427 * canceled presses from virtual keys.
Mike Cleron76097642009-09-25 17:53:56 -0700428 * <li> The {@link android.widget.TabWidget} class will use a new color scheme
429 * for tabs. In the new scheme, the foreground tab has a medium gray background
430 * the background tabs have a dark gray background.
Dianne Hackbornf6f9f2d2009-08-21 16:26:03 -0700431 * </ul>
432 */
Jeff Hamilton6dc3f4e2009-10-10 12:06:19 -0500433 public static final int ECLAIR = 5;
Andres Moralescb3fd692015-01-14 10:07:55 -0800434
Dianne Hackborn0fa35912009-10-23 12:32:45 -0700435 /**
Dianne Hackborn17787762009-11-12 16:11:36 -0800436 * December 2009: Android 2.0.1
Dianne Hackborn0fa35912009-10-23 12:32:45 -0700437 */
Dianne Hackborn17787762009-11-12 16:11:36 -0800438 public static final int ECLAIR_0_1 = 6;
Andres Moralescb3fd692015-01-14 10:07:55 -0800439
Dianne Hackborn23ef7b42009-11-18 18:20:39 -0800440 /**
441 * January 2010: Android 2.1
442 */
443 public static final int ECLAIR_MR1 = 7;
Andres Moralescb3fd692015-01-14 10:07:55 -0800444
Dianne Hackborn3e03cfa2010-06-13 12:07:00 -0700445 /**
446 * June 2010: Android 2.2
447 */
Adam Powell216bccf2010-02-01 15:03:17 -0800448 public static final int FROYO = 8;
Andres Moralescb3fd692015-01-14 10:07:55 -0800449
Dianne Hackborn3e03cfa2010-06-13 12:07:00 -0700450 /**
Dianne Hackborn9d97b632011-01-23 14:56:39 -0800451 * November 2010: Android 2.3
Dianne Hackborn81e92762011-10-09 16:00:21 -0700452 *
453 * <p>Applications targeting this or a later release will get these
454 * new changes in behavior:</p>
455 * <ul>
456 * <li> The application's notification icons will be shown on the new
457 * dark status bar background, so must be visible in this situation.
458 * </ul>
Dianne Hackborn3e03cfa2010-06-13 12:07:00 -0700459 */
Dianne Hackborn4fa1a222010-10-18 13:10:49 -0700460 public static final int GINGERBREAD = 9;
Andres Moralescb3fd692015-01-14 10:07:55 -0800461
Dianne Hackborn9d97b632011-01-23 14:56:39 -0800462 /**
Dianne Hackbornedf1fc62011-03-17 18:34:48 -0700463 * February 2011: Android 2.3.3.
Dianne Hackborn9d97b632011-01-23 14:56:39 -0800464 */
465 public static final int GINGERBREAD_MR1 = 10;
Dianne Hackbornb1ad5972010-08-02 17:30:33 -0700466
467 /**
Dianne Hackbornedf1fc62011-03-17 18:34:48 -0700468 * February 2011: Android 3.0.
Dianne Hackbornb1ad5972010-08-02 17:30:33 -0700469 *
470 * <p>Applications targeting this or a later release will get these
471 * new changes in behavior:</p>
472 * <ul>
Dianne Hackborn3e6d50c2010-08-23 18:30:44 -0700473 * <li> The default theme for applications is now dark holographic:
474 * {@link android.R.style#Theme_Holo}.
Dianne Hackborn81e92762011-10-09 16:00:21 -0700475 * <li> On large screen devices that do not have a physical menu
476 * button, the soft (compatibility) menu is disabled.
Dianne Hackborn0aae2d42010-12-07 23:51:29 -0800477 * <li> The activity lifecycle has changed slightly as per
478 * {@link android.app.Activity}.
Dianne Hackborn81e92762011-10-09 16:00:21 -0700479 * <li> An application will crash if it does not call through
480 * to the super implementation of its
481 * {@link android.app.Activity#onPause Activity.onPause()} method.
Dianne Hackborn9d97b632011-01-23 14:56:39 -0800482 * <li> When an application requires a permission to access one of
Dianne Hackborn6c2c5fc2011-01-18 17:02:33 -0800483 * its components (activity, receiver, service, provider), this
484 * permission is no longer enforced when the application wants to
485 * access its own component. This means it can require a permission
486 * on a component that it does not itself hold and still access that
487 * component.
Dianne Hackborn81e92762011-10-09 16:00:21 -0700488 * <li> {@link android.content.Context#getSharedPreferences
489 * Context.getSharedPreferences()} will not automatically reload
490 * the preferences if they have changed on storage, unless
491 * {@link android.content.Context#MODE_MULTI_PROCESS} is used.
492 * <li> {@link android.view.ViewGroup#setMotionEventSplittingEnabled}
493 * will default to true.
494 * <li> {@link android.view.WindowManager.LayoutParams#FLAG_SPLIT_TOUCH}
495 * is enabled by default on windows.
496 * <li> {@link android.widget.PopupWindow#isSplitTouchEnabled()
497 * PopupWindow.isSplitTouchEnabled()} will return true by default.
498 * <li> {@link android.widget.GridView} and {@link android.widget.ListView}
499 * will use {@link android.view.View#setActivated View.setActivated}
500 * for selected items if they do not implement {@link android.widget.Checkable}.
501 * <li> {@link android.widget.Scroller} will be constructed with
502 * "flywheel" behavior enabled by default.
Dianne Hackbornb1ad5972010-08-02 17:30:33 -0700503 * </ul>
504 */
Dianne Hackborn9d97b632011-01-23 14:56:39 -0800505 public static final int HONEYCOMB = 11;
Andres Moralescb3fd692015-01-14 10:07:55 -0800506
Dianne Hackbornedf1fc62011-03-17 18:34:48 -0700507 /**
Dianne Hackborna8138732011-05-12 15:45:21 -0700508 * May 2011: Android 3.1.
Dianne Hackbornedf1fc62011-03-17 18:34:48 -0700509 */
510 public static final int HONEYCOMB_MR1 = 12;
Andres Moralescb3fd692015-01-14 10:07:55 -0800511
Dianne Hackborna8138732011-05-12 15:45:21 -0700512 /**
Dianne Hackborn426431a2011-06-09 11:29:08 -0700513 * June 2011: Android 3.2.
Dianne Hackborne6676352011-06-01 16:51:20 -0700514 *
515 * <p>Update to Honeycomb MR1 to support 7 inch tablets, improve
516 * screen compatibility mode, etc.</p>
517 *
518 * <p>As of this version, applications that don't say whether they
519 * support XLARGE screens will be assumed to do so only if they target
520 * {@link #HONEYCOMB} or later; it had been {@link #GINGERBREAD} or
521 * later. Applications that don't support a screen size at least as
522 * large as the current screen will provide the user with a UI to
523 * switch them in to screen size compatibility mode.</p>
Dianne Hackborne289bff2011-06-13 19:33:22 -0700524 *
525 * <p>This version introduces new screen size resource qualifiers
526 * based on the screen size in dp: see
527 * {@link android.content.res.Configuration#screenWidthDp},
528 * {@link android.content.res.Configuration#screenHeightDp}, and
529 * {@link android.content.res.Configuration#smallestScreenWidthDp}.
530 * Supplying these in &lt;supports-screens&gt; as per
531 * {@link android.content.pm.ApplicationInfo#requiresSmallestWidthDp},
532 * {@link android.content.pm.ApplicationInfo#compatibleWidthLimitDp}, and
533 * {@link android.content.pm.ApplicationInfo#largestWidthLimitDp} is
534 * preferred over the older screen size buckets and for older devices
535 * the appropriate buckets will be inferred from them.</p>
536 *
Dianne Hackborn81e92762011-10-09 16:00:21 -0700537 * <p>Applications targeting this or a later release will get these
538 * new changes in behavior:</p>
539 * <ul>
540 * <li><p>New {@link android.content.pm.PackageManager#FEATURE_SCREEN_PORTRAIT}
Dianne Hackborne289bff2011-06-13 19:33:22 -0700541 * and {@link android.content.pm.PackageManager#FEATURE_SCREEN_LANDSCAPE}
Dianne Hackborn81e92762011-10-09 16:00:21 -0700542 * features were introduced in this release. Applications that target
Dianne Hackborne289bff2011-06-13 19:33:22 -0700543 * previous platform versions are assumed to require both portrait and
544 * landscape support in the device; when targeting Honeycomb MR1 or
545 * greater the application is responsible for specifying any specific
546 * orientation it requires.</p>
Dianne Hackborn81e92762011-10-09 16:00:21 -0700547 * <li><p>{@link android.os.AsyncTask} will use the serial executor
548 * by default when calling {@link android.os.AsyncTask#execute}.</p>
549 * <li><p>{@link android.content.pm.ActivityInfo#configChanges
550 * ActivityInfo.configChanges} will have the
551 * {@link android.content.pm.ActivityInfo#CONFIG_SCREEN_SIZE} and
552 * {@link android.content.pm.ActivityInfo#CONFIG_SMALLEST_SCREEN_SIZE}
553 * bits set; these need to be cleared for older applications because
554 * some developers have done absolute comparisons against this value
555 * instead of correctly masking the bits they are interested in.
556 * </ul>
Dianne Hackborna8138732011-05-12 15:45:21 -0700557 */
Dianne Hackborn426431a2011-06-09 11:29:08 -0700558 public static final int HONEYCOMB_MR2 = 13;
Dianne Hackborn3fc982f2011-03-30 16:20:26 -0700559
560 /**
Dianne Hackbornf35fe232011-11-01 19:25:20 -0700561 * October 2011: Android 4.0.
Dianne Hackborn2d6833b2011-06-24 16:04:19 -0700562 *
563 * <p>Applications targeting this or a later release will get these
564 * new changes in behavior:</p>
565 * <ul>
Dianne Hackborn9d0e37e2011-09-22 12:58:54 -0700566 * <li> For devices without a dedicated menu key, the software compatibility
567 * menu key will not be shown even on phones. By targeting Ice Cream Sandwich
568 * or later, your UI must always have its own menu UI affordance if needed,
569 * on both tablets and phones. The ActionBar will take care of this for you.
Dianne Hackborn2d6833b2011-06-24 16:04:19 -0700570 * <li> 2d drawing hardware acceleration is now turned on by default.
571 * You can use
572 * {@link android.R.attr#hardwareAccelerated android:hardwareAccelerated}
573 * to turn it off if needed, although this is strongly discouraged since
574 * it will result in poor performance on larger screen devices.
Adam Powell6e90a362011-08-14 16:48:32 -0700575 * <li> The default theme for applications is now the "device default" theme:
576 * {@link android.R.style#Theme_DeviceDefault}. This may be the
577 * holo dark theme or a different dark theme defined by the specific device.
578 * The {@link android.R.style#Theme_Holo} family must not be modified
579 * for a device to be considered compatible. Applications that explicitly
580 * request a theme from the Holo family will be guaranteed that these themes
581 * will not change character within the same platform version. Applications
582 * that wish to blend in with the device should use a theme from the
583 * {@link android.R.style#Theme_DeviceDefault} family.
Dianne Hackborn9d0e37e2011-09-22 12:58:54 -0700584 * <li> Managed cursors can now throw an exception if you directly close
585 * the cursor yourself without stopping the management of it; previously failures
586 * would be silently ignored.
587 * <li> The fadingEdge attribute on views will be ignored (fading edges is no
588 * longer a standard part of the UI). A new requiresFadingEdge attribute allows
589 * applications to still force fading edges on for special cases.
Dianne Hackborn81e92762011-10-09 16:00:21 -0700590 * <li> {@link android.content.Context#bindService Context.bindService()}
591 * will not automatically add in {@link android.content.Context#BIND_WAIVE_PRIORITY}.
592 * <li> App Widgets will have standard padding automatically added around
593 * them, rather than relying on the padding being baked into the widget itself.
594 * <li> An exception will be thrown if you try to change the type of a
595 * window after it has been added to the window manager. Previously this
596 * would result in random incorrect behavior.
597 * <li> {@link android.view.animation.AnimationSet} will parse out
598 * the duration, fillBefore, fillAfter, repeatMode, and startOffset
599 * XML attributes that are defined.
600 * <li> {@link android.app.ActionBar#setHomeButtonEnabled
601 * ActionBar.setHomeButtonEnabled()} is false by default.
Dianne Hackborn2d6833b2011-06-24 16:04:19 -0700602 * </ul>
Dianne Hackborn3fc982f2011-03-30 16:20:26 -0700603 */
Dianne Hackborn0784cfb2011-09-14 13:48:15 -0700604 public static final int ICE_CREAM_SANDWICH = 14;
Dianne Hackbornf35fe232011-11-01 19:25:20 -0700605
606 /**
Dianne Hackborn81e92762011-10-09 16:00:21 -0700607 * December 2011: Android 4.0.3.
Dianne Hackbornf35fe232011-11-01 19:25:20 -0700608 */
609 public static final int ICE_CREAM_SANDWICH_MR1 = 15;
Dianne Hackborn81e92762011-10-09 16:00:21 -0700610
611 /**
Dianne Hackborn435cdb42012-07-30 17:36:43 -0700612 * June 2012: Android 4.1.
Dianne Hackborn65696252012-03-05 18:49:21 -0800613 *
614 * <p>Applications targeting this or a later release will get these
615 * new changes in behavior:</p>
616 * <ul>
Dianne Hackborn636fd522012-06-05 17:38:50 -0700617 * <li> You must explicitly request the {@link android.Manifest.permission#READ_CALL_LOG}
618 * and/or {@link android.Manifest.permission#WRITE_CALL_LOG} permissions;
619 * access to the call log is no longer implicitly provided through
620 * {@link android.Manifest.permission#READ_CONTACTS} and
621 * {@link android.Manifest.permission#WRITE_CONTACTS}.
622 * <li> {@link android.widget.RemoteViews} will throw an exception if
623 * setting an onClick handler for views being generated by a
624 * {@link android.widget.RemoteViewsService} for a collection container;
625 * previously this just resulted in a warning log message.
626 * <li> New {@link android.app.ActionBar} policy for embedded tabs:
627 * embedded tabs are now always stacked in the action bar when in portrait
628 * mode, regardless of the size of the screen.
629 * <li> {@link android.webkit.WebSettings#setAllowFileAccessFromFileURLs(boolean)
630 * WebSettings.setAllowFileAccessFromFileURLs} and
631 * {@link android.webkit.WebSettings#setAllowUniversalAccessFromFileURLs(boolean)
632 * WebSettings.setAllowUniversalAccessFromFileURLs} default to false.
Dianne Hackborn65696252012-03-05 18:49:21 -0800633 * <li> Calls to {@link android.content.pm.PackageManager#setComponentEnabledSetting
634 * PackageManager.setComponentEnabledSetting} will now throw an
635 * IllegalArgumentException if the given component class name does not
636 * exist in the application's manifest.
Dianne Hackborn636fd522012-06-05 17:38:50 -0700637 * <li> {@link android.nfc.NfcAdapter#setNdefPushMessage
638 * NfcAdapter.setNdefPushMessage},
639 * {@link android.nfc.NfcAdapter#setNdefPushMessageCallback
640 * NfcAdapter.setNdefPushMessageCallback} and
641 * {@link android.nfc.NfcAdapter#setOnNdefPushCompleteCallback
642 * NfcAdapter.setOnNdefPushCompleteCallback} will throw
643 * IllegalStateException if called after the Activity has been destroyed.
644 * <li> Accessibility services must require the new
645 * {@link android.Manifest.permission#BIND_ACCESSIBILITY_SERVICE} permission or
646 * they will not be available for use.
647 * <li> {@link android.accessibilityservice.AccessibilityServiceInfo#FLAG_INCLUDE_NOT_IMPORTANT_VIEWS
648 * AccessibilityServiceInfo.FLAG_INCLUDE_NOT_IMPORTANT_VIEWS} must be set
649 * for unimportant views to be included in queries.
Dianne Hackborn65696252012-03-05 18:49:21 -0800650 * </ul>
Dianne Hackborn81e92762011-10-09 16:00:21 -0700651 */
Dianne Hackbornfa61f0b2012-05-09 21:49:38 -0700652 public static final int JELLY_BEAN = 16;
Dianne Hackborn435cdb42012-07-30 17:36:43 -0700653
654 /**
Dianne Hackborn955d8d62014-10-07 20:17:19 -0700655 * November 2012: Android 4.2, Moar jelly beans!
Nick Kralevichf097b162012-07-28 12:43:48 -0700656 *
657 * <p>Applications targeting this or a later release will get these
658 * new changes in behavior:</p>
659 * <ul>
660 * <li>Content Providers: The default value of {@code android:exported} is now
661 * {@code false}. See
Nick Kralevich2caec6c2012-08-08 11:33:17 -0700662 * <a href="{@docRoot}guide/topics/manifest/provider-element.html#exported">
Nick Kralevichf097b162012-07-28 12:43:48 -0700663 * the android:exported section</a> in the provider documentation for more details.</li>
Dianne Hackbornfc494742012-09-27 16:15:42 -0700664 * <li>{@link android.view.View#getLayoutDirection() View.getLayoutDirection()}
665 * can return different values than {@link android.view.View#LAYOUT_DIRECTION_LTR}
666 * based on the locale etc.
667 * <li> {@link android.webkit.WebView#addJavascriptInterface(Object, String)
668 * WebView.addJavascriptInterface} requires explicit annotations on methods
669 * for them to be accessible from Javascript.
Nick Kralevichf097b162012-07-28 12:43:48 -0700670 * </ul>
Dianne Hackborn435cdb42012-07-30 17:36:43 -0700671 */
672 public static final int JELLY_BEAN_MR1 = 17;
Nick Kralevicha985c3b2013-01-09 16:03:14 -0800673
674 /**
Dianne Hackborn955d8d62014-10-07 20:17:19 -0700675 * July 2013: Android 4.3, the revenge of the beans.
Nick Kralevicha985c3b2013-01-09 16:03:14 -0800676 */
Dianne Hackbornd2eeed62013-04-22 13:04:28 -0700677 public static final int JELLY_BEAN_MR2 = 18;
Dianne Hackborn5d2bfa12013-03-05 10:28:34 -0800678
679 /**
Dianne Hackborn955d8d62014-10-07 20:17:19 -0700680 * October 2013: Android 4.4, KitKat, another tasty treat.
Dianne Hackborn221ea892013-08-04 16:50:16 -0700681 *
682 * <p>Applications targeting this or a later release will get these
Andrew Solovaya861ff72018-08-06 13:43:30 -0700683 * new changes in behavior. For more information about this release, see the
684 * <a href="/about/versions/kitkat/">Android KitKat overview</a>.</p>
Dianne Hackborn221ea892013-08-04 16:50:16 -0700685 * <ul>
Mark Dolinerd0646dc2014-08-27 16:04:02 -0700686 * <li> The default result of
687 * {@link android.preference.PreferenceActivity#isValidFragment(String)
Dianne Hackborn6bc37892013-10-03 11:05:14 -0700688 * PreferenceActivity.isValueFragment} becomes false instead of true.</li>
689 * <li> In {@link android.webkit.WebView}, apps targeting earlier versions will have
690 * JS URLs evaluated directly and any result of the evaluation will not replace
691 * the current page content. Apps targetting KITKAT or later that load a JS URL will
692 * have the result of that URL replace the content of the current page</li>
693 * <li> {@link android.app.AlarmManager#set AlarmManager.set} becomes interpreted as
694 * an inexact value, to give the system more flexibility in scheduling alarms.</li>
695 * <li> {@link android.content.Context#getSharedPreferences(String, int)
696 * Context.getSharedPreferences} no longer allows a null name.</li>
697 * <li> {@link android.widget.RelativeLayout} changes to compute wrapped content
698 * margins correctly.</li>
699 * <li> {@link android.app.ActionBar}'s window content overlay is allowed to be
700 * drawn.</li>
Jeff Sharkey3ec2f602013-10-29 12:21:23 -0700701 * <li>The {@link android.Manifest.permission#READ_EXTERNAL_STORAGE}
702 * permission is now always enforced.</li>
703 * <li>Access to package-specific external storage directories belonging
704 * to the calling app no longer requires the
705 * {@link android.Manifest.permission#READ_EXTERNAL_STORAGE} or
706 * {@link android.Manifest.permission#WRITE_EXTERNAL_STORAGE}
707 * permissions.</li>
Dianne Hackborn221ea892013-08-04 16:50:16 -0700708 * </ul>
Dianne Hackborn5d2bfa12013-03-05 10:28:34 -0800709 */
Dianne Hackborn6bc37892013-10-03 11:05:14 -0700710 public static final int KITKAT = 19;
Dianne Hackborn10ad9822014-03-17 11:28:36 -0700711
712 /**
Dianne Hackborne7a34352015-09-17 14:50:47 -0700713 * June 2014: Android 4.4W. KitKat for watches, snacks on the run.
Justin Koh78b94de2014-05-13 15:48:42 -0700714 *
715 * <p>Applications targeting this or a later release will get these
716 * new changes in behavior:</p>
717 * <ul>
718 * <li>{@link android.app.AlertDialog} might not have a default background if the theme does
719 * not specify one.</li>
720 * </ul>
Jeff Brown1c3f3322014-04-16 13:15:22 -0700721 */
Justin Koh78b94de2014-05-13 15:48:42 -0700722 public static final int KITKAT_WATCH = 20;
Jeff Brown047f3c72014-04-16 14:18:49 -0700723
724 /**
Dianne Hackborn955d8d62014-10-07 20:17:19 -0700725 * Temporary until we completely switch to {@link #LOLLIPOP}.
Dianne Hackbornd3511d42014-10-16 17:48:30 -0700726 * @hide
Dianne Hackborn955d8d62014-10-07 20:17:19 -0700727 */
728 public static final int L = 21;
729
730 /**
Dianne Hackborne7a34352015-09-17 14:50:47 -0700731 * November 2014: Lollipop. A flat one with beautiful shadows. But still tasty.
Dianne Hackborn10ad9822014-03-17 11:28:36 -0700732 *
733 * <p>Applications targeting this or a later release will get these
Andrew Solovaya861ff72018-08-06 13:43:30 -0700734 * new changes in behavior. For more information about this release, see the
735 * <a href="/about/versions/lollipop/">Android Lollipop overview</a>.</p>
Dianne Hackborn10ad9822014-03-17 11:28:36 -0700736 * <ul>
737 * <li> {@link android.content.Context#bindService Context.bindService} now
Michael Wright5b5def52014-04-11 13:37:50 -0700738 * requires an explicit Intent, and will throw an exception if given an implicit
Dianne Hackborn10ad9822014-03-17 11:28:36 -0700739 * Intent.</li>
Dianne Hackbornd3511d42014-10-16 17:48:30 -0700740 * <li> {@link android.app.Notification.Builder Notification.Builder} will
741 * not have the colors of their various notification elements adjusted to better
742 * match the new material design look.</li>
743 * <li> {@link android.os.Message} will validate that a message is not currently
744 * in use when it is recycled.</li>
745 * <li> Hardware accelerated drawing in windows will be enabled automatically
746 * in most places.</li>
747 * <li> {@link android.widget.Spinner} throws an exception if attaching an
748 * adapter with more than one item type.</li>
749 * <li> If the app is a launcher, the launcher will be available to the user
750 * even when they are using corporate profiles (which requires that the app
751 * use {@link android.content.pm.LauncherApps} to correctly populate its
752 * apps UI).</li>
753 * <li> Calling {@link android.app.Service#stopForeground Service.stopForeground}
754 * with removeNotification false will modify the still posted notification so that
755 * it is no longer forced to be ongoing.</li>
756 * <li> A {@link android.service.dreams.DreamService} must require the
757 * {@link android.Manifest.permission#BIND_DREAM_SERVICE} permission to be usable.</li>
Dianne Hackborn10ad9822014-03-17 11:28:36 -0700758 * </ul>
759 */
Dianne Hackborn955d8d62014-10-07 20:17:19 -0700760 public static final int LOLLIPOP = 21;
Dianne Hackborn3b696882014-10-16 18:14:12 -0700761
762 /**
Dianne Hackborne7a34352015-09-17 14:50:47 -0700763 * March 2015: Lollipop with an extra sugar coating on the outside!
Andrew Solovaya861ff72018-08-06 13:43:30 -0700764 * For more information about this release, see the
765 * <a href="/about/versions/android-5.1">Android 5.1 APIs</a>.
Dianne Hackborn3b696882014-10-16 18:14:12 -0700766 */
767 public static final int LOLLIPOP_MR1 = 22;
Dianne Hackborn8bd95f12015-01-27 13:18:24 -0800768
769 /**
Dianne Hackborne7a34352015-09-17 14:50:47 -0700770 * M is for Marshmallow!
771 *
772 * <p>Applications targeting this or a later release will get these
Andrew Solovaya861ff72018-08-06 13:43:30 -0700773 * new changes in behavior. For more information about this release, see the
774 * <a href="/about/versions/marshmallow/">Android 6.0 Marshmallow overview</a>.</p>
Dianne Hackborne7a34352015-09-17 14:50:47 -0700775 * <ul>
776 * <li> Runtime permissions. Dangerous permissions are no longer granted at
777 * install time, but must be requested by the application at runtime through
778 * {@link android.app.Activity#requestPermissions}.</li>
779 * <li> Bluetooth and Wi-Fi scanning now requires holding the location permission.</li>
780 * <li> {@link android.app.AlarmManager#setTimeZone AlarmManager.setTimeZone} will fail if
781 * the given timezone is non-Olson.</li>
782 * <li> Activity transitions will only return shared
783 * elements mapped in the returned view hierarchy back to the calling activity.</li>
784 * <li> {@link android.view.View} allows a number of behaviors that may break
785 * existing apps: Canvas throws an exception if restore() is called too many times,
786 * widgets may return a hint size when returning UNSPECIFIED measure specs, and it
787 * will respect the attributes {@link android.R.attr#foreground},
788 * {@link android.R.attr#foregroundGravity}, {@link android.R.attr#foregroundTint}, and
789 * {@link android.R.attr#foregroundTintMode}.</li>
790 * <li> {@link android.view.MotionEvent#getButtonState MotionEvent.getButtonState}
791 * will no longer report {@link android.view.MotionEvent#BUTTON_PRIMARY}
792 * and {@link android.view.MotionEvent#BUTTON_SECONDARY} as synonyms for
793 * {@link android.view.MotionEvent#BUTTON_STYLUS_PRIMARY} and
794 * {@link android.view.MotionEvent#BUTTON_STYLUS_SECONDARY}.</li>
795 * <li> {@link android.widget.ScrollView} now respects the layout param margins
796 * when measuring.</li>
797 * </ul>
Dianne Hackborn8bd95f12015-01-27 13:18:24 -0800798 */
Dianne Hackborn0e3de6c2015-07-29 15:20:21 -0700799 public static final int M = 23;
Wale Ogunwale79113102015-10-05 16:52:53 -0700800
801 /**
Dianne Hackbornb34cbed2016-08-09 13:18:21 -0700802 * N is for Nougat.
803 *
804 * <p>Applications targeting this or a later release will get these
Andrew Solovaya861ff72018-08-06 13:43:30 -0700805 * new changes in behavior. For more information about this release, see
806 * the <a href="/about/versions/nougat/">Android Nougat overview</a>.</p>
Dianne Hackbornb34cbed2016-08-09 13:18:21 -0700807 * <ul>
808 * <li> {@link android.app.DownloadManager.Request#setAllowedNetworkTypes
809 * DownloadManager.Request.setAllowedNetworkTypes}
810 * will disable "allow over metered" when specifying only
Dianne Hackborn5f1649e2016-08-09 18:00:31 -0700811 * {@link android.app.DownloadManager.Request#NETWORK_WIFI}.</li>
Dianne Hackbornb34cbed2016-08-09 13:18:21 -0700812 * <li> {@link android.app.DownloadManager} no longer allows access to raw
Dianne Hackborn5f1649e2016-08-09 18:00:31 -0700813 * file paths.</li>
Dianne Hackbornb34cbed2016-08-09 13:18:21 -0700814 * <li> {@link android.app.Notification.Builder#setShowWhen
815 * Notification.Builder.setShowWhen}
816 * must be called explicitly to have the time shown, and various other changes in
817 * {@link android.app.Notification.Builder Notification.Builder} to how notifications
818 * are shown.</li>
819 * <li>{@link android.content.Context#MODE_WORLD_READABLE} and
820 * {@link android.content.Context#MODE_WORLD_WRITEABLE} are no longer supported.</li>
821 * <li>{@link android.os.FileUriExposedException} will be thrown to applications.</li>
822 * <li>Applications will see global drag and drops as per
823 * {@link android.view.View#DRAG_FLAG_GLOBAL}.</li>
824 * <li>{@link android.webkit.WebView#evaluateJavascript WebView.evaluateJavascript}
825 * will not persist state from an empty WebView.</li>
826 * <li>{@link android.animation.AnimatorSet} will not ignore calls to end() before
827 * start().</li>
828 * <li>{@link android.app.AlarmManager#cancel(android.app.PendingIntent)
829 * AlarmManager.cancel} will throw a NullPointerException if given a null operation.</li>
830 * <li>{@link android.app.FragmentManager} will ensure fragments have been created
831 * before being placed on the back stack.</li>
832 * <li>{@link android.app.FragmentManager} restores fragments in
833 * {@link android.app.Fragment#onCreate Fragment.onCreate} rather than after the
834 * method returns.</li>
835 * <li>{@link android.R.attr#resizeableActivity} defaults to true.</li>
836 * <li>{@link android.graphics.drawable.AnimatedVectorDrawable} throws exceptions when
837 * opening invalid VectorDrawable animations.</li>
838 * <li>{@link android.view.ViewGroup.MarginLayoutParams} will no longer be dropped
839 * when converting between some types of layout params (such as
840 * {@link android.widget.LinearLayout.LayoutParams LinearLayout.LayoutParams} to
841 * {@link android.widget.RelativeLayout.LayoutParams RelativeLayout.LayoutParams}).</li>
842 * <li>Your application processes will not be killed when the device density changes.</li>
Vadim Tryshev06b9b602016-09-23 15:32:33 -0700843 * <li>Drag and drop. After a view receives the
844 * {@link android.view.DragEvent#ACTION_DRAG_ENTERED} event, when the drag shadow moves into
845 * a descendant view that can accept the data, the view receives the
846 * {@link android.view.DragEvent#ACTION_DRAG_EXITED} event and won’t receive
847 * {@link android.view.DragEvent#ACTION_DRAG_LOCATION} and
848 * {@link android.view.DragEvent#ACTION_DROP} events while the drag shadow is within that
849 * descendant view, even if the descendant view returns <code>false</code> from its handler
850 * for these events.</li>
Dianne Hackbornb34cbed2016-08-09 13:18:21 -0700851 * </ul>
Wale Ogunwale79113102015-10-05 16:52:53 -0700852 */
Adam Powell43ec62a2016-05-25 16:36:41 -0700853 public static final int N = 24;
Michael Wright863ae3e2016-06-29 15:47:16 +0100854
855 /**
Andrew Solovaya861ff72018-08-06 13:43:30 -0700856 * N MR1: Nougat++. For more information about this release, see
857 * <a href="/about/versions/nougat/android-7.1">Android 7.1 for
858 * Developers</a>.
Michael Wright863ae3e2016-06-29 15:47:16 +0100859 */
860 public static final int N_MR1 = 25;
Makoto Onuki864f4bd2016-11-02 11:11:32 -0700861
862 /**
863 * O.
Evan Rosky534de292017-06-23 09:45:38 -0700864 *
865 * <p>Applications targeting this or a later release will get these
Andrew Solovaya861ff72018-08-06 13:43:30 -0700866 * new changes in behavior. For more information about this release, see
867 * the <a href="/about/versions/oreo/">Android Oreo overview</a>.</p>
Evan Rosky534de292017-06-23 09:45:38 -0700868 * <ul>
Dianne Hackborna47d0452017-11-21 15:04:57 -0800869 * <li><a href="{@docRoot}about/versions/oreo/background.html">Background execution limits</a>
870 * are applied to the application.</li>
871 * <li>The behavior of AccountManager's
872 * {@link android.accounts.AccountManager#getAccountsByType},
873 * {@link android.accounts.AccountManager#getAccountsByTypeAndFeatures}, and
874 * {@link android.accounts.AccountManager#hasFeatures} has changed as documented there.</li>
875 * <li>{@link android.app.ActivityManager.RunningAppProcessInfo#IMPORTANCE_PERCEPTIBLE_PRE_26}
876 * is now returned as
877 * {@link android.app.ActivityManager.RunningAppProcessInfo#IMPORTANCE_PERCEPTIBLE}.</li>
878 * <li>The {@link android.app.NotificationManager} now requires the use of notification
879 * channels.</li>
880 * <li>Changes to the strict mode that are set in
881 * {@link Application#onCreate Application.onCreate} will no longer be clobbered after
882 * that function returns.</li>
883 * <li>A shared library apk with native code will have that native code included in
884 * the library path of its clients.</li>
885 * <li>{@link android.content.Context#getSharedPreferences Context.getSharedPreferences}
886 * in credential encrypted storage will throw an exception before the user is unlocked.</li>
887 * <li>Attempting to retrieve a {@link Context#FINGERPRINT_SERVICE} on a device that
888 * does not support that feature will now throw a runtime exception.</li>
889 * <li>{@link android.app.Fragment} will stop any active view animations when
890 * the fragment is stopped.</li>
891 * <li>Some compatibility code in Resources that attempts to use the default Theme
892 * the app may be using will be turned off, requiring the app to explicitly request
893 * resources with the right theme.</li>
894 * <li>{@link android.content.ContentResolver#notifyChange ContentResolver.notifyChange} and
895 * {@link android.content.ContentResolver#registerContentObserver
896 * ContentResolver.registerContentObserver}
897 * will throw a SecurityException if the caller does not have permission to access
898 * the provider (or the provider doesn't exit); otherwise the call will be silently
899 * ignored.</li>
900 * <li>{@link android.hardware.camera2.CameraDevice#createCaptureRequest
901 * CameraDevice.createCaptureRequest} will enable
902 * {@link android.hardware.camera2.CaptureRequest#CONTROL_ENABLE_ZSL} by default for
903 * still image capture.</li>
904 * <li>WallpaperManager's {@link android.app.WallpaperManager#getWallpaperFile},
905 * {@link android.app.WallpaperManager#getDrawable},
906 * {@link android.app.WallpaperManager#getFastDrawable},
907 * {@link android.app.WallpaperManager#peekDrawable}, and
908 * {@link android.app.WallpaperManager#peekFastDrawable} will throw an exception
909 * if you can not access the wallpaper.</li>
910 * <li>The behavior of
911 * {@link android.hardware.usb.UsbDeviceConnection#requestWait UsbDeviceConnection.requestWait}
912 * is modified as per the documentation there.</li>
913 * <li>{@link StrictMode.VmPolicy.Builder#detectAll StrictMode.VmPolicy.Builder.detectAll}
914 * will also enable {@link StrictMode.VmPolicy.Builder#detectContentUriWithoutPermission}
915 * and {@link StrictMode.VmPolicy.Builder#detectUntaggedSockets}.</li>
916 * <li>{@link StrictMode.ThreadPolicy.Builder#detectAll StrictMode.ThreadPolicy.Builder.detectAll}
917 * will also enable {@link StrictMode.ThreadPolicy.Builder#detectUnbufferedIo}.</li>
918 * <li>{@link android.provider.DocumentsContract}'s various methods will throw failure
919 * exceptions back to the caller instead of returning null.
920 * <li>{@link View#hasFocusable View.hasFocusable} now includes auto-focusable views.</li>
921 * <li>{@link android.view.SurfaceView} will no longer always change the underlying
922 * Surface object when something about it changes; apps need to look at the current
923 * state of the object to determine which things they are interested in have changed.</li>
924 * <li>{@link android.view.WindowManager.LayoutParams#TYPE_APPLICATION_OVERLAY} must be
925 * used for overlay windows, other system overlay window types are not allowed.</li>
926 * <li>{@link android.view.ViewTreeObserver#addOnDrawListener
927 * ViewTreeObserver.addOnDrawListener} will throw an exception if called from within
928 * onDraw.</li>
929 * <li>{@link android.graphics.Canvas#setBitmap Canvas.setBitmap} will no longer preserve
930 * the current matrix and clip stack of the canvas.</li>
931 * <li>{@link android.widget.ListPopupWindow#setHeight ListPopupWindow.setHeight}
932 * will throw an exception if a negative height is supplied.</li>
933 * <li>{@link android.widget.TextView} will use internationalized input for numbers,
934 * dates, and times.</li>
935 * <li>{@link android.widget.Toast} must be used for showing toast windows; the toast
936 * window type can not be directly used.</li>
937 * <li>{@link android.net.wifi.WifiManager#getConnectionInfo WifiManager.getConnectionInfo}
938 * requires that the caller hold the location permission to return BSSID/SSID</li>
939 * <li>{@link android.net.wifi.p2p.WifiP2pManager#requestPeers WifiP2pManager.requestPeers}
940 * requires the caller hold the location permission.</li>
941 * <li>{@link android.R.attr#maxAspectRatio} defaults to 0, meaning there is no restriction
942 * on the app's maximum aspect ratio (so it can be stretched to fill larger screens).</li>
Evan Rosky534de292017-06-23 09:45:38 -0700943 * <li>{@link android.R.attr#focusable} defaults to a new state ({@code auto}) where it will
944 * inherit the value of {@link android.R.attr#clickable} unless explicitly overridden.</li>
945 * <li>A default theme-appropriate focus-state highlight will be supplied to all Views
946 * which don't provide a focus-state drawable themselves. This can be disabled by setting
947 * {@link android.R.attr#defaultFocusHighlightEnabled} to false.</li>
948 * </ul>
Makoto Onuki864f4bd2016-11-02 11:11:32 -0700949 */
Ian Pedowitz967869d2017-05-04 00:10:04 +0000950 public static final int O = 26;
Jeff Sharkey7beabc22017-07-19 13:57:35 -0600951
952 /**
953 * O MR1.
Dianne Hackborna47d0452017-11-21 15:04:57 -0800954 *
955 * <p>Applications targeting this or a later release will get these
Andrew Solovaya861ff72018-08-06 13:43:30 -0700956 * new changes in behavior. For more information about this release, see
957 * <a href="/about/versions/oreo/android-8.1">Android 8.1 features and
958 * APIs</a>.</p>
Dianne Hackborna47d0452017-11-21 15:04:57 -0800959 * <ul>
960 * <li>Apps exporting and linking to apk shared libraries must explicitly
961 * enumerate all signing certificates in a consistent order.</li>
962 * <li>{@link android.R.attr#screenOrientation} can not be used to request a fixed
963 * orientation if the associated activity is not fullscreen and opaque.</li>
964 * </ul>
Andrew Solovaya861ff72018-08-06 13:43:30 -0700965 *
Jeff Sharkey7beabc22017-07-19 13:57:35 -0600966 */
Michael Wrighteec01ac2017-08-23 13:49:14 -0700967 public static final int O_MR1 = 27;
Makoto Onuki7bd7a622017-08-31 08:35:59 -0700968
969 /**
970 * P.
Dianne Hackborndd027b32018-01-19 17:44:46 -0800971 *
972 * <p>Applications targeting this or a later release will get these
Andrew Solovaya861ff72018-08-06 13:43:30 -0700973 * new changes in behavior. For more information about this release, see the
974 * <a href="/about/versions/pie/">Android 9 Pie overview</a>.</p>
Dianne Hackborndd027b32018-01-19 17:44:46 -0800975 * <ul>
976 * <li>{@link android.app.Service#startForeground Service.startForeground} requires
977 * that apps hold the permission
978 * {@link android.Manifest.permission#FOREGROUND_SERVICE}.</li>
Chet Haasecb848882018-03-21 14:09:44 -0700979 * <li>{@link android.widget.LinearLayout} will always remeasure weighted children,
980 * even if there is no excess space.</li>
Dianne Hackborndd027b32018-01-19 17:44:46 -0800981 * </ul>
Andrew Solovaya861ff72018-08-06 13:43:30 -0700982 *
Makoto Onuki7bd7a622017-08-31 08:35:59 -0700983 */
Wale Ogunwale3da5f3b2018-04-11 15:12:31 -0700984 public static final int P = 28;
Jeff Sharkey8929b522018-05-15 13:34:52 -0600985
986 /**
987 * Q.
988 * <p>
989 * <em>Why? Why, to give you a taste of your future, a preview of things
990 * to come. Con permiso, Capitan. The hall is rented, the orchestra
991 * engaged. It's now time to see if you can dance.</em>
992 */
Ian Pedowitz1912a572019-05-12 19:44:42 +0000993 public static final int Q = 29;
Dianne Hackborn851a5412009-05-08 12:06:44 -0700994 }
Andres Moralescb3fd692015-01-14 10:07:55 -0800995
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800996 /** The type of build, like "user" or "eng". */
997 public static final String TYPE = getString("ro.build.type");
998
999 /** Comma-separated tags describing the build, like "unsigned,debug". */
1000 public static final String TAGS = getString("ro.build.tags");
1001
1002 /** A string that uniquely identifies this build. Do not attempt to parse this value. */
Jeff Sharkey55687722014-04-09 18:07:19 -07001003 public static final String FINGERPRINT = deriveFingerprint();
1004
1005 /**
1006 * Some devices split the fingerprint components between multiple
1007 * partitions, so we might derive the fingerprint at runtime.
1008 */
1009 private static String deriveFingerprint() {
1010 String finger = SystemProperties.get("ro.build.fingerprint");
1011 if (TextUtils.isEmpty(finger)) {
1012 finger = getString("ro.product.brand") + '/' +
1013 getString("ro.product.name") + '/' +
1014 getString("ro.product.device") + ':' +
1015 getString("ro.build.version.release") + '/' +
1016 getString("ro.build.id") + '/' +
1017 getString("ro.build.version.incremental") + ':' +
1018 getString("ro.build.type") + '/' +
1019 getString("ro.build.tags");
1020 }
1021 return finger;
1022 }
1023
1024 /**
1025 * Ensure that raw fingerprint system property is defined. If it was derived
1026 * dynamically by {@link #deriveFingerprint()} this is where we push the
1027 * derived value into the property service.
1028 *
1029 * @hide
1030 */
1031 public static void ensureFingerprintProperty() {
1032 if (TextUtils.isEmpty(SystemProperties.get("ro.build.fingerprint"))) {
Jeff Sharkeybdd44912014-04-11 16:30:14 -07001033 try {
1034 SystemProperties.set("ro.build.fingerprint", FINGERPRINT);
1035 } catch (IllegalArgumentException e) {
1036 Slog.e(TAG, "Failed to set fingerprint property", e);
1037 }
Jeff Sharkey55687722014-04-09 18:07:19 -07001038 }
1039 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001040
Jeff Sharkey2cffc7d2014-11-14 13:57:53 -08001041 /**
Michael Schwartz18511182017-05-15 11:40:40 -07001042 * True if Treble is enabled and required for this device.
1043 *
1044 * @hide
1045 */
1046 public static final boolean IS_TREBLE_ENABLED =
1047 SystemProperties.getBoolean("ro.treble.enabled", false);
1048
1049 /**
1050 * Verifies the current flash of the device is consistent with what
Andres Moralesfd282ed2015-02-06 15:07:59 -08001051 * was expected at build time.
Michael Schwartz18511182017-05-15 11:40:40 -07001052 *
1053 * Treble devices will verify the Vendor Interface (VINTF). A device
1054 * launched without Treble:
1055 *
Andres Moralesfd282ed2015-02-06 15:07:59 -08001056 * 1) Checks that device fingerprint is defined and that it matches across
1057 * various partitions.
1058 * 2) Verifies radio and bootloader partitions are those expected in the build.
Jeff Sharkey2cffc7d2014-11-14 13:57:53 -08001059 *
1060 * @hide
1061 */
Andres Moralesfd282ed2015-02-06 15:07:59 -08001062 public static boolean isBuildConsistent() {
Xiaohui Chen2102dcb2015-10-02 16:45:55 -07001063 // Don't care on eng builds. Incremental build may trigger false negative.
Jeff Sharkey5eb3eb52016-12-13 08:44:51 -07001064 if (IS_ENG) return true;
Xiaohui Chen2102dcb2015-10-02 16:45:55 -07001065
Michael Schwartz18511182017-05-15 11:40:40 -07001066 if (IS_TREBLE_ENABLED) {
Bowgo Tsaib1de4312017-11-17 17:18:50 +08001067 // If we can run this code, the device should already pass AVB.
1068 // So, we don't need to check AVB here.
1069 int result = VintfObject.verifyWithoutAvb();
Michael Schwartz18511182017-05-15 11:40:40 -07001070
1071 if (result != 0) {
1072 Slog.e(TAG, "Vendor interface is incompatible, error="
1073 + String.valueOf(result));
1074 }
1075
1076 return result == 0;
1077 }
1078
Jeff Sharkey2cffc7d2014-11-14 13:57:53 -08001079 final String system = SystemProperties.get("ro.build.fingerprint");
1080 final String vendor = SystemProperties.get("ro.vendor.build.fingerprint");
Andres Moralescb3fd692015-01-14 10:07:55 -08001081 final String bootimage = SystemProperties.get("ro.bootimage.build.fingerprint");
Andres Moralesfd282ed2015-02-06 15:07:59 -08001082 final String requiredBootloader = SystemProperties.get("ro.build.expect.bootloader");
1083 final String currentBootloader = SystemProperties.get("ro.bootloader");
1084 final String requiredRadio = SystemProperties.get("ro.build.expect.baseband");
1085 final String currentRadio = SystemProperties.get("gsm.version.baseband");
Jeff Sharkey2cffc7d2014-11-14 13:57:53 -08001086
1087 if (TextUtils.isEmpty(system)) {
1088 Slog.e(TAG, "Required ro.build.fingerprint is empty!");
1089 return false;
1090 }
1091
1092 if (!TextUtils.isEmpty(vendor)) {
1093 if (!Objects.equals(system, vendor)) {
1094 Slog.e(TAG, "Mismatched fingerprints; system reported " + system
1095 + " but vendor reported " + vendor);
1096 return false;
1097 }
1098 }
1099
Andres Moralesc97b92e2015-06-01 17:50:43 +00001100 /* TODO: Figure out issue with checks failing
Andres Moralescb3fd692015-01-14 10:07:55 -08001101 if (!TextUtils.isEmpty(bootimage)) {
Andres Morales7de24ce2015-01-23 12:45:54 -08001102 if (!Objects.equals(system, bootimage)) {
1103 Slog.e(TAG, "Mismatched fingerprints; system reported " + system
Andres Moralescb3fd692015-01-14 10:07:55 -08001104 + " but bootimage reported " + bootimage);
1105 return false;
1106 }
1107 }
1108
Andres Moralesfd282ed2015-02-06 15:07:59 -08001109 if (!TextUtils.isEmpty(requiredBootloader)) {
1110 if (!Objects.equals(currentBootloader, requiredBootloader)) {
1111 Slog.e(TAG, "Mismatched bootloader version: build requires " + requiredBootloader
1112 + " but runtime reports " + currentBootloader);
1113 return false;
1114 }
1115 }
1116
1117 if (!TextUtils.isEmpty(requiredRadio)) {
1118 if (!Objects.equals(currentRadio, requiredRadio)) {
1119 Slog.e(TAG, "Mismatched radio version: build requires " + requiredRadio
1120 + " but runtime reports " + currentRadio);
1121 return false;
1122 }
1123 }
Daniel Rosenberg159c2052015-02-20 13:10:26 -08001124 */
Andres Moralesfd282ed2015-02-06 15:07:59 -08001125
Jeff Sharkey2cffc7d2014-11-14 13:57:53 -08001126 return true;
1127 }
1128
Anton Hansson91b54f12018-09-24 18:24:19 +01001129 /** Build information for a particular device partition. */
1130 public static class Partition {
1131 /** The name identifying the system partition. */
1132 public static final String PARTITION_NAME_SYSTEM = "system";
1133
Anton Hansson2579d1a2019-02-06 12:14:12 +00001134 private final String mName;
1135 private final String mFingerprint;
1136 private final long mTimeMs;
Anton Hansson91b54f12018-09-24 18:24:19 +01001137
1138 private Partition(String name, String fingerprint, long timeMs) {
1139 mName = name;
1140 mFingerprint = fingerprint;
1141 mTimeMs = timeMs;
1142 }
1143
1144 /** The name of this partition, e.g. "system", or "vendor" */
Anton Hansson81f76a02018-10-04 18:40:22 +01001145 @NonNull
Anton Hansson91b54f12018-09-24 18:24:19 +01001146 public String getName() {
1147 return mName;
1148 }
1149
1150 /** The build fingerprint of this partition, see {@link Build#FINGERPRINT}. */
Anton Hansson81f76a02018-10-04 18:40:22 +01001151 @NonNull
Anton Hansson91b54f12018-09-24 18:24:19 +01001152 public String getFingerprint() {
1153 return mFingerprint;
1154 }
1155
1156 /** The time (ms since epoch), at which this partition was built, see {@link Build#TIME}. */
Anton Hansson81f76a02018-10-04 18:40:22 +01001157 public long getBuildTimeMillis() {
Anton Hansson91b54f12018-09-24 18:24:19 +01001158 return mTimeMs;
1159 }
Anton Hansson81f76a02018-10-04 18:40:22 +01001160
1161 @Override
1162 public boolean equals(Object o) {
1163 if (!(o instanceof Partition)) {
1164 return false;
1165 }
1166 Partition op = (Partition) o;
1167 return mName.equals(op.mName)
1168 && mFingerprint.equals(op.mFingerprint)
1169 && mTimeMs == op.mTimeMs;
1170 }
1171
1172 @Override
1173 public int hashCode() {
1174 return Objects.hash(mName, mFingerprint, mTimeMs);
1175 }
Anton Hansson91b54f12018-09-24 18:24:19 +01001176 }
1177
1178 /**
1179 * Get build information about partitions that have a separate fingerprint defined.
1180 *
1181 * The list includes partitions that are suitable candidates for over-the-air updates. This is
1182 * not an exhaustive list of partitions on the device.
1183 */
Anton Hansson81f76a02018-10-04 18:40:22 +01001184 @NonNull
1185 public static List<Partition> getFingerprintedPartitions() {
Anton Hansson91b54f12018-09-24 18:24:19 +01001186 ArrayList<Partition> partitions = new ArrayList();
1187
1188 String[] names = new String[] {
Jeongik Chaf6629832019-07-04 21:12:06 +09001189 "bootimage", "odm", "product", "system_ext", Partition.PARTITION_NAME_SYSTEM,
Anton Hansson91b54f12018-09-24 18:24:19 +01001190 "vendor"
1191 };
1192 for (String name : names) {
1193 String fingerprint = SystemProperties.get("ro." + name + ".build.fingerprint");
1194 if (TextUtils.isEmpty(fingerprint)) {
1195 continue;
1196 }
1197 long time = getLong("ro." + name + ".build.date.utc") * 1000;
1198 partitions.add(new Partition(name, fingerprint, time));
1199 }
1200
1201 return partitions;
1202 }
1203
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001204 // The following properties only make sense for internal engineering builds.
Anton Hansson91b54f12018-09-24 18:24:19 +01001205
1206 /** The time at which the build was produced, given in milliseconds since the UNIX epoch. */
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001207 public static final long TIME = getLong("ro.build.date.utc") * 1000;
1208 public static final String USER = getString("ro.build.user");
1209 public static final String HOST = getString("ro.build.host");
1210
Doug Zongkerad2171a2011-06-14 11:07:24 -07001211 /**
Jeff Brown89101cd92011-10-27 21:24:54 -07001212 * Returns true if we are running a debug build such as "user-debug" or "eng".
1213 * @hide
1214 */
Andrei Onea24ec3212019-03-15 17:35:05 +00001215 @UnsupportedAppUsage
Jeff Brown89101cd92011-10-27 21:24:54 -07001216 public static final boolean IS_DEBUGGABLE =
1217 SystemProperties.getInt("ro.debuggable", 0) == 1;
1218
Jeff Sharkey5eb3eb52016-12-13 08:44:51 -07001219 /** {@hide} */
Jeff Sharkeycdee83a2017-01-26 15:29:16 -07001220 public static final boolean IS_ENG = "eng".equals(TYPE);
1221 /** {@hide} */
1222 public static final boolean IS_USERDEBUG = "userdebug".equals(TYPE);
1223 /** {@hide} */
1224 public static final boolean IS_USER = "user".equals(TYPE);
Jeff Sharkey5eb3eb52016-12-13 08:44:51 -07001225
Jeff Brown89101cd92011-10-27 21:24:54 -07001226 /**
Xiaohui Chen387c65f2017-01-17 14:29:03 -08001227 * Whether this build is running inside a container.
1228 *
1229 * We should try to avoid checking this flag if possible to minimize
1230 * unnecessarily diverging from non-container Android behavior.
1231 * Checking this flag is acceptable when low-level resources being
1232 * different, e.g. the availability of certain capabilities, access to
1233 * system resources being restricted, and the fact that the host OS might
1234 * handle some features for us.
1235 * For higher-level behavior differences, other checks should be preferred.
1236 * @hide
1237 */
1238 public static final boolean IS_CONTAINER =
1239 SystemProperties.getBoolean("ro.boot.container", false);
1240
1241 /**
Svet Ganov9c165d72015-12-01 19:52:26 -08001242 * Specifies whether the permissions needed by a legacy app should be
1243 * reviewed before any of its components can run. A legacy app is one
1244 * with targetSdkVersion < 23, i.e apps using the old permission model.
1245 * If review is not required, permissions are reviewed before the app
1246 * is installed.
1247 *
1248 * @hide
Svet Ganov77df6f32016-08-17 11:46:34 -07001249 * @removed
Svet Ganov9c165d72015-12-01 19:52:26 -08001250 */
Svet Ganovae0e03a2016-02-25 18:22:10 -08001251 @SystemApi
Philip P. Moltmann6c644e62018-07-18 15:41:24 -07001252 public static final boolean PERMISSIONS_REVIEW_REQUIRED = true;
Svet Ganov9c165d72015-12-01 19:52:26 -08001253
1254 /**
Doug Zongkerad2171a2011-06-14 11:07:24 -07001255 * Returns the version string for the radio firmware. May return
1256 * null (if, for instance, the radio is not currently on).
1257 */
1258 public static String getRadioVersion() {
Seongho Kim73273e02018-11-16 13:44:48 +09001259 String propVal = SystemProperties.get(TelephonyProperties.PROPERTY_BASEBAND_VERSION);
1260 return TextUtils.isEmpty(propVal) ? null : propVal;
Doug Zongkerad2171a2011-06-14 11:07:24 -07001261 }
1262
Andrei Onea24ec3212019-03-15 17:35:05 +00001263 @UnsupportedAppUsage
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001264 private static String getString(String property) {
1265 return SystemProperties.get(property, UNKNOWN);
1266 }
1267
Torne (Richard Coles)ff701a62014-07-30 12:11:15 +01001268 private static String[] getStringList(String property, String separator) {
1269 String value = SystemProperties.get(property);
1270 if (value.isEmpty()) {
1271 return new String[0];
1272 } else {
1273 return value.split(separator);
1274 }
1275 }
1276
Andrei Onea24ec3212019-03-15 17:35:05 +00001277 @UnsupportedAppUsage
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001278 private static long getLong(String property) {
1279 try {
1280 return Long.parseLong(SystemProperties.get(property));
1281 } catch (NumberFormatException e) {
1282 return -1;
1283 }
1284 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001285}