blob: da8811a6f636a08e4643db9462822d9de240571c [file] [log] [blame]
Kenny Root15a4d2f2010-03-11 18:20:12 -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
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080017package android.content.pm;
18
Jeff Sharkey9bc89af2017-01-11 11:25:50 -070019import static android.os.Build.VERSION_CODES.DONUT;
20
21import android.annotation.IntDef;
Alan Viveretteb6a25732017-11-21 14:49:24 -050022import android.annotation.Nullable;
Jeff Sharkey8a372a02016-03-16 16:25:45 -060023import android.annotation.SystemApi;
Jeff Sharkeya73b8fd2016-01-06 17:02:08 -070024import android.annotation.TestApi;
Mathew Inwood1c77a112018-08-14 14:06:26 +010025import android.annotation.UnsupportedAppUsage;
Jeff Sharkey8a372a02016-03-16 16:25:45 -060026import android.content.Context;
Jeff Brown07330792010-03-30 19:57:08 -070027import android.content.pm.PackageManager.NameNotFoundException;
28import android.content.res.Resources;
29import android.graphics.drawable.Drawable;
Mathew Inwood55418ea2018-12-20 15:30:45 +000030import android.os.Build;
Jeff Sharkey15447792015-11-05 16:18:51 -080031import android.os.Environment;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080032import android.os.Parcel;
33import android.os.Parcelable;
Jeff Sharkey15447792015-11-05 16:18:51 -080034import android.os.UserHandle;
Jeff Sharkey789a8fc2017-04-16 13:18:35 -060035import android.os.storage.StorageManager;
Jeff Sharkeye2d45be2015-04-15 17:14:12 -070036import android.text.TextUtils;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080037import android.util.Printer;
Adam Lesinski1665d0f2017-03-10 14:46:57 -080038import android.util.SparseArray;
Yi Jin148d7f42017-11-28 14:23:56 -080039import android.util.proto.ProtoOutputStream;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080040
Jeff Sharkey8a4c9722014-06-16 13:48:42 -070041import com.android.internal.util.ArrayUtils;
Mathew Inwood4693a752018-02-20 16:04:25 +000042import com.android.server.SystemConfig;
Jeff Sharkey8a4c9722014-06-16 13:48:42 -070043
Jeff Sharkey9bc89af2017-01-11 11:25:50 -070044import java.lang.annotation.Retention;
45import java.lang.annotation.RetentionPolicy;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080046import java.text.Collator;
Jeff Sharkey8a4c9722014-06-16 13:48:42 -070047import java.util.Arrays;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080048import java.util.Comparator;
Nicolas Geoffray972b39e2018-11-15 12:59:52 +000049import java.util.List;
Jeff Sharkey8a4c9722014-06-16 13:48:42 -070050import java.util.Objects;
Jeff Sharkey789a8fc2017-04-16 13:18:35 -060051import java.util.UUID;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080052
53/**
54 * Information you can retrieve about a particular application. This
55 * corresponds to information collected from the AndroidManifest.xml's
56 * <application> tag.
57 */
58public class ApplicationInfo extends PackageItemInfo implements Parcelable {
59
60 /**
61 * Default task affinity of all activities in this application. See
62 * {@link ActivityInfo#taskAffinity} for more information. This comes
63 * from the "taskAffinity" attribute.
64 */
65 public String taskAffinity;
66
67 /**
68 * Optional name of a permission required to be able to access this
69 * application's components. From the "permission" attribute.
70 */
71 public String permission;
72
73 /**
74 * The name of the process this application should run in. From the
75 * "process" attribute or, if not set, the same as
76 * <var>packageName</var>.
77 */
78 public String processName;
79
80 /**
81 * Class implementing the Application object. From the "class"
82 * attribute.
83 */
84 public String className;
85
86 /**
87 * A style resource identifier (in the package's resources) of the
88 * description of an application. From the "description" attribute
89 * or, if not set, 0.
90 */
91 public int descriptionRes;
92
93 /**
94 * A style resource identifier (in the package's resources) of the
95 * default visual theme of the application. From the "theme" attribute
96 * or, if not set, 0.
97 */
98 public int theme;
99
100 /**
101 * Class implementing the Application's manage space
102 * functionality. From the "manageSpaceActivity"
103 * attribute. This is an optional attribute and will be null if
Christopher Tate181fafa2009-05-14 11:12:14 -0700104 * applications don't specify it in their manifest
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800105 */
106 public String manageSpaceActivityName;
107
108 /**
Christopher Tate181fafa2009-05-14 11:12:14 -0700109 * Class implementing the Application's backup functionality. From
110 * the "backupAgent" attribute. This is an optional attribute and
111 * will be null if the application does not specify it in its manifest.
112 *
113 * <p>If android:allowBackup is set to false, this attribute is ignored.
Christopher Tate181fafa2009-05-14 11:12:14 -0700114 */
115 public String backupAgentName;
Christopher Tate4a627c72011-04-01 14:43:32 -0700116
117 /**
Matthew Williams303650c2015-04-17 18:22:51 -0700118 * An optional attribute that indicates the app supports automatic backup of app data.
119 * <p>0 is the default and means the app's entire data folder + managed external storage will
120 * be backed up;
121 * Any negative value indicates the app does not support full-data backup, though it may still
122 * want to participate via the traditional key/value backup API;
123 * A positive number specifies an xml resource in which the application has defined its backup
124 * include/exclude criteria.
125 * <p>If android:allowBackup is set to false, this attribute is ignored.
126 *
Jeff Sharkey8a372a02016-03-16 16:25:45 -0600127 * @see android.content.Context#getNoBackupFilesDir()
128 * @see #FLAG_ALLOW_BACKUP
Christopher Tate98fa6562015-05-14 13:20:10 -0700129 *
130 * @hide
Matthew Williams303650c2015-04-17 18:22:51 -0700131 */
Mathew Inwood1c77a112018-08-14 14:06:26 +0100132 @UnsupportedAppUsage
Matthew Williams303650c2015-04-17 18:22:51 -0700133 public int fullBackupContent = 0;
134
135 /**
Adam Powell269248d2011-08-02 10:26:54 -0700136 * The default extra UI options for activities in this application.
137 * Set from the {@link android.R.attr#uiOptions} attribute in the
138 * activity's manifest.
139 */
140 public int uiOptions = 0;
141
142 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800143 * Value for {@link #flags}: if set, this application is installed in the
144 * device's system image.
145 */
146 public static final int FLAG_SYSTEM = 1<<0;
147
148 /**
149 * Value for {@link #flags}: set to true if this application would like to
150 * allow debugging of its
151 * code, even when installed on a non-development system. Comes
152 * from {@link android.R.styleable#AndroidManifestApplication_debuggable
153 * android:debuggable} of the &lt;application&gt; tag.
154 */
155 public static final int FLAG_DEBUGGABLE = 1<<1;
156
157 /**
158 * Value for {@link #flags}: set to true if this application has code
159 * associated with it. Comes
160 * from {@link android.R.styleable#AndroidManifestApplication_hasCode
161 * android:hasCode} of the &lt;application&gt; tag.
162 */
163 public static final int FLAG_HAS_CODE = 1<<2;
164
165 /**
166 * Value for {@link #flags}: set to true if this application is persistent.
167 * Comes from {@link android.R.styleable#AndroidManifestApplication_persistent
168 * android:persistent} of the &lt;application&gt; tag.
169 */
170 public static final int FLAG_PERSISTENT = 1<<3;
171
172 /**
Christopher Tate181fafa2009-05-14 11:12:14 -0700173 * Value for {@link #flags}: set to true if this application holds the
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800174 * {@link android.Manifest.permission#FACTORY_TEST} permission and the
175 * device is running in factory test mode.
176 */
177 public static final int FLAG_FACTORY_TEST = 1<<4;
178
179 /**
180 * Value for {@link #flags}: default value for the corresponding ActivityInfo flag.
181 * Comes from {@link android.R.styleable#AndroidManifestApplication_allowTaskReparenting
182 * android:allowTaskReparenting} of the &lt;application&gt; tag.
183 */
184 public static final int FLAG_ALLOW_TASK_REPARENTING = 1<<5;
185
186 /**
187 * Value for {@link #flags}: default value for the corresponding ActivityInfo flag.
188 * Comes from {@link android.R.styleable#AndroidManifestApplication_allowClearUserData
189 * android:allowClearUserData} of the &lt;application&gt; tag.
190 */
191 public static final int FLAG_ALLOW_CLEAR_USER_DATA = 1<<6;
192
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800193 /**
Dianne Hackborn851a5412009-05-08 12:06:44 -0700194 * Value for {@link #flags}: this is set if this application has been
Kweku Adams8de29ca2016-01-22 12:30:26 -0800195 * installed as an update to a built-in system application.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800196 */
197 public static final int FLAG_UPDATED_SYSTEM_APP = 1<<7;
Dianne Hackborn851a5412009-05-08 12:06:44 -0700198
199 /**
Svet Ganov354cd3c2015-12-17 11:35:04 -0800200 * Value for {@link #flags}: this is set if the application has specified
Dianne Hackborn7f205432009-07-28 00:13:47 -0700201 * {@link android.R.styleable#AndroidManifestApplication_testOnly
202 * android:testOnly} to be true.
Dianne Hackborn851a5412009-05-08 12:06:44 -0700203 */
Dianne Hackborna96cbb42009-05-13 15:06:13 -0700204 public static final int FLAG_TEST_ONLY = 1<<8;
Dianne Hackbornade3eca2009-05-11 18:54:45 -0700205
206 /**
Dianne Hackborn5c1e00b2009-06-18 17:10:57 -0700207 * Value for {@link #flags}: true when the application's window can be
Dianne Hackborn723738c2009-06-25 19:48:04 -0700208 * reduced in size for smaller screens. Corresponds to
209 * {@link android.R.styleable#AndroidManifestSupportsScreens_smallScreens
210 * android:smallScreens}.
Dianne Hackborn5c1e00b2009-06-18 17:10:57 -0700211 */
Dianne Hackborn723738c2009-06-25 19:48:04 -0700212 public static final int FLAG_SUPPORTS_SMALL_SCREENS = 1<<9;
213
214 /**
215 * Value for {@link #flags}: true when the application's window can be
216 * displayed on normal screens. Corresponds to
217 * {@link android.R.styleable#AndroidManifestSupportsScreens_normalScreens
218 * android:normalScreens}.
219 */
220 public static final int FLAG_SUPPORTS_NORMAL_SCREENS = 1<<10;
221
222 /**
223 * Value for {@link #flags}: true when the application's window can be
224 * increased in size for larger screens. Corresponds to
225 * {@link android.R.styleable#AndroidManifestSupportsScreens_largeScreens
Dianne Hackborn22ec9ab2010-04-29 17:56:03 -0700226 * android:largeScreens}.
Dianne Hackborn723738c2009-06-25 19:48:04 -0700227 */
228 public static final int FLAG_SUPPORTS_LARGE_SCREENS = 1<<11;
Dianne Hackborn5c1e00b2009-06-18 17:10:57 -0700229
230 /**
Dianne Hackbornc4db95c2009-07-21 17:46:02 -0700231 * Value for {@link #flags}: true when the application knows how to adjust
232 * its UI for different screen sizes. Corresponds to
233 * {@link android.R.styleable#AndroidManifestSupportsScreens_resizeable
234 * android:resizeable}.
235 */
236 public static final int FLAG_RESIZEABLE_FOR_SCREENS = 1<<12;
237
238 /**
Dianne Hackborn11b822d2009-07-21 20:03:02 -0700239 * Value for {@link #flags}: true when the application knows how to
240 * accomodate different screen densities. Corresponds to
241 * {@link android.R.styleable#AndroidManifestSupportsScreens_anyDensity
242 * android:anyDensity}.
243 */
244 public static final int FLAG_SUPPORTS_SCREEN_DENSITIES = 1<<13;
245
246 /**
Ben Cheng23085b72010-02-08 16:06:32 -0800247 * Value for {@link #flags}: set to true if this application would like to
248 * request the VM to operate under the safe mode. Comes from
Ben Chengef3f5dd2010-03-29 15:47:26 -0700249 * {@link android.R.styleable#AndroidManifestApplication_vmSafeMode
250 * android:vmSafeMode} of the &lt;application&gt; tag.
Ben Cheng23085b72010-02-08 16:06:32 -0800251 */
252 public static final int FLAG_VM_SAFE_MODE = 1<<14;
253
254 /**
Christopher Tate3de55bc2010-03-12 17:28:08 -0800255 * Value for {@link #flags}: set to <code>false</code> if the application does not wish
256 * to permit any OS-driven backups of its data; <code>true</code> otherwise.
Christopher Tate181fafa2009-05-14 11:12:14 -0700257 *
Christopher Tate3de55bc2010-03-12 17:28:08 -0800258 * <p>Comes from the
259 * {@link android.R.styleable#AndroidManifestApplication_allowBackup android:allowBackup}
260 * attribute of the &lt;application&gt; tag.
Christopher Tate181fafa2009-05-14 11:12:14 -0700261 */
Ben Cheng23085b72010-02-08 16:06:32 -0800262 public static final int FLAG_ALLOW_BACKUP = 1<<15;
Christopher Tate5e1ab332009-09-01 20:32:49 -0700263
264 /**
Christopher Tate3de55bc2010-03-12 17:28:08 -0800265 * Value for {@link #flags}: set to <code>false</code> if the application must be kept
266 * in memory following a full-system restore operation; <code>true</code> otherwise.
267 * Ordinarily, during a full system restore operation each application is shut down
268 * following execution of its agent's onRestore() method. Setting this attribute to
269 * <code>false</code> prevents this. Most applications will not need to set this attribute.
Christopher Tate5e1ab332009-09-01 20:32:49 -0700270 *
Christopher Tate3de55bc2010-03-12 17:28:08 -0800271 * <p>If
272 * {@link android.R.styleable#AndroidManifestApplication_allowBackup android:allowBackup}
273 * is set to <code>false</code> or no
274 * {@link android.R.styleable#AndroidManifestApplication_backupAgent android:backupAgent}
Christopher Tate5e1ab332009-09-01 20:32:49 -0700275 * is specified, this flag will be ignored.
276 *
Christopher Tate3de55bc2010-03-12 17:28:08 -0800277 * <p>Comes from the
278 * {@link android.R.styleable#AndroidManifestApplication_killAfterRestore android:killAfterRestore}
279 * attribute of the &lt;application&gt; tag.
Christopher Tate5e1ab332009-09-01 20:32:49 -0700280 */
Ben Cheng23085b72010-02-08 16:06:32 -0800281 public static final int FLAG_KILL_AFTER_RESTORE = 1<<16;
Christopher Tate5e1ab332009-09-01 20:32:49 -0700282
283 /**
Christopher Tate3de55bc2010-03-12 17:28:08 -0800284 * Value for {@link #flags}: Set to <code>true</code> if the application's backup
285 * agent claims to be able to handle restore data even "from the future,"
286 * i.e. from versions of the application with a versionCode greater than
287 * the one currently installed on the device. <i>Use with caution!</i> By default
288 * this attribute is <code>false</code> and the Backup Manager will ensure that data
289 * from "future" versions of the application are never supplied during a restore operation.
Christopher Tate5e1ab332009-09-01 20:32:49 -0700290 *
Christopher Tate3de55bc2010-03-12 17:28:08 -0800291 * <p>If
292 * {@link android.R.styleable#AndroidManifestApplication_allowBackup android:allowBackup}
293 * is set to <code>false</code> or no
294 * {@link android.R.styleable#AndroidManifestApplication_backupAgent android:backupAgent}
Christopher Tate5e1ab332009-09-01 20:32:49 -0700295 * is specified, this flag will be ignored.
296 *
Christopher Tate3de55bc2010-03-12 17:28:08 -0800297 * <p>Comes from the
298 * {@link android.R.styleable#AndroidManifestApplication_restoreAnyVersion android:restoreAnyVersion}
299 * attribute of the &lt;application&gt; tag.
Christopher Tate5e1ab332009-09-01 20:32:49 -0700300 */
Christopher Tate3de55bc2010-03-12 17:28:08 -0800301 public static final int FLAG_RESTORE_ANY_VERSION = 1<<17;
Christopher Tate5e1ab332009-09-01 20:32:49 -0700302
Christopher Tate181fafa2009-05-14 11:12:14 -0700303 /**
Dianne Hackborn3202d382010-04-26 17:51:34 -0700304 * Value for {@link #flags}: Set to true if the application is
305 * currently installed on external/removable/unprotected storage. Such
306 * applications may not be available if their storage is not currently
307 * mounted. When the storage it is on is not available, it will look like
308 * the application has been uninstalled (its .apk is no longer available)
309 * but its persistent data is not removed.
Suchi Amalapurapuaf8e9f42010-01-12 10:17:28 -0800310 */
Dianne Hackborn94c567e2010-04-26 18:13:10 -0700311 public static final int FLAG_EXTERNAL_STORAGE = 1<<18;
Suchi Amalapurapuaf8e9f42010-01-12 10:17:28 -0800312
313 /**
Dianne Hackborn14cee9f2010-04-23 17:51:26 -0700314 * Value for {@link #flags}: true when the application's window can be
315 * increased in size for extra large screens. Corresponds to
316 * {@link android.R.styleable#AndroidManifestSupportsScreens_xlargeScreens
Dianne Hackborn22ec9ab2010-04-29 17:56:03 -0700317 * android:xlargeScreens}.
Dianne Hackborn14cee9f2010-04-23 17:51:26 -0700318 */
319 public static final int FLAG_SUPPORTS_XLARGE_SCREENS = 1<<19;
320
321 /**
Dianne Hackborn3b81bc12011-01-15 11:50:52 -0800322 * Value for {@link #flags}: true when the application has requested a
323 * large heap for its processes. Corresponds to
324 * {@link android.R.styleable#AndroidManifestApplication_largeHeap
325 * android:largeHeap}.
Jason parksa3cdaa52011-01-13 14:15:43 -0600326 */
Dianne Hackborn3b81bc12011-01-15 11:50:52 -0800327 public static final int FLAG_LARGE_HEAP = 1<<20;
Jason parksa3cdaa52011-01-13 14:15:43 -0600328
329 /**
Dianne Hackborne7f97212011-02-24 14:40:20 -0800330 * Value for {@link #flags}: true if this application's package is in
331 * the stopped state.
332 */
333 public static final int FLAG_STOPPED = 1<<21;
334
335 /**
Fabrice Di Meglio59dfce82012-04-02 16:17:20 -0700336 * Value for {@link #flags}: true when the application is willing to support
337 * RTL (right to left). All activities will inherit this value.
338 *
339 * Set from the {@link android.R.attr#supportsRtl} attribute in the
340 * activity's manifest.
341 *
342 * Default value is false (no support for RTL).
343 */
344 public static final int FLAG_SUPPORTS_RTL = 1<<22;
345
346 /**
Dianne Hackborn7767eac2012-08-23 18:25:40 -0700347 * Value for {@link #flags}: true if the application is currently
348 * installed for the calling user.
349 */
350 public static final int FLAG_INSTALLED = 1<<23;
351
352 /**
Dianne Hackborn5e03e2c2012-09-06 14:21:19 -0700353 * Value for {@link #flags}: true if the application only has its
354 * data installed; the application package itself does not currently
355 * exist on the device.
356 */
357 public static final int FLAG_IS_DATA_ONLY = 1<<24;
358
359 /**
Jeff Sharkey9bc89af2017-01-11 11:25:50 -0700360 * Value for {@link #flags}: true if the application was declared to be a
361 * game, or false if it is a non-game application.
362 *
363 * @deprecated use {@link #CATEGORY_GAME} instead.
Jose Lima12d0b4c2014-03-14 16:55:12 -0700364 */
Jeff Sharkey9bc89af2017-01-11 11:25:50 -0700365 @Deprecated
Jose Lima12d0b4c2014-03-14 16:55:12 -0700366 public static final int FLAG_IS_GAME = 1<<25;
367
368 /**
Christopher Tated1de2562014-06-17 17:12:35 -0700369 * Value for {@link #flags}: {@code true} if the application asks that only
370 * full-data streaming backups of its data be performed even though it defines
371 * a {@link android.app.backup.BackupAgent BackupAgent}, which normally
372 * indicates that the app will manage its backed-up data via incremental
373 * key/value updates.
374 */
375 public static final int FLAG_FULL_BACKUP_ONLY = 1<<26;
376
377 /**
Alex Klyubin01a959d2015-03-18 10:05:45 -0700378 * Value for {@link #flags}: {@code true} if the application may use cleartext network traffic
379 * (e.g., HTTP rather than HTTPS; WebSockets rather than WebSockets Secure; XMPP, IMAP, STMP
380 * without STARTTLS or TLS). If {@code false}, the app declares that it does not intend to use
381 * cleartext network traffic, in which case platform components (e.g., HTTP stacks,
Alex Klyubinfbf45992015-04-21 13:44:29 -0700382 * {@code DownloadManager}, {@code MediaPlayer}) will refuse app's requests to use cleartext
383 * traffic. Third-party libraries are encouraged to honor this flag as well.
384 *
Nate Fischer6a2a5412017-10-23 18:02:41 -0700385 * <p>NOTE: {@code WebView} honors this flag for applications targeting API level 26 and up.
Alex Klyubinfbf45992015-04-21 13:44:29 -0700386 *
Chad Brubaker2df5ba72016-04-11 13:31:24 -0700387 * <p>This flag is ignored on Android N and above if an Android Network Security Config is
388 * present.
389 *
Alex Klyubinfbf45992015-04-21 13:44:29 -0700390 * <p>This flag comes from
391 * {@link android.R.styleable#AndroidManifestApplication_usesCleartextTraffic
392 * android:usesCleartextTraffic} of the &lt;application&gt; tag.
Alex Klyubin01a959d2015-03-18 10:05:45 -0700393 */
394 public static final int FLAG_USES_CLEARTEXT_TRAFFIC = 1<<27;
395
396 /**
Dmitriy Ivanovff193d62014-09-30 15:10:48 -0700397 * When set installer extracts native libs from .apk files.
398 */
399 public static final int FLAG_EXTRACT_NATIVE_LIBS = 1<<28;
400
401 /**
Alan Viveretted70b9e72015-05-27 14:29:20 -0700402 * Value for {@link #flags}: {@code true} when the application's rendering
403 * should be hardware accelerated.
404 */
405 public static final int FLAG_HARDWARE_ACCELERATED = 1<<29;
406
407 /**
Andrei Stingaceanu1e283912015-11-26 15:26:28 +0000408 * Value for {@link #flags}: true if this application's package is in
409 * the suspended state.
410 */
411 public static final int FLAG_SUSPENDED = 1<<30;
412
413 /**
Narayan Kamath589a1bc2014-07-03 14:43:26 +0100414 * Value for {@link #flags}: true if code from this application will need to be
415 * loaded into other applications' processes. On devices that support multiple
416 * instruction sets, this implies the code might be loaded into a process that's
417 * using any of the devices supported instruction sets.
418 *
419 * <p> The system might treat such applications specially, for eg., by
420 * extracting the application's native libraries for all supported instruction
421 * sets or by compiling the application's dex code for all supported instruction
422 * sets.
423 */
424 public static final int FLAG_MULTIARCH = 1 << 31;
Amith Yamasani655d0e22013-06-12 14:19:10 -0700425
426 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800427 * Flags associated with the application. Any combination of
428 * {@link #FLAG_SYSTEM}, {@link #FLAG_DEBUGGABLE}, {@link #FLAG_HAS_CODE},
429 * {@link #FLAG_PERSISTENT}, {@link #FLAG_FACTORY_TEST}, and
430 * {@link #FLAG_ALLOW_TASK_REPARENTING}
Dianne Hackborn851a5412009-05-08 12:06:44 -0700431 * {@link #FLAG_ALLOW_CLEAR_USER_DATA}, {@link #FLAG_UPDATED_SYSTEM_APP},
Dianne Hackborn723738c2009-06-25 19:48:04 -0700432 * {@link #FLAG_TEST_ONLY}, {@link #FLAG_SUPPORTS_SMALL_SCREENS},
433 * {@link #FLAG_SUPPORTS_NORMAL_SCREENS},
Dianne Hackborn14cee9f2010-04-23 17:51:26 -0700434 * {@link #FLAG_SUPPORTS_LARGE_SCREENS}, {@link #FLAG_SUPPORTS_XLARGE_SCREENS},
435 * {@link #FLAG_RESIZEABLE_FOR_SCREENS},
Dianne Hackborn7767eac2012-08-23 18:25:40 -0700436 * {@link #FLAG_SUPPORTS_SCREEN_DENSITIES}, {@link #FLAG_VM_SAFE_MODE},
Alex Klyubinb9f8a522015-02-03 11:12:59 -0800437 * {@link #FLAG_ALLOW_BACKUP}, {@link #FLAG_KILL_AFTER_RESTORE},
438 * {@link #FLAG_RESTORE_ANY_VERSION}, {@link #FLAG_EXTERNAL_STORAGE},
439 * {@link #FLAG_LARGE_HEAP}, {@link #FLAG_STOPPED},
440 * {@link #FLAG_SUPPORTS_RTL}, {@link #FLAG_INSTALLED},
441 * {@link #FLAG_IS_DATA_ONLY}, {@link #FLAG_IS_GAME},
Alex Klyubin7cb000f2015-03-26 11:00:04 -0700442 * {@link #FLAG_FULL_BACKUP_ONLY}, {@link #FLAG_USES_CLEARTEXT_TRAFFIC},
443 * {@link #FLAG_MULTIARCH}.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800444 */
445 public int flags = 0;
Amith Yamasani655d0e22013-06-12 14:19:10 -0700446
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800447 /**
Alex Klyubinb9f8a522015-02-03 11:12:59 -0800448 * Value for {@link #privateFlags}: true if the application is hidden via restrictions and for
449 * most purposes is considered as not installed.
450 * {@hide}
451 */
452 public static final int PRIVATE_FLAG_HIDDEN = 1<<0;
453
454 /**
455 * Value for {@link #privateFlags}: set to <code>true</code> if the application
456 * has reported that it is heavy-weight, and thus can not participate in
457 * the normal application lifecycle.
458 *
459 * <p>Comes from the
460 * android.R.styleable#AndroidManifestApplication_cantSaveState
461 * attribute of the &lt;application&gt; tag.
462 *
463 * {@hide}
464 */
465 public static final int PRIVATE_FLAG_CANT_SAVE_STATE = 1<<1;
466
467 /**
468 * Value for {@link #privateFlags}: Set to true if the application has been
469 * installed using the forward lock option.
470 *
471 * NOTE: DO NOT CHANGE THIS VALUE! It is saved in packages.xml.
472 *
473 * {@hide}
474 */
475 public static final int PRIVATE_FLAG_FORWARD_LOCK = 1<<2;
476
477 /**
478 * Value for {@link #privateFlags}: set to {@code true} if the application
479 * is permitted to hold privileged permissions.
480 *
481 * {@hide}
482 */
Mathew Inwood1c77a112018-08-14 14:06:26 +0100483 @UnsupportedAppUsage
Alex Klyubinb9f8a522015-02-03 11:12:59 -0800484 public static final int PRIVATE_FLAG_PRIVILEGED = 1<<3;
485
486 /**
Svet Ganov2acf0632015-11-24 19:10:59 -0800487 * Value for {@link #privateFlags}: {@code true} if the application has any IntentFiler
488 * with some data URI using HTTP or HTTPS with an associated VIEW action.
Fabrice Di Megliod3d8a322015-04-01 15:58:47 -0700489 *
490 * {@hide}
491 */
492 public static final int PRIVATE_FLAG_HAS_DOMAIN_URLS = 1<<4;
493
494 /**
Jeff Sharkey8a372a02016-03-16 16:25:45 -0600495 * When set, the default data storage directory for this app is pointed at
496 * the device-protected location.
Jeff Sharkey15447792015-11-05 16:18:51 -0800497 *
498 * @hide
499 */
Jeff Sharkey8a372a02016-03-16 16:25:45 -0600500 public static final int PRIVATE_FLAG_DEFAULT_TO_DEVICE_PROTECTED_STORAGE = 1 << 5;
Jeff Sharkey15447792015-11-05 16:18:51 -0800501
502 /**
Jeff Sharkey8a372a02016-03-16 16:25:45 -0600503 * When set, assume that all components under the given app are direct boot
Jeff Sharkeyf9fc6d62015-11-08 16:46:05 -0800504 * aware, unless otherwise specified.
505 *
506 * @hide
507 */
Jeff Sharkey8a372a02016-03-16 16:25:45 -0600508 public static final int PRIVATE_FLAG_DIRECT_BOOT_AWARE = 1 << 6;
Jeff Sharkeyf9fc6d62015-11-08 16:46:05 -0800509
510 /**
Todd Kennedybe0b8892017-02-15 14:13:52 -0800511 * Value for {@link #privateFlags}: {@code true} if the application is installed
512 * as instant app.
513 *
514 * @hide
Chad Brubaker4389c232016-11-04 14:50:50 -0700515 */
Todd Kennedybe0b8892017-02-15 14:13:52 -0800516 public static final int PRIVATE_FLAG_INSTANT = 1 << 7;
Chad Brubaker4389c232016-11-04 14:50:50 -0700517
518 /**
Jeff Sharkey8a372a02016-03-16 16:25:45 -0600519 * When set, at least one component inside this application is direct boot
520 * aware.
Jeff Sharkey8924e872015-11-30 12:52:10 -0700521 *
522 * @hide
523 */
Jeff Sharkey8a372a02016-03-16 16:25:45 -0600524 public static final int PRIVATE_FLAG_PARTIALLY_DIRECT_BOOT_AWARE = 1 << 8;
Jeff Sharkey8924e872015-11-30 12:52:10 -0700525
Fyodor Kupolovf99104d2015-12-14 11:31:29 -0800526
527 /**
Fyodor Kupolovbdbc9692015-12-14 13:11:13 -0800528 * When set, signals that the application is required for the system user and should not be
529 * uninstalled.
530 *
531 * @hide
532 */
Chad Brubaker4389c232016-11-04 14:50:50 -0700533 public static final int PRIVATE_FLAG_REQUIRED_FOR_SYSTEM_USER = 1 << 9;
Fyodor Kupolovbdbc9692015-12-14 13:11:13 -0800534
535 /**
Wale Ogunwalee633eb02017-03-30 12:57:29 -0700536 * When set, the application explicitly requested that its activities be resizeable by default.
Wale Ogunwale6afdf912016-01-30 13:01:33 -0800537 * @see android.R.styleable#AndroidManifestActivity_resizeableActivity
538 *
539 * @hide
540 */
Wale Ogunwalee633eb02017-03-30 12:57:29 -0700541 public static final int PRIVATE_FLAG_ACTIVITIES_RESIZE_MODE_RESIZEABLE = 1 << 10;
542
543 /**
544 * When set, the application explicitly requested that its activities *not* be resizeable by
545 * default.
546 * @see android.R.styleable#AndroidManifestActivity_resizeableActivity
547 *
548 * @hide
549 */
550 public static final int PRIVATE_FLAG_ACTIVITIES_RESIZE_MODE_UNRESIZEABLE = 1 << 11;
Wale Ogunwale72a73e32016-10-13 12:16:39 -0700551
552 /**
553 * The application isn't requesting explicitly requesting for its activities to be resizeable or
554 * non-resizeable by default. So, we are making it activities resizeable by default based on the
555 * target SDK version of the app.
556 * @see android.R.styleable#AndroidManifestActivity_resizeableActivity
557 *
558 * NOTE: This only affects apps with target SDK >= N where the resizeableActivity attribute was
559 * introduced. It shouldn't be confused with {@link ActivityInfo#RESIZE_MODE_FORCE_RESIZEABLE}
560 * where certain pre-N apps are forced to the resizeable.
561 *
562 * @hide
563 */
Wale Ogunwalee633eb02017-03-30 12:57:29 -0700564 public static final int PRIVATE_FLAG_ACTIVITIES_RESIZE_MODE_RESIZEABLE_VIA_SDK_VERSION =
565 1 << 12;
Wale Ogunwale6afdf912016-01-30 13:01:33 -0800566
567 /**
Christopher Tate43fbc5f2016-02-17 18:00:48 -0800568 * Value for {@link #privateFlags}: {@code true} means the OS should go ahead and
569 * run full-data backup operations for the app even when it is in a
570 * foreground-equivalent run state. Defaults to {@code false} if unspecified.
571 * @hide
572 */
Wale Ogunwalee633eb02017-03-30 12:57:29 -0700573 public static final int PRIVATE_FLAG_BACKUP_IN_FOREGROUND = 1 << 13;
Christopher Tate43fbc5f2016-02-17 18:00:48 -0800574
575 /**
Svet Ganov67882122016-12-11 16:36:34 -0800576 * Value for {@link #privateFlags}: {@code true} means this application
577 * contains a static shared library. Defaults to {@code false} if unspecified.
578 * @hide
579 */
Wale Ogunwalee633eb02017-03-30 12:57:29 -0700580 public static final int PRIVATE_FLAG_STATIC_SHARED_LIBRARY = 1 << 14;
Svet Ganov67882122016-12-11 16:36:34 -0800581
582 /**
Todd Kennedy5eb5a7d2017-08-01 07:42:47 -0700583 * Value for {@link #privateFlags}: When set, the application will only have its splits loaded
Adam Lesinski4e862812016-11-21 16:02:24 -0800584 * if they are required to load a component. Splits can be loaded on demand using the
585 * {@link Context#createContextForSplit(String)} API.
586 * @hide
587 */
Wale Ogunwalee633eb02017-03-30 12:57:29 -0700588 public static final int PRIVATE_FLAG_ISOLATED_SPLIT_LOADING = 1 << 15;
Adam Lesinski4e862812016-11-21 16:02:24 -0800589
590 /**
Todd Kennedy5eb5a7d2017-08-01 07:42:47 -0700591 * Value for {@link #privateFlags}: When set, the application was installed as
592 * a virtual preload.
593 * @hide
Alex Klyubinb9f8a522015-02-03 11:12:59 -0800594 */
Todd Kennedy5eb5a7d2017-08-01 07:42:47 -0700595 public static final int PRIVATE_FLAG_VIRTUAL_PRELOAD = 1 << 16;
596
Svet Ganov087dce22017-09-07 15:42:16 -0700597 /**
Mathew Inwood9d895432018-04-04 16:08:21 +0100598 * Value for {@link #privateFlags}: whether this app is pre-installed on the
Svet Ganov087dce22017-09-07 15:42:16 -0700599 * OEM partition of the system image.
600 * @hide
601 */
602 public static final int PRIVATE_FLAG_OEM = 1 << 17;
603
Jiyong Park002fdbd2017-02-13 20:50:31 +0900604 /**
Mathew Inwood9d895432018-04-04 16:08:21 +0100605 * Value for {@link #privateFlags}: whether this app is pre-installed on the
Jiyong Park002fdbd2017-02-13 20:50:31 +0900606 * vendor partition of the system image.
607 * @hide
608 */
609 public static final int PRIVATE_FLAG_VENDOR = 1 << 18;
610
Jaekyun Seok1713d9e2018-01-12 21:47:26 +0900611 /**
Mathew Inwood9d895432018-04-04 16:08:21 +0100612 * Value for {@link #privateFlags}: whether this app is pre-installed on the
Jaekyun Seok1713d9e2018-01-12 21:47:26 +0900613 * product partition of the system image.
614 * @hide
615 */
616 public static final int PRIVATE_FLAG_PRODUCT = 1 << 19;
617
Mathew Inwood9d895432018-04-04 16:08:21 +0100618 /**
619 * Value for {@link #privateFlags}: whether this app is signed with the
620 * platform key.
621 * @hide
622 */
623 public static final int PRIVATE_FLAG_SIGNED_WITH_PLATFORM_KEY = 1 << 20;
624
David Brazdilfa5e8362018-09-06 09:49:14 +0100625 /**
626 * Indicates whether this package requires access to non-SDK APIs.
627 * Only system apps and tests are allowed to use this property.
628 * @hide
629 */
630 public static final int PRIVATE_FLAG_USES_NON_SDK_API = 1 << 22;
631
Todd Kennedy5eb5a7d2017-08-01 07:42:47 -0700632 /** @hide */
633 @IntDef(flag = true, prefix = { "PRIVATE_FLAG_" }, value = {
Svet Ganov087dce22017-09-07 15:42:16 -0700634 PRIVATE_FLAG_ACTIVITIES_RESIZE_MODE_RESIZEABLE,
635 PRIVATE_FLAG_ACTIVITIES_RESIZE_MODE_RESIZEABLE_VIA_SDK_VERSION,
636 PRIVATE_FLAG_ACTIVITIES_RESIZE_MODE_UNRESIZEABLE,
637 PRIVATE_FLAG_BACKUP_IN_FOREGROUND,
Todd Kennedy5eb5a7d2017-08-01 07:42:47 -0700638 PRIVATE_FLAG_CANT_SAVE_STATE,
Todd Kennedy5eb5a7d2017-08-01 07:42:47 -0700639 PRIVATE_FLAG_DEFAULT_TO_DEVICE_PROTECTED_STORAGE,
640 PRIVATE_FLAG_DIRECT_BOOT_AWARE,
Svet Ganov087dce22017-09-07 15:42:16 -0700641 PRIVATE_FLAG_FORWARD_LOCK,
642 PRIVATE_FLAG_HAS_DOMAIN_URLS,
643 PRIVATE_FLAG_HIDDEN,
Todd Kennedy5eb5a7d2017-08-01 07:42:47 -0700644 PRIVATE_FLAG_INSTANT,
Todd Kennedy5eb5a7d2017-08-01 07:42:47 -0700645 PRIVATE_FLAG_ISOLATED_SPLIT_LOADING,
Svet Ganov087dce22017-09-07 15:42:16 -0700646 PRIVATE_FLAG_OEM,
647 PRIVATE_FLAG_PARTIALLY_DIRECT_BOOT_AWARE,
648 PRIVATE_FLAG_PRIVILEGED,
Jaekyun Seok1713d9e2018-01-12 21:47:26 +0900649 PRIVATE_FLAG_PRODUCT,
Svet Ganov087dce22017-09-07 15:42:16 -0700650 PRIVATE_FLAG_REQUIRED_FOR_SYSTEM_USER,
Mathew Inwood9d895432018-04-04 16:08:21 +0100651 PRIVATE_FLAG_SIGNED_WITH_PLATFORM_KEY,
Svet Ganov087dce22017-09-07 15:42:16 -0700652 PRIVATE_FLAG_STATIC_SHARED_LIBRARY,
Jiyong Park002fdbd2017-02-13 20:50:31 +0900653 PRIVATE_FLAG_VENDOR,
Todd Kennedy5eb5a7d2017-08-01 07:42:47 -0700654 PRIVATE_FLAG_VIRTUAL_PRELOAD,
655 })
656 @Retention(RetentionPolicy.SOURCE)
657 public @interface ApplicationInfoPrivateFlags {}
658
659 /**
660 * Private/hidden flags. See {@code PRIVATE_FLAG_...} constants.
661 * @hide
662 */
Mathew Inwood1c77a112018-08-14 14:06:26 +0100663 @UnsupportedAppUsage
Todd Kennedy5eb5a7d2017-08-01 07:42:47 -0700664 public @ApplicationInfoPrivateFlags int privateFlags;
Alex Klyubinb9f8a522015-02-03 11:12:59 -0800665
666 /**
Clara Bayarri4b5a4d22017-01-27 20:15:45 +0000667 * @hide
668 */
669 public static final String METADATA_PRELOADED_FONTS = "preloaded_fonts";
670
671 /**
Dianne Hackborndf6e9802011-05-26 14:20:23 -0700672 * The required smallest screen width the application can run on. If 0,
673 * nothing has been specified. Comes from
674 * {@link android.R.styleable#AndroidManifestSupportsScreens_requiresSmallestWidthDp
675 * android:requiresSmallestWidthDp} attribute of the &lt;supports-screens&gt; tag.
676 */
677 public int requiresSmallestWidthDp = 0;
678
679 /**
680 * The maximum smallest screen width the application is designed for. If 0,
681 * nothing has been specified. Comes from
682 * {@link android.R.styleable#AndroidManifestSupportsScreens_compatibleWidthLimitDp
683 * android:compatibleWidthLimitDp} attribute of the &lt;supports-screens&gt; tag.
684 */
685 public int compatibleWidthLimitDp = 0;
686
687 /**
Dianne Hackborn2762ff32011-06-01 21:27:05 -0700688 * The maximum smallest screen width the application will work on. If 0,
689 * nothing has been specified. Comes from
690 * {@link android.R.styleable#AndroidManifestSupportsScreens_largestWidthLimitDp
691 * android:largestWidthLimitDp} attribute of the &lt;supports-screens&gt; tag.
692 */
693 public int largestWidthLimitDp = 0;
694
Jeff Sharkey61128602017-01-26 17:07:35 -0700695 /**
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -0700696 * Value indicating the maximum aspect ratio the application supports.
697 * <p>
698 * 0 means unset.
699 * @See {@link android.R.attr#maxAspectRatio}.
700 * @hide
701 */
702 public float maxAspectRatio;
703
Jeff Sharkey789a8fc2017-04-16 13:18:35 -0600704 /** @removed */
705 @Deprecated
706 public String volumeUuid;
707
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -0700708 /**
Jeff Sharkey61128602017-01-26 17:07:35 -0700709 * UUID of the storage volume on which this application is being hosted. For
710 * apps hosted on the default internal storage at
Jeff Sharkey789a8fc2017-04-16 13:18:35 -0600711 * {@link Environment#getDataDirectory()}, the UUID value is
712 * {@link StorageManager#UUID_DEFAULT}.
Jeff Sharkey61128602017-01-26 17:07:35 -0700713 */
Jeff Sharkey789a8fc2017-04-16 13:18:35 -0600714 public UUID storageUuid;
Jeff Sharkey61128602017-01-26 17:07:35 -0700715
Jeff Sharkeyb2b9ab82015-04-05 21:10:42 -0700716 /** {@hide} */
Mathew Inwood1c77a112018-08-14 14:06:26 +0100717 @UnsupportedAppUsage
Jeff Sharkeyd7460572014-07-06 20:44:55 -0700718 public String scanSourceDir;
719 /** {@hide} */
Mathew Inwood1c77a112018-08-14 14:06:26 +0100720 @UnsupportedAppUsage
Jeff Sharkeyd7460572014-07-06 20:44:55 -0700721 public String scanPublicSourceDir;
722
Dianne Hackborn2762ff32011-06-01 21:27:05 -0700723 /**
Jeff Sharkey8a4c9722014-06-16 13:48:42 -0700724 * Full path to the base APK for this application.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800725 */
726 public String sourceDir;
727
728 /**
Jeff Sharkey8a4c9722014-06-16 13:48:42 -0700729 * Full path to the publicly available parts of {@link #sourceDir},
730 * including resources and manifest. This may be different from
731 * {@link #sourceDir} if an application is forward locked.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800732 */
733 public String publicSourceDir;
Jeff Sharkey8a4c9722014-06-16 13:48:42 -0700734
735 /**
Adam Lesinski4e862812016-11-21 16:02:24 -0800736 * The names of all installed split APKs, ordered lexicographically.
737 */
738 public String[] splitNames;
739
740 /**
741 * Full paths to zero or more split APKs, indexed by the same order as {@link #splitNames}.
Jeff Sharkey8a4c9722014-06-16 13:48:42 -0700742 */
743 public String[] splitSourceDirs;
744
745 /**
746 * Full path to the publicly available parts of {@link #splitSourceDirs},
747 * including resources and manifest. This may be different from
748 * {@link #splitSourceDirs} if an application is forward locked.
Adam Lesinski4e862812016-11-21 16:02:24 -0800749 *
750 * @see #splitSourceDirs
Jeff Sharkey8a4c9722014-06-16 13:48:42 -0700751 */
752 public String[] splitPublicSourceDirs;
753
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800754 /**
Adam Lesinski4e862812016-11-21 16:02:24 -0800755 * Maps the dependencies between split APKs. All splits implicitly depend on the base APK.
756 *
757 * Available since platform version O.
758 *
759 * Only populated if the application opts in to isolated split loading via the
760 * {@link android.R.attr.isolatedSplits} attribute in the &lt;manifest&gt; tag of the app's
761 * AndroidManifest.xml.
762 *
763 * The keys and values are all indices into the {@link #splitNames}, {@link #splitSourceDirs},
764 * and {@link #splitPublicSourceDirs} arrays.
Adam Lesinski1665d0f2017-03-10 14:46:57 -0800765 * Each key represents a split and its value is an array of splits. The first element of this
766 * array is the parent split, and the rest are configuration splits. These configuration splits
767 * have no dependencies themselves.
Adam Lesinski4e862812016-11-21 16:02:24 -0800768 * Cycles do not exist because they are illegal and screened for during installation.
769 *
770 * May be null if no splits are installed, or if no dependencies exist between them.
Calin Juravleda098152017-09-01 17:30:01 -0700771 *
772 * NOTE: Any change to the way split dependencies are stored must update the logic that
773 * creates the class loader context for dexopt (DexoptUtils#getClassLoaderContexts).
774 *
Adam Lesinski4e862812016-11-21 16:02:24 -0800775 * @hide
776 */
Adam Lesinski1665d0f2017-03-10 14:46:57 -0800777 public SparseArray<int[]> splitDependencies;
Adam Lesinski4e862812016-11-21 16:02:24 -0800778
779 /**
780 * Full paths to the locations of extra resource packages (runtime overlays)
781 * this application uses. This field is only used if there are extra resource
782 * packages, otherwise it is null.
783 *
Kenny Rootace5a3f2010-02-05 12:59:28 -0800784 * {@hide}
Kenny Rootd1ab0162010-01-21 17:27:14 -0800785 */
Mathew Inwood1c77a112018-08-14 14:06:26 +0100786 @UnsupportedAppUsage
Kenny Rootd1ab0162010-01-21 17:27:14 -0800787 public String[] resourceDirs;
788
789 /**
Jeff Vander Stoepcab36392018-03-06 15:52:22 -0800790 * String retrieved from the seinfo tag found in selinux policy. This value can be set through
791 * the mac_permissions.xml policy construct. This value is used for setting an SELinux security
792 * context on the process as well as its data directory.
Robert Craig0f40dc92013-03-25 06:33:03 -0400793 *
794 * {@hide}
795 */
Jeff Vander Stoepcab36392018-03-06 15:52:22 -0800796 public String seInfo;
Todd Kennedybe0b8892017-02-15 14:13:52 -0800797
798 /**
799 * The seinfo tag generated per-user. This value may change based upon the
800 * user's configuration. For example, when an instant app is installed for
801 * a user. It is an error if this field is ever {@code null} when trying to
802 * start a new process.
803 * <p>NOTE: We need to separate this out because we modify per-user values
804 * multiple times. This needs to be refactored since we're performing more
805 * work than necessary and these values should only be set once. When that
806 * happens, we can merge the per-user value with the seInfo state above.
807 *
808 * {@hide}
809 */
810 public String seInfoUser;
Robert Craig0f40dc92013-03-25 06:33:03 -0400811
812 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800813 * Paths to all shared libraries this application is linked against. This
814 * field is only set if the {@link PackageManager#GET_SHARED_LIBRARY_FILES
815 * PackageManager.GET_SHARED_LIBRARY_FILES} flag was used when retrieving
816 * the structure.
817 */
818 public String[] sharedLibraryFiles;
Nicolas Geoffray972b39e2018-11-15 12:59:52 +0000819
820 /**
821 * List of all shared libraries this application is linked against. This
822 * field is only set if the {@link PackageManager#GET_SHARED_LIBRARY_FILES
823 * PackageManager.GET_SHARED_LIBRARY_FILES} flag was used when retrieving
824 * the structure.
825 *
826 * {@hide}
827 */
828 public List<SharedLibraryInfo> sharedLibraryInfos;
829
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800830 /**
Jeff Sharkey7a30a302015-12-08 14:20:06 -0700831 * Full path to the default directory assigned to the package for its
832 * persistent data.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800833 */
834 public String dataDir;
Kenny Root85387d72010-08-26 10:13:11 -0700835
Jeff Sharkey7a30a302015-12-08 14:20:06 -0700836 /**
Jeff Sharkey8a372a02016-03-16 16:25:45 -0600837 * Full path to the device-protected directory assigned to the package for
Jeff Sharkey7a30a302015-12-08 14:20:06 -0700838 * its persistent data.
Jeff Sharkey8a372a02016-03-16 16:25:45 -0600839 *
840 * @see Context#createDeviceProtectedStorageContext()
Jeff Sharkey7a30a302015-12-08 14:20:06 -0700841 */
Jeff Sharkey8a372a02016-03-16 16:25:45 -0600842 public String deviceProtectedDataDir;
843
Jeff Sharkey7a30a302015-12-08 14:20:06 -0700844 /**
Jeff Sharkey8a372a02016-03-16 16:25:45 -0600845 * Full path to the credential-protected directory assigned to the package
Jeff Sharkey7a30a302015-12-08 14:20:06 -0700846 * for its persistent data.
Jeff Sharkey8a372a02016-03-16 16:25:45 -0600847 *
848 * @hide
Jeff Sharkey7a30a302015-12-08 14:20:06 -0700849 */
Jeff Sharkey8a372a02016-03-16 16:25:45 -0600850 @SystemApi
851 public String credentialProtectedDataDir;
852
Kenny Root85387d72010-08-26 10:13:11 -0700853 /**
854 * Full path to the directory where native JNI libraries are stored.
Kenny Root85387d72010-08-26 10:13:11 -0700855 */
856 public String nativeLibraryDir;
857
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800858 /**
Narayan Kamath7dba6eb2014-07-16 08:53:30 +0100859 * Full path where unpacked native libraries for {@link #secondaryCpuAbi}
860 * are stored, if present.
861 *
862 * The main reason this exists is for bundled multi-arch apps, where
863 * it's not trivial to calculate the location of libs for the secondary abi
864 * given the location of the primary.
865 *
866 * TODO: Change the layout of bundled installs so that we can use
867 * nativeLibraryRootDir & nativeLibraryRootRequiresIsa there as well.
868 * (e.g {@code [ "/system/app-lib/Foo/arm", "/system/app-lib/Foo/arm64" ]}
869 * instead of {@code [ "/system/lib/Foo", "/system/lib64/Foo" ]}.
870 *
871 * @hide
872 */
Mathew Inwood1c77a112018-08-14 14:06:26 +0100873 @UnsupportedAppUsage
Narayan Kamath7dba6eb2014-07-16 08:53:30 +0100874 public String secondaryNativeLibraryDir;
875
876 /**
Jeff Sharkey84f12942014-07-10 17:48:11 -0700877 * The root path where unpacked native libraries are stored.
878 * <p>
879 * When {@link #nativeLibraryRootRequiresIsa} is set, the libraries are
880 * placed in ISA-specific subdirectories under this path, otherwise the
881 * libraries are placed directly at this path.
Narayan Kamathff110bd2014-07-04 18:30:45 +0100882 *
Jeff Sharkey84f12942014-07-10 17:48:11 -0700883 * @hide
Narayan Kamathff110bd2014-07-04 18:30:45 +0100884 */
Mathew Inwood1c77a112018-08-14 14:06:26 +0100885 @UnsupportedAppUsage
Jeff Sharkey84f12942014-07-10 17:48:11 -0700886 public String nativeLibraryRootDir;
887
888 /**
889 * Flag indicating that ISA must be appended to
890 * {@link #nativeLibraryRootDir} to be useful.
891 *
892 * @hide
893 */
894 public boolean nativeLibraryRootRequiresIsa;
Narayan Kamathff110bd2014-07-04 18:30:45 +0100895
896 /**
897 * The primary ABI that this application requires, This is inferred from the ABIs
Ramin Zaghiff0c4702014-04-01 15:02:29 +0100898 * of the native JNI libraries the application bundles. Will be {@code null}
899 * if this application does not require any particular ABI.
900 *
Narayan Kamathff110bd2014-07-04 18:30:45 +0100901 * If non-null, the application will always be launched with this ABI.
902 *
Ramin Zaghiff0c4702014-04-01 15:02:29 +0100903 * {@hide}
904 */
Mathew Inwood1c77a112018-08-14 14:06:26 +0100905 @UnsupportedAppUsage
Narayan Kamathff110bd2014-07-04 18:30:45 +0100906 public String primaryCpuAbi;
907
908 /**
909 * The secondary ABI for this application. Might be non-null for multi-arch
910 * installs. The application itself never uses this ABI, but other applications that
911 * use its code might.
912 *
913 * {@hide}
914 */
Mathew Inwood1c77a112018-08-14 14:06:26 +0100915 @UnsupportedAppUsage
Narayan Kamathff110bd2014-07-04 18:30:45 +0100916 public String secondaryCpuAbi;
917
918 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800919 * The kernel user-ID that has been assigned to this application;
920 * currently this is not a unique ID (multiple applications can have
921 * the same uid).
922 */
923 public int uid;
924
Mitsuru Oshima8d112672009-04-27 12:01:23 -0700925 /**
Todd Kennedy89d60182016-03-11 11:18:32 -0800926 * The minimum SDK version this application can run on. It will not run
927 * on earlier versions.
928 */
Todd Kennedy6e2e7f52016-05-02 14:56:45 -0700929 public int minSdkVersion;
Todd Kennedy89d60182016-03-11 11:18:32 -0800930
931 /**
Dianne Hackborn3b3e1452009-09-24 19:22:12 -0700932 * The minimum SDK version this application targets. It may run on earlier
Dianne Hackborna96cbb42009-05-13 15:06:13 -0700933 * versions, but it knows how to work with any new behavior added at this
934 * version. Will be {@link android.os.Build.VERSION_CODES#CUR_DEVELOPMENT}
935 * if this is a development build and the app is targeting that. You should
936 * compare that this number is >= the SDK version number at which your
937 * behavior was introduced.
938 */
939 public int targetSdkVersion;
Dianne Hackborn8472e612014-01-23 17:57:20 -0800940
941 /**
942 * The app's declared version code.
943 * @hide
944 */
Patrick Baumannc2def582018-04-04 12:14:15 -0700945 public long longVersionCode;
946
947 /**
948 * An integer representation of the app's declared version code. This is being left in place as
949 * some apps were using reflection to access it before the move to long in
950 * {@link android.os.Build.VERSION_CODES#P}
951 * @deprecated Use {@link #longVersionCode} instead.
952 * @hide
953 */
954 @Deprecated
Mathew Inwood1c77a112018-08-14 14:06:26 +0100955 @UnsupportedAppUsage
Patrick Baumannc2def582018-04-04 12:14:15 -0700956 public int versionCode;
Dianne Hackborn8472e612014-01-23 17:57:20 -0800957
Dianne Hackborna96cbb42009-05-13 15:06:13 -0700958 /**
Alan Viveretteb6a25732017-11-21 14:49:24 -0500959 * The user-visible SDK version (ex. 26) of the framework against which the application claims
960 * to have been compiled, or {@code 0} if not specified.
961 * <p>
962 * This property is the compile-time equivalent of
963 * {@link android.os.Build.VERSION#CODENAME Build.VERSION.SDK_INT}.
964 *
965 * @hide For platform use only; we don't expect developers to need to read this value.
966 */
967 public int compileSdkVersion;
968
969 /**
970 * The development codename (ex. "O", "REL") of the framework against which the application
971 * claims to have been compiled, or {@code null} if not specified.
972 * <p>
973 * This property is the compile-time equivalent of
974 * {@link android.os.Build.VERSION#CODENAME Build.VERSION.CODENAME}.
975 *
976 * @hide For platform use only; we don't expect developers to need to read this value.
977 */
978 @Nullable
979 public String compileSdkVersionCodename;
980
981 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800982 * When false, indicates that all components within this application are
983 * considered disabled, regardless of their individually set enabled status.
984 */
985 public boolean enabled = true;
986
Dianne Hackborn54e570f2010-10-04 18:32:32 -0700987 /**
Dianne Hackborn0ac30312011-06-17 14:49:23 -0700988 * For convenient access to the current enabled setting of this app.
989 * @hide
990 */
Mathew Inwood1c77a112018-08-14 14:06:26 +0100991 @UnsupportedAppUsage
Dianne Hackborn0ac30312011-06-17 14:49:23 -0700992 public int enabledSetting = PackageManager.COMPONENT_ENABLED_STATE_DEFAULT;
993
994 /**
Dianne Hackborn54e570f2010-10-04 18:32:32 -0700995 * For convenient access to package's install location.
996 * @hide
997 */
Mathew Inwood1c77a112018-08-14 14:06:26 +0100998 @UnsupportedAppUsage
Dianne Hackborn54e570f2010-10-04 18:32:32 -0700999 public int installLocation = PackageInfo.INSTALL_LOCATION_UNSPECIFIED;
Jose Lima12d0b4c2014-03-14 16:55:12 -07001000
Chad Brubakerc845b2a2016-05-13 14:09:27 -07001001 /**
1002 * Resource file providing the application's Network Security Config.
1003 * @hide
1004 */
1005 public int networkSecurityConfigRes;
1006
Jeff Sharkey9bc89af2017-01-11 11:25:50 -07001007 /**
Todd Kennedy11e45072017-01-25 13:24:21 -08001008 * Version of the sandbox the application wants to run in.
1009 * @hide
1010 */
Patrick Baumann159cd022018-01-11 13:25:05 -08001011 @SystemApi
Todd Kennedy11e45072017-01-25 13:24:21 -08001012 public int targetSandboxVersion;
1013
1014 /**
Jason Monka80bfb52017-11-16 17:15:37 -05001015 * The factory of this package, as specified by the &lt;manifest&gt;
1016 * tag's {@link android.R.styleable#AndroidManifestApplication_appComponentFactory}
1017 * attribute.
1018 */
1019 public String appComponentFactory;
1020
1021 /**
Jeff Sharkey9bc89af2017-01-11 11:25:50 -07001022 * The category of this app. Categories are used to cluster multiple apps
1023 * together into meaningful groups, such as when summarizing battery,
1024 * network, or disk usage. Apps should only define this value when they fit
1025 * well into one of the specific categories.
1026 * <p>
1027 * Set from the {@link android.R.attr#appCategory} attribute in the
1028 * manifest. If the manifest doesn't define a category, this value may have
1029 * been provided by the installer via
1030 * {@link PackageManager#setApplicationCategoryHint(String, int)}.
1031 */
1032 public @Category int category = CATEGORY_UNDEFINED;
1033
1034 /** {@hide} */
Jeff Sharkey4347f812017-04-21 12:08:39 -06001035 @IntDef(prefix = { "CATEGORY_" }, value = {
Jeff Sharkey9bc89af2017-01-11 11:25:50 -07001036 CATEGORY_UNDEFINED,
1037 CATEGORY_GAME,
1038 CATEGORY_AUDIO,
1039 CATEGORY_VIDEO,
1040 CATEGORY_IMAGE,
1041 CATEGORY_SOCIAL,
1042 CATEGORY_NEWS,
1043 CATEGORY_MAPS,
1044 CATEGORY_PRODUCTIVITY
1045 })
1046 @Retention(RetentionPolicy.SOURCE)
1047 public @interface Category {
1048 }
1049
1050 /**
1051 * Value when category is undefined.
1052 *
1053 * @see #category
1054 */
1055 public static final int CATEGORY_UNDEFINED = -1;
1056
1057 /**
1058 * Category for apps which are primarily games.
1059 *
1060 * @see #category
1061 */
1062 public static final int CATEGORY_GAME = 0;
1063
1064 /**
1065 * Category for apps which primarily work with audio or music, such as music
1066 * players.
1067 *
1068 * @see #category
1069 */
1070 public static final int CATEGORY_AUDIO = 1;
1071
1072 /**
1073 * Category for apps which primarily work with video or movies, such as
1074 * streaming video apps.
1075 *
1076 * @see #category
1077 */
1078 public static final int CATEGORY_VIDEO = 2;
1079
1080 /**
1081 * Category for apps which primarily work with images or photos, such as
1082 * camera or gallery apps.
1083 *
1084 * @see #category
1085 */
1086 public static final int CATEGORY_IMAGE = 3;
1087
1088 /**
1089 * Category for apps which are primarily social apps, such as messaging,
Jeff Sharkeyd2b69102017-03-21 19:40:38 -06001090 * communication, email, or social network apps.
Jeff Sharkey9bc89af2017-01-11 11:25:50 -07001091 *
1092 * @see #category
1093 */
1094 public static final int CATEGORY_SOCIAL = 4;
1095
1096 /**
1097 * Category for apps which are primarily news apps, such as newspapers,
1098 * magazines, or sports apps.
1099 *
1100 * @see #category
1101 */
1102 public static final int CATEGORY_NEWS = 5;
1103
1104 /**
1105 * Category for apps which are primarily maps apps, such as navigation apps.
1106 *
1107 * @see #category
1108 */
1109 public static final int CATEGORY_MAPS = 6;
1110
1111 /**
1112 * Category for apps which are primarily productivity apps, such as cloud
1113 * storage or workplace apps.
1114 *
1115 * @see #category
1116 */
1117 public static final int CATEGORY_PRODUCTIVITY = 7;
1118
1119 /**
1120 * Return a concise, localized title for the given
1121 * {@link ApplicationInfo#category} value, or {@code null} for unknown
1122 * values such as {@link #CATEGORY_UNDEFINED}.
1123 *
1124 * @see #category
1125 */
1126 public static CharSequence getCategoryTitle(Context context, @Category int category) {
1127 switch (category) {
1128 case ApplicationInfo.CATEGORY_GAME:
1129 return context.getText(com.android.internal.R.string.app_category_game);
1130 case ApplicationInfo.CATEGORY_AUDIO:
1131 return context.getText(com.android.internal.R.string.app_category_audio);
1132 case ApplicationInfo.CATEGORY_VIDEO:
1133 return context.getText(com.android.internal.R.string.app_category_video);
1134 case ApplicationInfo.CATEGORY_IMAGE:
1135 return context.getText(com.android.internal.R.string.app_category_image);
1136 case ApplicationInfo.CATEGORY_SOCIAL:
1137 return context.getText(com.android.internal.R.string.app_category_social);
1138 case ApplicationInfo.CATEGORY_NEWS:
1139 return context.getText(com.android.internal.R.string.app_category_news);
1140 case ApplicationInfo.CATEGORY_MAPS:
1141 return context.getText(com.android.internal.R.string.app_category_maps);
1142 case ApplicationInfo.CATEGORY_PRODUCTIVITY:
1143 return context.getText(com.android.internal.R.string.app_category_productivity);
1144 default:
1145 return null;
1146 }
1147 }
1148
Narayan Kamathf9419f02017-06-15 11:35:38 +01001149 /** @hide */
1150 public String classLoaderName;
1151
1152 /** @hide */
1153 public String[] splitClassLoaderNames;
1154
Rhed Jaoc19da782018-06-13 11:16:16 +08001155 /** @hide */
1156 public boolean hiddenUntilInstalled;
1157
Mathew Inwoode3299532018-02-22 13:19:53 +00001158 /**
1159 * Represents the default policy. The actual policy used will depend on other properties of
1160 * the application, e.g. the target SDK version.
1161 * @hide
1162 */
1163 public static final int HIDDEN_API_ENFORCEMENT_DEFAULT = -1;
1164 /**
1165 * No API enforcement; the app can access the entire internal private API. Only for use by
1166 * system apps.
1167 * @hide
1168 */
David Brazdildf1c7dc2018-10-26 16:23:59 +01001169 public static final int HIDDEN_API_ENFORCEMENT_DISABLED = 0;
Mathew Inwoode3299532018-02-22 13:19:53 +00001170 /**
Mathew Inwooda6d02fb2018-04-05 15:44:20 +01001171 * No API enforcement, but enable the detection logic and warnings. Observed behaviour is the
David Brazdildf1c7dc2018-10-26 16:23:59 +01001172 * same as {@link #HIDDEN_API_ENFORCEMENT_DISABLED} but you may see warnings in the log when
1173 * APIs are accessed.
Mathew Inwoode3299532018-02-22 13:19:53 +00001174 * @hide
1175 * */
Mathew Inwooda6d02fb2018-04-05 15:44:20 +01001176 public static final int HIDDEN_API_ENFORCEMENT_JUST_WARN = 1;
Mathew Inwoode3299532018-02-22 13:19:53 +00001177 /**
1178 * Dark grey list enforcement. Enforces the dark grey and black lists
1179 * @hide
1180 */
David Brazdildf1c7dc2018-10-26 16:23:59 +01001181 public static final int HIDDEN_API_ENFORCEMENT_ENABLED = 2;
Mathew Inwoode3299532018-02-22 13:19:53 +00001182
David Brazdildf1c7dc2018-10-26 16:23:59 +01001183 private static final int HIDDEN_API_ENFORCEMENT_MIN = HIDDEN_API_ENFORCEMENT_DEFAULT;
1184 private static final int HIDDEN_API_ENFORCEMENT_MAX = HIDDEN_API_ENFORCEMENT_ENABLED;
Mathew Inwoode3299532018-02-22 13:19:53 +00001185
1186 /**
1187 * Values in this IntDef MUST be kept in sync with enum hiddenapi::EnforcementPolicy in
1188 * art/runtime/hidden_api.h
1189 * @hide
1190 */
1191 @IntDef(prefix = { "HIDDEN_API_ENFORCEMENT_" }, value = {
1192 HIDDEN_API_ENFORCEMENT_DEFAULT,
David Brazdildf1c7dc2018-10-26 16:23:59 +01001193 HIDDEN_API_ENFORCEMENT_DISABLED,
Mathew Inwooda6d02fb2018-04-05 15:44:20 +01001194 HIDDEN_API_ENFORCEMENT_JUST_WARN,
David Brazdildf1c7dc2018-10-26 16:23:59 +01001195 HIDDEN_API_ENFORCEMENT_ENABLED,
Mathew Inwoode3299532018-02-22 13:19:53 +00001196 })
1197 @Retention(RetentionPolicy.SOURCE)
1198 public @interface HiddenApiEnforcementPolicy {}
1199
Mathew Inwood1ab30252018-04-03 14:47:26 +01001200 /** @hide */
1201 public static boolean isValidHiddenApiEnforcementPolicy(int policy) {
David Brazdildf1c7dc2018-10-26 16:23:59 +01001202 return policy >= HIDDEN_API_ENFORCEMENT_MIN && policy <= HIDDEN_API_ENFORCEMENT_MAX;
Mathew Inwoode3299532018-02-22 13:19:53 +00001203 }
1204
1205 private int mHiddenApiPolicy = HIDDEN_API_ENFORCEMENT_DEFAULT;
1206
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001207 public void dump(Printer pw, String prefix) {
Dianne Hackborn6ac42ae2015-12-08 17:22:10 -08001208 dump(pw, prefix, DUMP_FLAG_ALL);
1209 }
1210
1211 /** @hide */
Yohei Yukawa8f272172017-08-31 00:26:01 -07001212 public void dump(Printer pw, String prefix, int dumpFlags) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001213 super.dumpFront(pw, prefix);
Yohei Yukawa8f272172017-08-31 00:26:01 -07001214 if ((dumpFlags & DUMP_FLAG_DETAILS) != 0 && className != null) {
Dianne Hackborn12527f92009-11-11 17:39:50 -08001215 pw.println(prefix + "className=" + className);
1216 }
1217 if (permission != null) {
1218 pw.println(prefix + "permission=" + permission);
1219 }
Dianne Hackborn39792d22010-08-19 18:01:52 -07001220 pw.println(prefix + "processName=" + processName);
Yohei Yukawa8f272172017-08-31 00:26:01 -07001221 if ((dumpFlags & DUMP_FLAG_DETAILS) != 0) {
Dianne Hackborn6ac42ae2015-12-08 17:22:10 -08001222 pw.println(prefix + "taskAffinity=" + taskAffinity);
1223 }
Dianne Hackborn39792d22010-08-19 18:01:52 -07001224 pw.println(prefix + "uid=" + uid + " flags=0x" + Integer.toHexString(flags)
Alex Klyubinb9f8a522015-02-03 11:12:59 -08001225 + " privateFlags=0x" + Integer.toHexString(privateFlags)
Dianne Hackborn39792d22010-08-19 18:01:52 -07001226 + " theme=0x" + Integer.toHexString(theme));
Yohei Yukawa8f272172017-08-31 00:26:01 -07001227 if ((dumpFlags & DUMP_FLAG_DETAILS) != 0) {
Dianne Hackborn6ac42ae2015-12-08 17:22:10 -08001228 pw.println(prefix + "requiresSmallestWidthDp=" + requiresSmallestWidthDp
1229 + " compatibleWidthLimitDp=" + compatibleWidthLimitDp
1230 + " largestWidthLimitDp=" + largestWidthLimitDp);
1231 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001232 pw.println(prefix + "sourceDir=" + sourceDir);
Jeff Sharkey8a4c9722014-06-16 13:48:42 -07001233 if (!Objects.equals(sourceDir, publicSourceDir)) {
Dianne Hackborn39792d22010-08-19 18:01:52 -07001234 pw.println(prefix + "publicSourceDir=" + publicSourceDir);
1235 }
Jeff Sharkey8a4c9722014-06-16 13:48:42 -07001236 if (!ArrayUtils.isEmpty(splitSourceDirs)) {
1237 pw.println(prefix + "splitSourceDirs=" + Arrays.toString(splitSourceDirs));
1238 }
1239 if (!ArrayUtils.isEmpty(splitPublicSourceDirs)
1240 && !Arrays.equals(splitSourceDirs, splitPublicSourceDirs)) {
1241 pw.println(prefix + "splitPublicSourceDirs=" + Arrays.toString(splitPublicSourceDirs));
1242 }
Dianne Hackborn39792d22010-08-19 18:01:52 -07001243 if (resourceDirs != null) {
Andreas Gampee6748ce2015-12-11 18:00:38 -08001244 pw.println(prefix + "resourceDirs=" + Arrays.toString(resourceDirs));
Dianne Hackborn39792d22010-08-19 18:01:52 -07001245 }
Yohei Yukawa8f272172017-08-31 00:26:01 -07001246 if ((dumpFlags & DUMP_FLAG_DETAILS) != 0 && seInfo != null) {
Todd Kennedybe0b8892017-02-15 14:13:52 -08001247 pw.println(prefix + "seinfo=" + seInfo);
1248 pw.println(prefix + "seinfoUser=" + seInfoUser);
Robert Craig0f40dc92013-03-25 06:33:03 -04001249 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001250 pw.println(prefix + "dataDir=" + dataDir);
Yohei Yukawa8f272172017-08-31 00:26:01 -07001251 if ((dumpFlags & DUMP_FLAG_DETAILS) != 0) {
Jeff Sharkey8a372a02016-03-16 16:25:45 -06001252 pw.println(prefix + "deviceProtectedDataDir=" + deviceProtectedDataDir);
1253 pw.println(prefix + "credentialProtectedDataDir=" + credentialProtectedDataDir);
Dianne Hackborn6ac42ae2015-12-08 17:22:10 -08001254 if (sharedLibraryFiles != null) {
1255 pw.println(prefix + "sharedLibraryFiles=" + Arrays.toString(sharedLibraryFiles));
1256 }
Dianne Hackborn12527f92009-11-11 17:39:50 -08001257 }
Narayan Kamathf9419f02017-06-15 11:35:38 +01001258 if (classLoaderName != null) {
1259 pw.println(prefix + "classLoaderName=" + classLoaderName);
1260 }
1261 if (!ArrayUtils.isEmpty(splitClassLoaderNames)) {
1262 pw.println(prefix + "splitClassLoaderNames=" + Arrays.toString(splitClassLoaderNames));
1263 }
1264
Todd Kennedy89d60182016-03-11 11:18:32 -08001265 pw.println(prefix + "enabled=" + enabled
1266 + " minSdkVersion=" + minSdkVersion
1267 + " targetSdkVersion=" + targetSdkVersion
Patrick Baumannc2def582018-04-04 12:14:15 -07001268 + " versionCode=" + longVersionCode
Todd Kennedy11e45072017-01-25 13:24:21 -08001269 + " targetSandboxVersion=" + targetSandboxVersion);
Yohei Yukawa8f272172017-08-31 00:26:01 -07001270 if ((dumpFlags & DUMP_FLAG_DETAILS) != 0) {
Dianne Hackborn6ac42ae2015-12-08 17:22:10 -08001271 if (manageSpaceActivityName != null) {
1272 pw.println(prefix + "manageSpaceActivityName=" + manageSpaceActivityName);
1273 }
1274 if (descriptionRes != 0) {
1275 pw.println(prefix + "description=0x" + Integer.toHexString(descriptionRes));
1276 }
1277 if (uiOptions != 0) {
1278 pw.println(prefix + "uiOptions=0x" + Integer.toHexString(uiOptions));
1279 }
1280 pw.println(prefix + "supportsRtl=" + (hasRtlSupport() ? "true" : "false"));
1281 if (fullBackupContent > 0) {
1282 pw.println(prefix + "fullBackupContent=@xml/" + fullBackupContent);
1283 } else {
1284 pw.println(prefix + "fullBackupContent="
1285 + (fullBackupContent < 0 ? "false" : "true"));
1286 }
Chad Brubakerc845b2a2016-05-13 14:09:27 -07001287 if (networkSecurityConfigRes != 0) {
1288 pw.println(prefix + "networkSecurityConfigRes=0x"
1289 + Integer.toHexString(networkSecurityConfigRes));
1290 }
Jeff Sharkey9bc89af2017-01-11 11:25:50 -07001291 if (category != CATEGORY_UNDEFINED) {
1292 pw.println(prefix + "category=" + category);
1293 }
Mathew Inwoode3299532018-02-22 13:19:53 +00001294 pw.println(prefix + "HiddenApiEnforcementPolicy=" + getHiddenApiEnforcementPolicy());
David Brazdilfa5e8362018-09-06 09:49:14 +01001295 pw.println(prefix + "usesNonSdkApi=" + usesNonSdkApi());
Matthew Williams303650c2015-04-17 18:22:51 -07001296 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001297 super.dumpBack(pw, prefix);
1298 }
Fabrice Di Meglio59dfce82012-04-02 16:17:20 -07001299
Yi Jin148d7f42017-11-28 14:23:56 -08001300 /** {@hide} */
1301 public void writeToProto(ProtoOutputStream proto, long fieldId, int dumpFlags) {
1302 long token = proto.start(fieldId);
1303 super.writeToProto(proto, ApplicationInfoProto.PACKAGE);
1304 proto.write(ApplicationInfoProto.PERMISSION, permission);
1305 proto.write(ApplicationInfoProto.PROCESS_NAME, processName);
1306 proto.write(ApplicationInfoProto.UID, uid);
1307 proto.write(ApplicationInfoProto.FLAGS, flags);
1308 proto.write(ApplicationInfoProto.PRIVATE_FLAGS, privateFlags);
1309 proto.write(ApplicationInfoProto.THEME, theme);
1310 proto.write(ApplicationInfoProto.SOURCE_DIR, sourceDir);
1311 if (!Objects.equals(sourceDir, publicSourceDir)) {
1312 proto.write(ApplicationInfoProto.PUBLIC_SOURCE_DIR, publicSourceDir);
1313 }
1314 if (!ArrayUtils.isEmpty(splitSourceDirs)) {
1315 for (String dir : splitSourceDirs) {
1316 proto.write(ApplicationInfoProto.SPLIT_SOURCE_DIRS, dir);
1317 }
1318 }
1319 if (!ArrayUtils.isEmpty(splitPublicSourceDirs)
1320 && !Arrays.equals(splitSourceDirs, splitPublicSourceDirs)) {
1321 for (String dir : splitPublicSourceDirs) {
1322 proto.write(ApplicationInfoProto.SPLIT_PUBLIC_SOURCE_DIRS, dir);
1323 }
1324 }
1325 if (resourceDirs != null) {
1326 for (String dir : resourceDirs) {
1327 proto.write(ApplicationInfoProto.RESOURCE_DIRS, dir);
1328 }
1329 }
1330 proto.write(ApplicationInfoProto.DATA_DIR, dataDir);
1331 proto.write(ApplicationInfoProto.CLASS_LOADER_NAME, classLoaderName);
1332 if (!ArrayUtils.isEmpty(splitClassLoaderNames)) {
1333 for (String name : splitClassLoaderNames) {
1334 proto.write(ApplicationInfoProto.SPLIT_CLASS_LOADER_NAMES, name);
1335 }
1336 }
1337
1338 long versionToken = proto.start(ApplicationInfoProto.VERSION);
1339 proto.write(ApplicationInfoProto.Version.ENABLED, enabled);
1340 proto.write(ApplicationInfoProto.Version.MIN_SDK_VERSION, minSdkVersion);
1341 proto.write(ApplicationInfoProto.Version.TARGET_SDK_VERSION, targetSdkVersion);
Patrick Baumannc2def582018-04-04 12:14:15 -07001342 proto.write(ApplicationInfoProto.Version.VERSION_CODE, longVersionCode);
Yi Jin148d7f42017-11-28 14:23:56 -08001343 proto.write(ApplicationInfoProto.Version.TARGET_SANDBOX_VERSION, targetSandboxVersion);
1344 proto.end(versionToken);
1345
1346 if ((dumpFlags & DUMP_FLAG_DETAILS) != 0) {
1347 long detailToken = proto.start(ApplicationInfoProto.DETAIL);
1348 if (className != null) {
1349 proto.write(ApplicationInfoProto.Detail.CLASS_NAME, className);
1350 }
1351 proto.write(ApplicationInfoProto.Detail.TASK_AFFINITY, taskAffinity);
1352 proto.write(ApplicationInfoProto.Detail.REQUIRES_SMALLEST_WIDTH_DP,
1353 requiresSmallestWidthDp);
1354 proto.write(ApplicationInfoProto.Detail.COMPATIBLE_WIDTH_LIMIT_DP,
1355 compatibleWidthLimitDp);
1356 proto.write(ApplicationInfoProto.Detail.LARGEST_WIDTH_LIMIT_DP,
1357 largestWidthLimitDp);
1358 if (seInfo != null) {
1359 proto.write(ApplicationInfoProto.Detail.SEINFO, seInfo);
1360 proto.write(ApplicationInfoProto.Detail.SEINFO_USER, seInfoUser);
1361 }
1362 proto.write(ApplicationInfoProto.Detail.DEVICE_PROTECTED_DATA_DIR,
1363 deviceProtectedDataDir);
1364 proto.write(ApplicationInfoProto.Detail.CREDENTIAL_PROTECTED_DATA_DIR,
1365 credentialProtectedDataDir);
1366 if (sharedLibraryFiles != null) {
1367 for (String f : sharedLibraryFiles) {
1368 proto.write(ApplicationInfoProto.Detail.SHARED_LIBRARY_FILES, f);
1369 }
1370 }
1371 if (manageSpaceActivityName != null) {
1372 proto.write(ApplicationInfoProto.Detail.MANAGE_SPACE_ACTIVITY_NAME,
1373 manageSpaceActivityName);
1374 }
1375 if (descriptionRes != 0) {
1376 proto.write(ApplicationInfoProto.Detail.DESCRIPTION_RES, descriptionRes);
1377 }
1378 if (uiOptions != 0) {
1379 proto.write(ApplicationInfoProto.Detail.UI_OPTIONS, uiOptions);
1380 }
1381 proto.write(ApplicationInfoProto.Detail.SUPPORTS_RTL, hasRtlSupport());
1382 if (fullBackupContent > 0) {
1383 proto.write(ApplicationInfoProto.Detail.CONTENT, "@xml/" + fullBackupContent);
1384 } else {
1385 proto.write(ApplicationInfoProto.Detail.IS_FULL_BACKUP, fullBackupContent == 0);
1386 }
1387 if (networkSecurityConfigRes != 0) {
1388 proto.write(ApplicationInfoProto.Detail.NETWORK_SECURITY_CONFIG_RES,
1389 networkSecurityConfigRes);
1390 }
1391 if (category != CATEGORY_UNDEFINED) {
1392 proto.write(ApplicationInfoProto.Detail.CATEGORY, category);
1393 }
1394 proto.end(detailToken);
1395 }
1396 proto.end(token);
1397 }
1398
Fabrice Di Meglio59dfce82012-04-02 16:17:20 -07001399 /**
1400 * @return true if "supportsRtl" has been set to true in the AndroidManifest
1401 * @hide
1402 */
Mathew Inwood1c77a112018-08-14 14:06:26 +01001403 @UnsupportedAppUsage
Fabrice Di Meglio59dfce82012-04-02 16:17:20 -07001404 public boolean hasRtlSupport() {
1405 return (flags & FLAG_SUPPORTS_RTL) == FLAG_SUPPORTS_RTL;
1406 }
Jeff Sharkeyba75a9b2016-01-07 11:51:33 -07001407
1408 /** {@hide} */
1409 public boolean hasCode() {
1410 return (flags & FLAG_HAS_CODE) != 0;
1411 }
1412
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001413 public static class DisplayNameComparator
1414 implements Comparator<ApplicationInfo> {
1415 public DisplayNameComparator(PackageManager pm) {
1416 mPM = pm;
1417 }
1418
1419 public final int compare(ApplicationInfo aa, ApplicationInfo ab) {
1420 CharSequence sa = mPM.getApplicationLabel(aa);
1421 if (sa == null) {
1422 sa = aa.packageName;
1423 }
1424 CharSequence sb = mPM.getApplicationLabel(ab);
1425 if (sb == null) {
1426 sb = ab.packageName;
1427 }
1428
1429 return sCollator.compare(sa.toString(), sb.toString());
1430 }
1431
Mathew Inwood55418ea2018-12-20 15:30:45 +00001432 @UnsupportedAppUsage(maxTargetSdk = Build.VERSION_CODES.P, trackingBug = 115609023)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001433 private final Collator sCollator = Collator.getInstance();
Mathew Inwood55418ea2018-12-20 15:30:45 +00001434 @UnsupportedAppUsage(maxTargetSdk = Build.VERSION_CODES.P, trackingBug = 115609023)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001435 private PackageManager mPM;
1436 }
1437
1438 public ApplicationInfo() {
1439 }
1440
1441 public ApplicationInfo(ApplicationInfo orig) {
1442 super(orig);
1443 taskAffinity = orig.taskAffinity;
1444 permission = orig.permission;
1445 processName = orig.processName;
1446 className = orig.className;
1447 theme = orig.theme;
1448 flags = orig.flags;
Alex Klyubinb9f8a522015-02-03 11:12:59 -08001449 privateFlags = orig.privateFlags;
Dianne Hackborndf6e9802011-05-26 14:20:23 -07001450 requiresSmallestWidthDp = orig.requiresSmallestWidthDp;
1451 compatibleWidthLimitDp = orig.compatibleWidthLimitDp;
Dianne Hackborn2762ff32011-06-01 21:27:05 -07001452 largestWidthLimitDp = orig.largestWidthLimitDp;
Jeff Sharkeyb2b9ab82015-04-05 21:10:42 -07001453 volumeUuid = orig.volumeUuid;
Jeff Sharkey789a8fc2017-04-16 13:18:35 -06001454 storageUuid = orig.storageUuid;
Jeff Sharkey7f1a57a2014-10-08 10:14:53 -07001455 scanSourceDir = orig.scanSourceDir;
1456 scanPublicSourceDir = orig.scanPublicSourceDir;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001457 sourceDir = orig.sourceDir;
1458 publicSourceDir = orig.publicSourceDir;
Adam Lesinski4e862812016-11-21 16:02:24 -08001459 splitNames = orig.splitNames;
Jeff Sharkey8a4c9722014-06-16 13:48:42 -07001460 splitSourceDirs = orig.splitSourceDirs;
1461 splitPublicSourceDirs = orig.splitPublicSourceDirs;
Adam Lesinski4e862812016-11-21 16:02:24 -08001462 splitDependencies = orig.splitDependencies;
Kenny Root85387d72010-08-26 10:13:11 -07001463 nativeLibraryDir = orig.nativeLibraryDir;
Narayan Kamath7dba6eb2014-07-16 08:53:30 +01001464 secondaryNativeLibraryDir = orig.secondaryNativeLibraryDir;
Jeff Sharkey84f12942014-07-10 17:48:11 -07001465 nativeLibraryRootDir = orig.nativeLibraryRootDir;
1466 nativeLibraryRootRequiresIsa = orig.nativeLibraryRootRequiresIsa;
Narayan Kamathff110bd2014-07-04 18:30:45 +01001467 primaryCpuAbi = orig.primaryCpuAbi;
1468 secondaryCpuAbi = orig.secondaryCpuAbi;
Kenny Rootd1ab0162010-01-21 17:27:14 -08001469 resourceDirs = orig.resourceDirs;
Todd Kennedybe0b8892017-02-15 14:13:52 -08001470 seInfo = orig.seInfo;
1471 seInfoUser = orig.seInfoUser;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001472 sharedLibraryFiles = orig.sharedLibraryFiles;
Nicolas Geoffray972b39e2018-11-15 12:59:52 +00001473 sharedLibraryInfos = orig.sharedLibraryInfos;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001474 dataDir = orig.dataDir;
Jeff Sharkeydd9bda82017-02-23 17:38:31 -07001475 deviceProtectedDataDir = orig.deviceProtectedDataDir;
1476 credentialProtectedDataDir = orig.credentialProtectedDataDir;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001477 uid = orig.uid;
Todd Kennedy89d60182016-03-11 11:18:32 -08001478 minSdkVersion = orig.minSdkVersion;
Dianne Hackborna96cbb42009-05-13 15:06:13 -07001479 targetSdkVersion = orig.targetSdkVersion;
Patrick Baumannc2def582018-04-04 12:14:15 -07001480 setVersionCode(orig.longVersionCode);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001481 enabled = orig.enabled;
Dianne Hackborn0ac30312011-06-17 14:49:23 -07001482 enabledSetting = orig.enabledSetting;
Dianne Hackborn54e570f2010-10-04 18:32:32 -07001483 installLocation = orig.installLocation;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001484 manageSpaceActivityName = orig.manageSpaceActivityName;
1485 descriptionRes = orig.descriptionRes;
Adam Powell269248d2011-08-02 10:26:54 -07001486 uiOptions = orig.uiOptions;
Christopher Tatebcb02552012-10-16 17:14:34 -07001487 backupAgentName = orig.backupAgentName;
Matthew Williams303650c2015-04-17 18:22:51 -07001488 fullBackupContent = orig.fullBackupContent;
Chad Brubakerc845b2a2016-05-13 14:09:27 -07001489 networkSecurityConfigRes = orig.networkSecurityConfigRes;
Jeff Sharkey9bc89af2017-01-11 11:25:50 -07001490 category = orig.category;
Todd Kennedy11e45072017-01-25 13:24:21 -08001491 targetSandboxVersion = orig.targetSandboxVersion;
Narayan Kamathf9419f02017-06-15 11:35:38 +01001492 classLoaderName = orig.classLoaderName;
1493 splitClassLoaderNames = orig.splitClassLoaderNames;
Jason Monka80bfb52017-11-16 17:15:37 -05001494 appComponentFactory = orig.appComponentFactory;
Adam Lesinskid3ea00992018-02-20 16:51:13 -08001495 compileSdkVersion = orig.compileSdkVersion;
1496 compileSdkVersionCodename = orig.compileSdkVersionCodename;
Mathew Inwoode3299532018-02-22 13:19:53 +00001497 mHiddenApiPolicy = orig.mHiddenApiPolicy;
Rhed Jaoc19da782018-06-13 11:16:16 +08001498 hiddenUntilInstalled = orig.hiddenUntilInstalled;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001499 }
1500
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001501 public String toString() {
1502 return "ApplicationInfo{"
1503 + Integer.toHexString(System.identityHashCode(this))
1504 + " " + packageName + "}";
1505 }
1506
1507 public int describeContents() {
1508 return 0;
1509 }
1510
Adam Lesinski4e862812016-11-21 16:02:24 -08001511 @SuppressWarnings("unchecked")
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001512 public void writeToParcel(Parcel dest, int parcelableFlags) {
1513 super.writeToParcel(dest, parcelableFlags);
1514 dest.writeString(taskAffinity);
1515 dest.writeString(permission);
1516 dest.writeString(processName);
1517 dest.writeString(className);
1518 dest.writeInt(theme);
1519 dest.writeInt(flags);
Alex Klyubinb9f8a522015-02-03 11:12:59 -08001520 dest.writeInt(privateFlags);
Dianne Hackborndf6e9802011-05-26 14:20:23 -07001521 dest.writeInt(requiresSmallestWidthDp);
1522 dest.writeInt(compatibleWidthLimitDp);
Dianne Hackborn2762ff32011-06-01 21:27:05 -07001523 dest.writeInt(largestWidthLimitDp);
Jeff Sharkey67c8c1e2017-04-19 11:22:02 -06001524 if (storageUuid != null) {
1525 dest.writeInt(1);
Jeff Sharkeya4d34d92017-04-27 11:21:41 -06001526 dest.writeLong(storageUuid.getMostSignificantBits());
1527 dest.writeLong(storageUuid.getLeastSignificantBits());
Jeff Sharkey67c8c1e2017-04-19 11:22:02 -06001528 } else {
1529 dest.writeInt(0);
1530 }
Jeff Sharkey7f1a57a2014-10-08 10:14:53 -07001531 dest.writeString(scanSourceDir);
1532 dest.writeString(scanPublicSourceDir);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001533 dest.writeString(sourceDir);
1534 dest.writeString(publicSourceDir);
Adam Lesinski4e862812016-11-21 16:02:24 -08001535 dest.writeStringArray(splitNames);
Jeff Sharkey8a4c9722014-06-16 13:48:42 -07001536 dest.writeStringArray(splitSourceDirs);
1537 dest.writeStringArray(splitPublicSourceDirs);
Adam Lesinski1665d0f2017-03-10 14:46:57 -08001538 dest.writeSparseArray((SparseArray) splitDependencies);
Kenny Root85387d72010-08-26 10:13:11 -07001539 dest.writeString(nativeLibraryDir);
Narayan Kamath7dba6eb2014-07-16 08:53:30 +01001540 dest.writeString(secondaryNativeLibraryDir);
Jeff Sharkey84f12942014-07-10 17:48:11 -07001541 dest.writeString(nativeLibraryRootDir);
1542 dest.writeInt(nativeLibraryRootRequiresIsa ? 1 : 0);
Narayan Kamathff110bd2014-07-04 18:30:45 +01001543 dest.writeString(primaryCpuAbi);
1544 dest.writeString(secondaryCpuAbi);
Kenny Rootd1ab0162010-01-21 17:27:14 -08001545 dest.writeStringArray(resourceDirs);
Todd Kennedybe0b8892017-02-15 14:13:52 -08001546 dest.writeString(seInfo);
1547 dest.writeString(seInfoUser);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001548 dest.writeStringArray(sharedLibraryFiles);
Nicolas Geoffray972b39e2018-11-15 12:59:52 +00001549 dest.writeTypedList(sharedLibraryInfos);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001550 dest.writeString(dataDir);
Jeff Sharkey8a372a02016-03-16 16:25:45 -06001551 dest.writeString(deviceProtectedDataDir);
1552 dest.writeString(credentialProtectedDataDir);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001553 dest.writeInt(uid);
Todd Kennedy6e2e7f52016-05-02 14:56:45 -07001554 dest.writeInt(minSdkVersion);
Dianne Hackborna96cbb42009-05-13 15:06:13 -07001555 dest.writeInt(targetSdkVersion);
Patrick Baumannc2def582018-04-04 12:14:15 -07001556 dest.writeLong(longVersionCode);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001557 dest.writeInt(enabled ? 1 : 0);
Dianne Hackborn0ac30312011-06-17 14:49:23 -07001558 dest.writeInt(enabledSetting);
Dianne Hackborn54e570f2010-10-04 18:32:32 -07001559 dest.writeInt(installLocation);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001560 dest.writeString(manageSpaceActivityName);
Christopher Tate181fafa2009-05-14 11:12:14 -07001561 dest.writeString(backupAgentName);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001562 dest.writeInt(descriptionRes);
Adam Powell269248d2011-08-02 10:26:54 -07001563 dest.writeInt(uiOptions);
Matthew Williams303650c2015-04-17 18:22:51 -07001564 dest.writeInt(fullBackupContent);
Chad Brubakerc845b2a2016-05-13 14:09:27 -07001565 dest.writeInt(networkSecurityConfigRes);
Jeff Sharkey9bc89af2017-01-11 11:25:50 -07001566 dest.writeInt(category);
Todd Kennedy11e45072017-01-25 13:24:21 -08001567 dest.writeInt(targetSandboxVersion);
Narayan Kamathf9419f02017-06-15 11:35:38 +01001568 dest.writeString(classLoaderName);
1569 dest.writeStringArray(splitClassLoaderNames);
Alan Viveretteb6a25732017-11-21 14:49:24 -05001570 dest.writeInt(compileSdkVersion);
1571 dest.writeString(compileSdkVersionCodename);
Jason Monka80bfb52017-11-16 17:15:37 -05001572 dest.writeString(appComponentFactory);
Mathew Inwoode3299532018-02-22 13:19:53 +00001573 dest.writeInt(mHiddenApiPolicy);
Rhed Jaoc19da782018-06-13 11:16:16 +08001574 dest.writeInt(hiddenUntilInstalled ? 1 : 0);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001575 }
1576
1577 public static final Parcelable.Creator<ApplicationInfo> CREATOR
1578 = new Parcelable.Creator<ApplicationInfo>() {
1579 public ApplicationInfo createFromParcel(Parcel source) {
1580 return new ApplicationInfo(source);
1581 }
1582 public ApplicationInfo[] newArray(int size) {
1583 return new ApplicationInfo[size];
1584 }
1585 };
1586
Adam Lesinski4e862812016-11-21 16:02:24 -08001587 @SuppressWarnings("unchecked")
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001588 private ApplicationInfo(Parcel source) {
1589 super(source);
1590 taskAffinity = source.readString();
1591 permission = source.readString();
1592 processName = source.readString();
1593 className = source.readString();
1594 theme = source.readInt();
1595 flags = source.readInt();
Alex Klyubinb9f8a522015-02-03 11:12:59 -08001596 privateFlags = source.readInt();
Dianne Hackborndf6e9802011-05-26 14:20:23 -07001597 requiresSmallestWidthDp = source.readInt();
1598 compatibleWidthLimitDp = source.readInt();
Dianne Hackborn2762ff32011-06-01 21:27:05 -07001599 largestWidthLimitDp = source.readInt();
Jeff Sharkey67c8c1e2017-04-19 11:22:02 -06001600 if (source.readInt() != 0) {
Jeff Sharkeya4d34d92017-04-27 11:21:41 -06001601 storageUuid = new UUID(source.readLong(), source.readLong());
Jeff Sharkey67c8c1e2017-04-19 11:22:02 -06001602 volumeUuid = StorageManager.convert(storageUuid);
1603 }
Jeff Sharkey7f1a57a2014-10-08 10:14:53 -07001604 scanSourceDir = source.readString();
1605 scanPublicSourceDir = source.readString();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001606 sourceDir = source.readString();
1607 publicSourceDir = source.readString();
Adam Lesinski4e862812016-11-21 16:02:24 -08001608 splitNames = source.readStringArray();
Jeff Sharkey8a4c9722014-06-16 13:48:42 -07001609 splitSourceDirs = source.readStringArray();
1610 splitPublicSourceDirs = source.readStringArray();
Adam Lesinski1665d0f2017-03-10 14:46:57 -08001611 splitDependencies = source.readSparseArray(null);
Kenny Root85387d72010-08-26 10:13:11 -07001612 nativeLibraryDir = source.readString();
Narayan Kamath7dba6eb2014-07-16 08:53:30 +01001613 secondaryNativeLibraryDir = source.readString();
Jeff Sharkey84f12942014-07-10 17:48:11 -07001614 nativeLibraryRootDir = source.readString();
1615 nativeLibraryRootRequiresIsa = source.readInt() != 0;
Narayan Kamathff110bd2014-07-04 18:30:45 +01001616 primaryCpuAbi = source.readString();
1617 secondaryCpuAbi = source.readString();
Kenny Rootd1ab0162010-01-21 17:27:14 -08001618 resourceDirs = source.readStringArray();
Todd Kennedybe0b8892017-02-15 14:13:52 -08001619 seInfo = source.readString();
1620 seInfoUser = source.readString();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001621 sharedLibraryFiles = source.readStringArray();
Nicolas Geoffray972b39e2018-11-15 12:59:52 +00001622 sharedLibraryInfos = source.createTypedArrayList(SharedLibraryInfo.CREATOR);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001623 dataDir = source.readString();
Jeff Sharkeydd9bda82017-02-23 17:38:31 -07001624 deviceProtectedDataDir = source.readString();
1625 credentialProtectedDataDir = source.readString();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001626 uid = source.readInt();
Todd Kennedy6e2e7f52016-05-02 14:56:45 -07001627 minSdkVersion = source.readInt();
Dianne Hackborna96cbb42009-05-13 15:06:13 -07001628 targetSdkVersion = source.readInt();
Patrick Baumannc2def582018-04-04 12:14:15 -07001629 setVersionCode(source.readLong());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001630 enabled = source.readInt() != 0;
Dianne Hackborn0ac30312011-06-17 14:49:23 -07001631 enabledSetting = source.readInt();
Dianne Hackborn54e570f2010-10-04 18:32:32 -07001632 installLocation = source.readInt();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001633 manageSpaceActivityName = source.readString();
Christopher Tate181fafa2009-05-14 11:12:14 -07001634 backupAgentName = source.readString();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001635 descriptionRes = source.readInt();
Adam Powell269248d2011-08-02 10:26:54 -07001636 uiOptions = source.readInt();
Matthew Williams303650c2015-04-17 18:22:51 -07001637 fullBackupContent = source.readInt();
Chad Brubakerc845b2a2016-05-13 14:09:27 -07001638 networkSecurityConfigRes = source.readInt();
Jeff Sharkey9bc89af2017-01-11 11:25:50 -07001639 category = source.readInt();
Todd Kennedy11e45072017-01-25 13:24:21 -08001640 targetSandboxVersion = source.readInt();
Narayan Kamathf9419f02017-06-15 11:35:38 +01001641 classLoaderName = source.readString();
1642 splitClassLoaderNames = source.readStringArray();
Alan Viveretteb6a25732017-11-21 14:49:24 -05001643 compileSdkVersion = source.readInt();
1644 compileSdkVersionCodename = source.readString();
Jason Monka80bfb52017-11-16 17:15:37 -05001645 appComponentFactory = source.readString();
Mathew Inwoode3299532018-02-22 13:19:53 +00001646 mHiddenApiPolicy = source.readInt();
Rhed Jaoc19da782018-06-13 11:16:16 +08001647 hiddenUntilInstalled = source.readInt() != 0;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001648 }
Mitsuru Oshima8d112672009-04-27 12:01:23 -07001649
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001650 /**
1651 * Retrieve the textual description of the application. This
1652 * will call back on the given PackageManager to load the description from
1653 * the application.
1654 *
1655 * @param pm A PackageManager from which the label can be loaded; usually
1656 * the PackageManager from which you originally retrieved this item.
1657 *
1658 * @return Returns a CharSequence containing the application's description.
1659 * If there is no description, null is returned.
1660 */
1661 public CharSequence loadDescription(PackageManager pm) {
1662 if (descriptionRes != 0) {
Jeff Brown07330792010-03-30 19:57:08 -07001663 CharSequence label = pm.getText(packageName, descriptionRes, this);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001664 if (label != null) {
1665 return label;
1666 }
1667 }
1668 return null;
1669 }
Mitsuru Oshimae5fb3282009-06-09 21:16:08 -07001670
1671 /**
1672 * Disable compatibility mode
1673 *
1674 * @hide
1675 */
Mathew Inwood55418ea2018-12-20 15:30:45 +00001676 @UnsupportedAppUsage(maxTargetSdk = Build.VERSION_CODES.P, trackingBug = 115609023)
Mitsuru Oshimae5fb3282009-06-09 21:16:08 -07001677 public void disableCompatibilityMode() {
Mitsuru Oshima69fff4a2009-07-21 09:51:05 -07001678 flags |= (FLAG_SUPPORTS_LARGE_SCREENS | FLAG_SUPPORTS_NORMAL_SCREENS |
Dianne Hackborn11b822d2009-07-21 20:03:02 -07001679 FLAG_SUPPORTS_SMALL_SCREENS | FLAG_RESIZEABLE_FOR_SCREENS |
Dianne Hackborn14cee9f2010-04-23 17:51:26 -07001680 FLAG_SUPPORTS_SCREEN_DENSITIES | FLAG_SUPPORTS_XLARGE_SCREENS);
Mitsuru Oshimae5fb3282009-06-09 21:16:08 -07001681 }
Jeff Sharkey15447792015-11-05 16:18:51 -08001682
skuhne@google.com7e85eb02017-01-04 13:49:54 -08001683 /**
1684 * Is using compatibility mode for non densty aware legacy applications.
1685 *
1686 * @hide
1687 */
1688 public boolean usesCompatibilityMode() {
1689 return targetSdkVersion < DONUT ||
1690 (flags & (FLAG_SUPPORTS_LARGE_SCREENS | FLAG_SUPPORTS_NORMAL_SCREENS |
1691 FLAG_SUPPORTS_SMALL_SCREENS | FLAG_RESIZEABLE_FOR_SCREENS |
1692 FLAG_SUPPORTS_SCREEN_DENSITIES | FLAG_SUPPORTS_XLARGE_SCREENS)) == 0;
1693 }
1694
Jeff Sharkey15447792015-11-05 16:18:51 -08001695 /** {@hide} */
1696 public void initForUser(int userId) {
1697 uid = UserHandle.getUid(userId, UserHandle.getAppId(uid));
1698
1699 if ("android".equals(packageName)) {
1700 dataDir = Environment.getDataSystemDirectory().getAbsolutePath();
1701 return;
1702 }
1703
Jeff Sharkeydd9bda82017-02-23 17:38:31 -07001704 deviceProtectedDataDir = Environment
Jeff Sharkey8212ae02016-02-10 14:46:43 -07001705 .getDataUserDePackageDirectory(volumeUuid, userId, packageName)
Jeff Sharkey15447792015-11-05 16:18:51 -08001706 .getAbsolutePath();
Jeff Sharkeydd9bda82017-02-23 17:38:31 -07001707 credentialProtectedDataDir = Environment
Jeff Sharkey8212ae02016-02-10 14:46:43 -07001708 .getDataUserCePackageDirectory(volumeUuid, userId, packageName)
Jeff Sharkey15447792015-11-05 16:18:51 -08001709 .getAbsolutePath();
1710
Jeff Sharkey8a372a02016-03-16 16:25:45 -06001711 if ((privateFlags & PRIVATE_FLAG_DEFAULT_TO_DEVICE_PROTECTED_STORAGE) != 0
1712 && PackageManager.APPLY_DEFAULT_TO_DEVICE_PROTECTED_STORAGE) {
1713 dataDir = deviceProtectedDataDir;
Jeff Sharkey15447792015-11-05 16:18:51 -08001714 } else {
Jeff Sharkey8a372a02016-03-16 16:25:45 -06001715 dataDir = credentialProtectedDataDir;
Jeff Sharkey15447792015-11-05 16:18:51 -08001716 }
1717 }
1718
Mathew Inwoode3299532018-02-22 13:19:53 +00001719 private boolean isPackageWhitelistedForHiddenApis() {
1720 return SystemConfig.getInstance().getHiddenApiWhitelistedApps().contains(packageName);
1721 }
1722
David Brazdilfa5e8362018-09-06 09:49:14 +01001723 /**
1724 * @hide
1725 */
1726 public boolean usesNonSdkApi() {
1727 return (privateFlags & PRIVATE_FLAG_USES_NON_SDK_API) != 0;
1728 }
1729
Mathew Inwood9d895432018-04-04 16:08:21 +01001730 private boolean isAllowedToUseHiddenApis() {
David Brazdilca6f81d2018-08-28 12:55:56 +01001731 if (isSignedWithPlatformKey()) {
1732 return true;
1733 } else if (isSystemApp() || isUpdatedSystemApp()) {
David Brazdilfa5e8362018-09-06 09:49:14 +01001734 return usesNonSdkApi() || isPackageWhitelistedForHiddenApis();
David Brazdilca6f81d2018-08-28 12:55:56 +01001735 } else {
1736 return false;
1737 }
Mathew Inwood9d895432018-04-04 16:08:21 +01001738 }
1739
Jeff Brown07330792010-03-30 19:57:08 -07001740 /**
1741 * @hide
1742 */
Mathew Inwoode3299532018-02-22 13:19:53 +00001743 public @HiddenApiEnforcementPolicy int getHiddenApiEnforcementPolicy() {
Mathew Inwood9d895432018-04-04 16:08:21 +01001744 if (isAllowedToUseHiddenApis()) {
David Brazdildf1c7dc2018-10-26 16:23:59 +01001745 return HIDDEN_API_ENFORCEMENT_DISABLED;
Mathew Inwoode3299532018-02-22 13:19:53 +00001746 }
Mathew Inwood1ab30252018-04-03 14:47:26 +01001747 if (mHiddenApiPolicy != HIDDEN_API_ENFORCEMENT_DEFAULT) {
1748 return mHiddenApiPolicy;
1749 }
David Brazdildf1c7dc2018-10-26 16:23:59 +01001750 return HIDDEN_API_ENFORCEMENT_ENABLED;
Mathew Inwoode3299532018-02-22 13:19:53 +00001751 }
1752
1753 /**
1754 * @hide
1755 */
1756 public void setHiddenApiEnforcementPolicy(@HiddenApiEnforcementPolicy int policy) {
1757 if (!isValidHiddenApiEnforcementPolicy(policy)) {
1758 throw new IllegalArgumentException("Invalid API enforcement policy: " + policy);
1759 }
1760 mHiddenApiPolicy = policy;
David Brazdil464ed3d2018-01-18 15:25:18 +00001761 }
1762
1763 /**
Mathew Inwood1ab30252018-04-03 14:47:26 +01001764 * Updates the hidden API enforcement policy for this app from the given values, if appropriate.
1765 *
1766 * This will have no effect if this app is not subject to hidden API enforcement, i.e. if it
1767 * is on the package whitelist.
1768 *
David Brazdildf1c7dc2018-10-26 16:23:59 +01001769 * @param policy configured policy for this app, or {@link #HIDDEN_API_ENFORCEMENT_DEFAULT}
David Brazdil5cd148f2018-11-01 09:54:25 +00001770 * if nothing configured.
Mathew Inwood1ab30252018-04-03 14:47:26 +01001771 * @hide
1772 */
David Brazdildf1c7dc2018-10-26 16:23:59 +01001773 public void maybeUpdateHiddenApiEnforcementPolicy(@HiddenApiEnforcementPolicy int policy) {
Mathew Inwood1ab30252018-04-03 14:47:26 +01001774 if (isPackageWhitelistedForHiddenApis()) {
1775 return;
1776 }
David Brazdildf1c7dc2018-10-26 16:23:59 +01001777 setHiddenApiEnforcementPolicy(policy);
Mathew Inwood1ab30252018-04-03 14:47:26 +01001778 }
1779
1780 /**
David Brazdil464ed3d2018-01-18 15:25:18 +00001781 * @hide
1782 */
Patrick Baumannc2def582018-04-04 12:14:15 -07001783 public void setVersionCode(long newVersionCode) {
1784 longVersionCode = newVersionCode;
1785 versionCode = (int) newVersionCode;
1786 }
1787
1788 /**
1789 * @hide
1790 */
Alexandra Gherghinaa7093142014-07-30 13:43:39 +01001791 @Override
1792 public Drawable loadDefaultIcon(PackageManager pm) {
Jeff Brown07330792010-03-30 19:57:08 -07001793 if ((flags & FLAG_EXTERNAL_STORAGE) != 0
1794 && isPackageUnavailable(pm)) {
1795 return Resources.getSystem().getDrawable(
1796 com.android.internal.R.drawable.sym_app_on_sd_unavailable_icon);
1797 }
1798 return pm.getDefaultActivityIcon();
1799 }
1800
Mathew Inwood55418ea2018-12-20 15:30:45 +00001801 @UnsupportedAppUsage(maxTargetSdk = Build.VERSION_CODES.P, trackingBug = 115609023)
Jeff Brown07330792010-03-30 19:57:08 -07001802 private boolean isPackageUnavailable(PackageManager pm) {
1803 try {
1804 return pm.getPackageInfo(packageName, 0) == null;
1805 } catch (NameNotFoundException ex) {
1806 return true;
1807 }
1808 }
Jeff Sharkeyd7460572014-07-06 20:44:55 -07001809
Jeff Sharkeyf9fc6d62015-11-08 16:46:05 -08001810 /** @hide */
Jeff Sharkey8a372a02016-03-16 16:25:45 -06001811 public boolean isDefaultToDeviceProtectedStorage() {
1812 return (privateFlags
1813 & ApplicationInfo.PRIVATE_FLAG_DEFAULT_TO_DEVICE_PROTECTED_STORAGE) != 0;
Jeff Sharkeye4697132016-02-06 19:46:15 -07001814 }
1815
1816 /** @hide */
Jeff Sharkey8a372a02016-03-16 16:25:45 -06001817 public boolean isDirectBootAware() {
1818 return (privateFlags & ApplicationInfo.PRIVATE_FLAG_DIRECT_BOOT_AWARE) != 0;
Jeff Sharkeyf9fc6d62015-11-08 16:46:05 -08001819 }
1820
Jeff Sharkey8924e872015-11-30 12:52:10 -07001821 /** @hide */
Todd Kennedyc29b11a2017-10-23 15:55:59 -07001822 public boolean isEncryptionAware() {
1823 return isDirectBootAware() || isPartiallyDirectBootAware();
1824 }
1825
1826 /** @hide */
1827 public boolean isExternal() {
1828 return (flags & ApplicationInfo.FLAG_EXTERNAL_STORAGE) != 0;
1829 }
1830
1831 /** @hide */
1832 public boolean isExternalAsec() {
1833 return TextUtils.isEmpty(volumeUuid) && isExternal();
1834 }
1835
1836 /** @hide */
Mathew Inwood1c77a112018-08-14 14:06:26 +01001837 @UnsupportedAppUsage
Todd Kennedyc29b11a2017-10-23 15:55:59 -07001838 public boolean isForwardLocked() {
1839 return (privateFlags & ApplicationInfo.PRIVATE_FLAG_FORWARD_LOCK) != 0;
1840 }
1841
Patrick Baumann159cd022018-01-11 13:25:05 -08001842 /**
1843 * True if the application is installed as an instant app.
1844 * @hide
1845 */
1846 @SystemApi
Todd Kennedyc29b11a2017-10-23 15:55:59 -07001847 public boolean isInstantApp() {
1848 return (privateFlags & ApplicationInfo.PRIVATE_FLAG_INSTANT) != 0;
1849 }
1850
1851 /** @hide */
1852 public boolean isInternal() {
1853 return (flags & ApplicationInfo.FLAG_EXTERNAL_STORAGE) == 0;
1854 }
1855
1856 /** @hide */
1857 public boolean isOem() {
1858 return (privateFlags & ApplicationInfo.PRIVATE_FLAG_OEM) != 0;
1859 }
1860
1861 /** @hide */
Jeff Sharkey8a372a02016-03-16 16:25:45 -06001862 public boolean isPartiallyDirectBootAware() {
1863 return (privateFlags & ApplicationInfo.PRIVATE_FLAG_PARTIALLY_DIRECT_BOOT_AWARE) != 0;
Jeff Sharkey8924e872015-11-30 12:52:10 -07001864 }
1865
Bryce Lee8558ec72017-08-17 15:37:26 -07001866 /** @hide */
Mathew Inwood9d895432018-04-04 16:08:21 +01001867 public boolean isSignedWithPlatformKey() {
1868 return (privateFlags & ApplicationInfo.PRIVATE_FLAG_SIGNED_WITH_PLATFORM_KEY) != 0;
1869 }
1870
1871 /** @hide */
Todd Kennedyc29b11a2017-10-23 15:55:59 -07001872 @TestApi
1873 public boolean isPrivilegedApp() {
1874 return (privateFlags & ApplicationInfo.PRIVATE_FLAG_PRIVILEGED) != 0;
Bryce Lee8558ec72017-08-17 15:37:26 -07001875 }
1876
Todd Kennedyc29b11a2017-10-23 15:55:59 -07001877 /** @hide */
Fyodor Kupolovbdbc9692015-12-14 13:11:13 -08001878 public boolean isRequiredForSystemUser() {
1879 return (privateFlags & ApplicationInfo.PRIVATE_FLAG_REQUIRED_FOR_SYSTEM_USER) != 0;
1880 }
1881
Todd Kennedyc29b11a2017-10-23 15:55:59 -07001882 /** @hide */
Svet Ganov67882122016-12-11 16:36:34 -08001883 public boolean isStaticSharedLibrary() {
1884 return (privateFlags & ApplicationInfo.PRIVATE_FLAG_STATIC_SHARED_LIBRARY) != 0;
1885 }
1886
Todd Kennedyc29b11a2017-10-23 15:55:59 -07001887 /** @hide */
1888 @TestApi
1889 public boolean isSystemApp() {
1890 return (flags & ApplicationInfo.FLAG_SYSTEM) != 0;
1891 }
1892
1893 /** @hide */
1894 public boolean isUpdatedSystemApp() {
1895 return (flags & ApplicationInfo.FLAG_UPDATED_SYSTEM_APP) != 0;
1896 }
1897
Jiyong Park002fdbd2017-02-13 20:50:31 +09001898 /** @hide */
1899 public boolean isVendor() {
1900 return (privateFlags & ApplicationInfo.PRIVATE_FLAG_VENDOR) != 0;
1901 }
1902
Jaekyun Seok1713d9e2018-01-12 21:47:26 +09001903 /** @hide */
1904 public boolean isProduct() {
1905 return (privateFlags & ApplicationInfo.PRIVATE_FLAG_PRODUCT) != 0;
1906 }
1907
Svet Ganov67882122016-12-11 16:36:34 -08001908 /**
Todd Kennedy5eb5a7d2017-08-01 07:42:47 -07001909 * Returns whether or not this application was installed as a virtual preload.
1910 */
1911 public boolean isVirtualPreload() {
1912 return (privateFlags & PRIVATE_FLAG_VIRTUAL_PRELOAD) != 0;
1913 }
1914
1915 /**
Todd Kennedyc29b11a2017-10-23 15:55:59 -07001916 * Returns true if the app has declared in its manifest that it wants its split APKs to be
1917 * loaded into isolated Contexts, with their own ClassLoaders and Resources objects.
Svet Ganov67882122016-12-11 16:36:34 -08001918 * @hide
1919 */
Todd Kennedyc29b11a2017-10-23 15:55:59 -07001920 public boolean requestsIsolatedSplitLoading() {
1921 return (privateFlags & ApplicationInfo.PRIVATE_FLAG_ISOLATED_SPLIT_LOADING) != 0;
Svet Ganov087dce22017-09-07 15:42:16 -07001922 }
1923
1924 /**
1925 * @hide
1926 */
Jeff Brown07330792010-03-30 19:57:08 -07001927 @Override protected ApplicationInfo getApplicationInfo() {
1928 return this;
1929 }
Jeff Sharkeyd7460572014-07-06 20:44:55 -07001930
1931 /** {@hide} */ public void setCodePath(String codePath) { scanSourceDir = codePath; }
1932 /** {@hide} */ public void setBaseCodePath(String baseCodePath) { sourceDir = baseCodePath; }
1933 /** {@hide} */ public void setSplitCodePaths(String[] splitCodePaths) { splitSourceDirs = splitCodePaths; }
1934 /** {@hide} */ public void setResourcePath(String resourcePath) { scanPublicSourceDir = resourcePath; }
1935 /** {@hide} */ public void setBaseResourcePath(String baseResourcePath) { publicSourceDir = baseResourcePath; }
1936 /** {@hide} */ public void setSplitResourcePaths(String[] splitResourcePaths) { splitPublicSourceDirs = splitResourcePaths; }
1937
Mathew Inwood1c77a112018-08-14 14:06:26 +01001938 /** {@hide} */
1939 @UnsupportedAppUsage
1940 public String getCodePath() { return scanSourceDir; }
Jeff Sharkeyd7460572014-07-06 20:44:55 -07001941 /** {@hide} */ public String getBaseCodePath() { return sourceDir; }
1942 /** {@hide} */ public String[] getSplitCodePaths() { return splitSourceDirs; }
1943 /** {@hide} */ public String getResourcePath() { return scanPublicSourceDir; }
Mathew Inwood1c77a112018-08-14 14:06:26 +01001944 /** {@hide} */
1945 @UnsupportedAppUsage
1946 public String getBaseResourcePath() { return publicSourceDir; }
Jeff Sharkeya3a43b02016-11-15 17:54:23 -07001947 /** {@hide} */ public String[] getSplitResourcePaths() { return splitPublicSourceDirs; }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001948}