blob: ef594447553a4c5eb0cc48a17ca91f5adb6a5765 [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;
Jeff Sharkey8a372a02016-03-16 16:25:45 -060022import android.annotation.SystemApi;
Jeff Sharkeya73b8fd2016-01-06 17:02:08 -070023import android.annotation.TestApi;
Jeff Sharkey8a372a02016-03-16 16:25:45 -060024import android.content.Context;
Jeff Brown07330792010-03-30 19:57:08 -070025import android.content.pm.PackageManager.NameNotFoundException;
26import android.content.res.Resources;
27import android.graphics.drawable.Drawable;
Jeff Sharkey15447792015-11-05 16:18:51 -080028import android.os.Environment;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080029import android.os.Parcel;
30import android.os.Parcelable;
Jeff Sharkey15447792015-11-05 16:18:51 -080031import android.os.UserHandle;
Jeff Sharkeye2d45be2015-04-15 17:14:12 -070032import android.text.TextUtils;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080033import android.util.Printer;
Adam Lesinski4e862812016-11-21 16:02:24 -080034import android.util.SparseIntArray;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080035
Jeff Sharkey8a4c9722014-06-16 13:48:42 -070036import com.android.internal.util.ArrayUtils;
37
Jeff Sharkey9bc89af2017-01-11 11:25:50 -070038import java.lang.annotation.Retention;
39import java.lang.annotation.RetentionPolicy;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080040import java.text.Collator;
Jeff Sharkey8a4c9722014-06-16 13:48:42 -070041import java.util.Arrays;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080042import java.util.Comparator;
Jeff Sharkey8a4c9722014-06-16 13:48:42 -070043import java.util.Objects;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080044
45/**
46 * Information you can retrieve about a particular application. This
47 * corresponds to information collected from the AndroidManifest.xml's
48 * <application> tag.
49 */
50public class ApplicationInfo extends PackageItemInfo implements Parcelable {
51
52 /**
53 * Default task affinity of all activities in this application. See
54 * {@link ActivityInfo#taskAffinity} for more information. This comes
55 * from the "taskAffinity" attribute.
56 */
57 public String taskAffinity;
58
59 /**
60 * Optional name of a permission required to be able to access this
61 * application's components. From the "permission" attribute.
62 */
63 public String permission;
64
65 /**
66 * The name of the process this application should run in. From the
67 * "process" attribute or, if not set, the same as
68 * <var>packageName</var>.
69 */
70 public String processName;
71
72 /**
73 * Class implementing the Application object. From the "class"
74 * attribute.
75 */
76 public String className;
77
78 /**
79 * A style resource identifier (in the package's resources) of the
80 * description of an application. From the "description" attribute
81 * or, if not set, 0.
82 */
83 public int descriptionRes;
84
85 /**
86 * A style resource identifier (in the package's resources) of the
87 * default visual theme of the application. From the "theme" attribute
88 * or, if not set, 0.
89 */
90 public int theme;
91
92 /**
93 * Class implementing the Application's manage space
94 * functionality. From the "manageSpaceActivity"
95 * attribute. This is an optional attribute and will be null if
Christopher Tate181fafa2009-05-14 11:12:14 -070096 * applications don't specify it in their manifest
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080097 */
98 public String manageSpaceActivityName;
99
100 /**
Christopher Tate181fafa2009-05-14 11:12:14 -0700101 * Class implementing the Application's backup functionality. From
102 * the "backupAgent" attribute. This is an optional attribute and
103 * will be null if the application does not specify it in its manifest.
104 *
105 * <p>If android:allowBackup is set to false, this attribute is ignored.
Christopher Tate181fafa2009-05-14 11:12:14 -0700106 */
107 public String backupAgentName;
Christopher Tate4a627c72011-04-01 14:43:32 -0700108
109 /**
Matthew Williams303650c2015-04-17 18:22:51 -0700110 * An optional attribute that indicates the app supports automatic backup of app data.
111 * <p>0 is the default and means the app's entire data folder + managed external storage will
112 * be backed up;
113 * Any negative value indicates the app does not support full-data backup, though it may still
114 * want to participate via the traditional key/value backup API;
115 * A positive number specifies an xml resource in which the application has defined its backup
116 * include/exclude criteria.
117 * <p>If android:allowBackup is set to false, this attribute is ignored.
118 *
Jeff Sharkey8a372a02016-03-16 16:25:45 -0600119 * @see android.content.Context#getNoBackupFilesDir()
120 * @see #FLAG_ALLOW_BACKUP
Christopher Tate98fa6562015-05-14 13:20:10 -0700121 *
122 * @hide
Matthew Williams303650c2015-04-17 18:22:51 -0700123 */
124 public int fullBackupContent = 0;
125
126 /**
Adam Powell269248d2011-08-02 10:26:54 -0700127 * The default extra UI options for activities in this application.
128 * Set from the {@link android.R.attr#uiOptions} attribute in the
129 * activity's manifest.
130 */
131 public int uiOptions = 0;
132
133 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800134 * Value for {@link #flags}: if set, this application is installed in the
135 * device's system image.
136 */
137 public static final int FLAG_SYSTEM = 1<<0;
138
139 /**
140 * Value for {@link #flags}: set to true if this application would like to
141 * allow debugging of its
142 * code, even when installed on a non-development system. Comes
143 * from {@link android.R.styleable#AndroidManifestApplication_debuggable
144 * android:debuggable} of the &lt;application&gt; tag.
145 */
146 public static final int FLAG_DEBUGGABLE = 1<<1;
147
148 /**
149 * Value for {@link #flags}: set to true if this application has code
150 * associated with it. Comes
151 * from {@link android.R.styleable#AndroidManifestApplication_hasCode
152 * android:hasCode} of the &lt;application&gt; tag.
153 */
154 public static final int FLAG_HAS_CODE = 1<<2;
155
156 /**
157 * Value for {@link #flags}: set to true if this application is persistent.
158 * Comes from {@link android.R.styleable#AndroidManifestApplication_persistent
159 * android:persistent} of the &lt;application&gt; tag.
160 */
161 public static final int FLAG_PERSISTENT = 1<<3;
162
163 /**
Christopher Tate181fafa2009-05-14 11:12:14 -0700164 * Value for {@link #flags}: set to true if this application holds the
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800165 * {@link android.Manifest.permission#FACTORY_TEST} permission and the
166 * device is running in factory test mode.
167 */
168 public static final int FLAG_FACTORY_TEST = 1<<4;
169
170 /**
171 * Value for {@link #flags}: default value for the corresponding ActivityInfo flag.
172 * Comes from {@link android.R.styleable#AndroidManifestApplication_allowTaskReparenting
173 * android:allowTaskReparenting} of the &lt;application&gt; tag.
174 */
175 public static final int FLAG_ALLOW_TASK_REPARENTING = 1<<5;
176
177 /**
178 * Value for {@link #flags}: default value for the corresponding ActivityInfo flag.
179 * Comes from {@link android.R.styleable#AndroidManifestApplication_allowClearUserData
180 * android:allowClearUserData} of the &lt;application&gt; tag.
181 */
182 public static final int FLAG_ALLOW_CLEAR_USER_DATA = 1<<6;
183
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800184 /**
Dianne Hackborn851a5412009-05-08 12:06:44 -0700185 * Value for {@link #flags}: this is set if this application has been
Kweku Adams8de29ca2016-01-22 12:30:26 -0800186 * installed as an update to a built-in system application.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800187 */
188 public static final int FLAG_UPDATED_SYSTEM_APP = 1<<7;
Dianne Hackborn851a5412009-05-08 12:06:44 -0700189
190 /**
Svet Ganov354cd3c2015-12-17 11:35:04 -0800191 * Value for {@link #flags}: this is set if the application has specified
Dianne Hackborn7f205432009-07-28 00:13:47 -0700192 * {@link android.R.styleable#AndroidManifestApplication_testOnly
193 * android:testOnly} to be true.
Dianne Hackborn851a5412009-05-08 12:06:44 -0700194 */
Dianne Hackborna96cbb42009-05-13 15:06:13 -0700195 public static final int FLAG_TEST_ONLY = 1<<8;
Dianne Hackbornade3eca2009-05-11 18:54:45 -0700196
197 /**
Dianne Hackborn5c1e00b2009-06-18 17:10:57 -0700198 * Value for {@link #flags}: true when the application's window can be
Dianne Hackborn723738c2009-06-25 19:48:04 -0700199 * reduced in size for smaller screens. Corresponds to
200 * {@link android.R.styleable#AndroidManifestSupportsScreens_smallScreens
201 * android:smallScreens}.
Dianne Hackborn5c1e00b2009-06-18 17:10:57 -0700202 */
Dianne Hackborn723738c2009-06-25 19:48:04 -0700203 public static final int FLAG_SUPPORTS_SMALL_SCREENS = 1<<9;
204
205 /**
206 * Value for {@link #flags}: true when the application's window can be
207 * displayed on normal screens. Corresponds to
208 * {@link android.R.styleable#AndroidManifestSupportsScreens_normalScreens
209 * android:normalScreens}.
210 */
211 public static final int FLAG_SUPPORTS_NORMAL_SCREENS = 1<<10;
212
213 /**
214 * Value for {@link #flags}: true when the application's window can be
215 * increased in size for larger screens. Corresponds to
216 * {@link android.R.styleable#AndroidManifestSupportsScreens_largeScreens
Dianne Hackborn22ec9ab2010-04-29 17:56:03 -0700217 * android:largeScreens}.
Dianne Hackborn723738c2009-06-25 19:48:04 -0700218 */
219 public static final int FLAG_SUPPORTS_LARGE_SCREENS = 1<<11;
Dianne Hackborn5c1e00b2009-06-18 17:10:57 -0700220
221 /**
Dianne Hackbornc4db95c2009-07-21 17:46:02 -0700222 * Value for {@link #flags}: true when the application knows how to adjust
223 * its UI for different screen sizes. Corresponds to
224 * {@link android.R.styleable#AndroidManifestSupportsScreens_resizeable
225 * android:resizeable}.
226 */
227 public static final int FLAG_RESIZEABLE_FOR_SCREENS = 1<<12;
228
229 /**
Dianne Hackborn11b822d2009-07-21 20:03:02 -0700230 * Value for {@link #flags}: true when the application knows how to
231 * accomodate different screen densities. Corresponds to
232 * {@link android.R.styleable#AndroidManifestSupportsScreens_anyDensity
233 * android:anyDensity}.
234 */
235 public static final int FLAG_SUPPORTS_SCREEN_DENSITIES = 1<<13;
236
237 /**
Ben Cheng23085b72010-02-08 16:06:32 -0800238 * Value for {@link #flags}: set to true if this application would like to
239 * request the VM to operate under the safe mode. Comes from
Ben Chengef3f5dd2010-03-29 15:47:26 -0700240 * {@link android.R.styleable#AndroidManifestApplication_vmSafeMode
241 * android:vmSafeMode} of the &lt;application&gt; tag.
Ben Cheng23085b72010-02-08 16:06:32 -0800242 */
243 public static final int FLAG_VM_SAFE_MODE = 1<<14;
244
245 /**
Christopher Tate3de55bc2010-03-12 17:28:08 -0800246 * Value for {@link #flags}: set to <code>false</code> if the application does not wish
247 * to permit any OS-driven backups of its data; <code>true</code> otherwise.
Christopher Tate181fafa2009-05-14 11:12:14 -0700248 *
Christopher Tate3de55bc2010-03-12 17:28:08 -0800249 * <p>Comes from the
250 * {@link android.R.styleable#AndroidManifestApplication_allowBackup android:allowBackup}
251 * attribute of the &lt;application&gt; tag.
Christopher Tate181fafa2009-05-14 11:12:14 -0700252 */
Ben Cheng23085b72010-02-08 16:06:32 -0800253 public static final int FLAG_ALLOW_BACKUP = 1<<15;
Christopher Tate5e1ab332009-09-01 20:32:49 -0700254
255 /**
Christopher Tate3de55bc2010-03-12 17:28:08 -0800256 * Value for {@link #flags}: set to <code>false</code> if the application must be kept
257 * in memory following a full-system restore operation; <code>true</code> otherwise.
258 * Ordinarily, during a full system restore operation each application is shut down
259 * following execution of its agent's onRestore() method. Setting this attribute to
260 * <code>false</code> prevents this. Most applications will not need to set this attribute.
Christopher Tate5e1ab332009-09-01 20:32:49 -0700261 *
Christopher Tate3de55bc2010-03-12 17:28:08 -0800262 * <p>If
263 * {@link android.R.styleable#AndroidManifestApplication_allowBackup android:allowBackup}
264 * is set to <code>false</code> or no
265 * {@link android.R.styleable#AndroidManifestApplication_backupAgent android:backupAgent}
Christopher Tate5e1ab332009-09-01 20:32:49 -0700266 * is specified, this flag will be ignored.
267 *
Christopher Tate3de55bc2010-03-12 17:28:08 -0800268 * <p>Comes from the
269 * {@link android.R.styleable#AndroidManifestApplication_killAfterRestore android:killAfterRestore}
270 * attribute of the &lt;application&gt; tag.
Christopher Tate5e1ab332009-09-01 20:32:49 -0700271 */
Ben Cheng23085b72010-02-08 16:06:32 -0800272 public static final int FLAG_KILL_AFTER_RESTORE = 1<<16;
Christopher Tate5e1ab332009-09-01 20:32:49 -0700273
274 /**
Christopher Tate3de55bc2010-03-12 17:28:08 -0800275 * Value for {@link #flags}: Set to <code>true</code> if the application's backup
276 * agent claims to be able to handle restore data even "from the future,"
277 * i.e. from versions of the application with a versionCode greater than
278 * the one currently installed on the device. <i>Use with caution!</i> By default
279 * this attribute is <code>false</code> and the Backup Manager will ensure that data
280 * from "future" versions of the application are never supplied during a restore operation.
Christopher Tate5e1ab332009-09-01 20:32:49 -0700281 *
Christopher Tate3de55bc2010-03-12 17:28:08 -0800282 * <p>If
283 * {@link android.R.styleable#AndroidManifestApplication_allowBackup android:allowBackup}
284 * is set to <code>false</code> or no
285 * {@link android.R.styleable#AndroidManifestApplication_backupAgent android:backupAgent}
Christopher Tate5e1ab332009-09-01 20:32:49 -0700286 * is specified, this flag will be ignored.
287 *
Christopher Tate3de55bc2010-03-12 17:28:08 -0800288 * <p>Comes from the
289 * {@link android.R.styleable#AndroidManifestApplication_restoreAnyVersion android:restoreAnyVersion}
290 * attribute of the &lt;application&gt; tag.
Christopher Tate5e1ab332009-09-01 20:32:49 -0700291 */
Christopher Tate3de55bc2010-03-12 17:28:08 -0800292 public static final int FLAG_RESTORE_ANY_VERSION = 1<<17;
Christopher Tate5e1ab332009-09-01 20:32:49 -0700293
Christopher Tate181fafa2009-05-14 11:12:14 -0700294 /**
Dianne Hackborn3202d382010-04-26 17:51:34 -0700295 * Value for {@link #flags}: Set to true if the application is
296 * currently installed on external/removable/unprotected storage. Such
297 * applications may not be available if their storage is not currently
298 * mounted. When the storage it is on is not available, it will look like
299 * the application has been uninstalled (its .apk is no longer available)
300 * but its persistent data is not removed.
Suchi Amalapurapuaf8e9f42010-01-12 10:17:28 -0800301 */
Dianne Hackborn94c567e2010-04-26 18:13:10 -0700302 public static final int FLAG_EXTERNAL_STORAGE = 1<<18;
Suchi Amalapurapuaf8e9f42010-01-12 10:17:28 -0800303
304 /**
Dianne Hackborn14cee9f2010-04-23 17:51:26 -0700305 * Value for {@link #flags}: true when the application's window can be
306 * increased in size for extra large screens. Corresponds to
307 * {@link android.R.styleable#AndroidManifestSupportsScreens_xlargeScreens
Dianne Hackborn22ec9ab2010-04-29 17:56:03 -0700308 * android:xlargeScreens}.
Dianne Hackborn14cee9f2010-04-23 17:51:26 -0700309 */
310 public static final int FLAG_SUPPORTS_XLARGE_SCREENS = 1<<19;
311
312 /**
Dianne Hackborn3b81bc12011-01-15 11:50:52 -0800313 * Value for {@link #flags}: true when the application has requested a
314 * large heap for its processes. Corresponds to
315 * {@link android.R.styleable#AndroidManifestApplication_largeHeap
316 * android:largeHeap}.
Jason parksa3cdaa52011-01-13 14:15:43 -0600317 */
Dianne Hackborn3b81bc12011-01-15 11:50:52 -0800318 public static final int FLAG_LARGE_HEAP = 1<<20;
Jason parksa3cdaa52011-01-13 14:15:43 -0600319
320 /**
Dianne Hackborne7f97212011-02-24 14:40:20 -0800321 * Value for {@link #flags}: true if this application's package is in
322 * the stopped state.
323 */
324 public static final int FLAG_STOPPED = 1<<21;
325
326 /**
Fabrice Di Meglio59dfce82012-04-02 16:17:20 -0700327 * Value for {@link #flags}: true when the application is willing to support
328 * RTL (right to left). All activities will inherit this value.
329 *
330 * Set from the {@link android.R.attr#supportsRtl} attribute in the
331 * activity's manifest.
332 *
333 * Default value is false (no support for RTL).
334 */
335 public static final int FLAG_SUPPORTS_RTL = 1<<22;
336
337 /**
Dianne Hackborn7767eac2012-08-23 18:25:40 -0700338 * Value for {@link #flags}: true if the application is currently
339 * installed for the calling user.
340 */
341 public static final int FLAG_INSTALLED = 1<<23;
342
343 /**
Dianne Hackborn5e03e2c2012-09-06 14:21:19 -0700344 * Value for {@link #flags}: true if the application only has its
345 * data installed; the application package itself does not currently
346 * exist on the device.
347 */
348 public static final int FLAG_IS_DATA_ONLY = 1<<24;
349
350 /**
Jeff Sharkey9bc89af2017-01-11 11:25:50 -0700351 * Value for {@link #flags}: true if the application was declared to be a
352 * game, or false if it is a non-game application.
353 *
354 * @deprecated use {@link #CATEGORY_GAME} instead.
Jose Lima12d0b4c2014-03-14 16:55:12 -0700355 */
Jeff Sharkey9bc89af2017-01-11 11:25:50 -0700356 @Deprecated
Jose Lima12d0b4c2014-03-14 16:55:12 -0700357 public static final int FLAG_IS_GAME = 1<<25;
358
359 /**
Christopher Tated1de2562014-06-17 17:12:35 -0700360 * Value for {@link #flags}: {@code true} if the application asks that only
361 * full-data streaming backups of its data be performed even though it defines
362 * a {@link android.app.backup.BackupAgent BackupAgent}, which normally
363 * indicates that the app will manage its backed-up data via incremental
364 * key/value updates.
365 */
366 public static final int FLAG_FULL_BACKUP_ONLY = 1<<26;
367
368 /**
Alex Klyubin01a959d2015-03-18 10:05:45 -0700369 * Value for {@link #flags}: {@code true} if the application may use cleartext network traffic
370 * (e.g., HTTP rather than HTTPS; WebSockets rather than WebSockets Secure; XMPP, IMAP, STMP
371 * without STARTTLS or TLS). If {@code false}, the app declares that it does not intend to use
372 * cleartext network traffic, in which case platform components (e.g., HTTP stacks,
Alex Klyubinfbf45992015-04-21 13:44:29 -0700373 * {@code DownloadManager}, {@code MediaPlayer}) will refuse app's requests to use cleartext
374 * traffic. Third-party libraries are encouraged to honor this flag as well.
375 *
376 * <p>NOTE: {@code WebView} does not honor this flag.
377 *
Chad Brubaker2df5ba72016-04-11 13:31:24 -0700378 * <p>This flag is ignored on Android N and above if an Android Network Security Config is
379 * present.
380 *
Alex Klyubinfbf45992015-04-21 13:44:29 -0700381 * <p>This flag comes from
382 * {@link android.R.styleable#AndroidManifestApplication_usesCleartextTraffic
383 * android:usesCleartextTraffic} of the &lt;application&gt; tag.
Alex Klyubin01a959d2015-03-18 10:05:45 -0700384 */
385 public static final int FLAG_USES_CLEARTEXT_TRAFFIC = 1<<27;
386
387 /**
Dmitriy Ivanovff193d62014-09-30 15:10:48 -0700388 * When set installer extracts native libs from .apk files.
389 */
390 public static final int FLAG_EXTRACT_NATIVE_LIBS = 1<<28;
391
392 /**
Alan Viveretted70b9e72015-05-27 14:29:20 -0700393 * Value for {@link #flags}: {@code true} when the application's rendering
394 * should be hardware accelerated.
395 */
396 public static final int FLAG_HARDWARE_ACCELERATED = 1<<29;
397
398 /**
Andrei Stingaceanu1e283912015-11-26 15:26:28 +0000399 * Value for {@link #flags}: true if this application's package is in
400 * the suspended state.
401 */
402 public static final int FLAG_SUSPENDED = 1<<30;
403
404 /**
Narayan Kamath589a1bc2014-07-03 14:43:26 +0100405 * Value for {@link #flags}: true if code from this application will need to be
406 * loaded into other applications' processes. On devices that support multiple
407 * instruction sets, this implies the code might be loaded into a process that's
408 * using any of the devices supported instruction sets.
409 *
410 * <p> The system might treat such applications specially, for eg., by
411 * extracting the application's native libraries for all supported instruction
412 * sets or by compiling the application's dex code for all supported instruction
413 * sets.
414 */
415 public static final int FLAG_MULTIARCH = 1 << 31;
Amith Yamasani655d0e22013-06-12 14:19:10 -0700416
417 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800418 * Flags associated with the application. Any combination of
419 * {@link #FLAG_SYSTEM}, {@link #FLAG_DEBUGGABLE}, {@link #FLAG_HAS_CODE},
420 * {@link #FLAG_PERSISTENT}, {@link #FLAG_FACTORY_TEST}, and
421 * {@link #FLAG_ALLOW_TASK_REPARENTING}
Dianne Hackborn851a5412009-05-08 12:06:44 -0700422 * {@link #FLAG_ALLOW_CLEAR_USER_DATA}, {@link #FLAG_UPDATED_SYSTEM_APP},
Dianne Hackborn723738c2009-06-25 19:48:04 -0700423 * {@link #FLAG_TEST_ONLY}, {@link #FLAG_SUPPORTS_SMALL_SCREENS},
424 * {@link #FLAG_SUPPORTS_NORMAL_SCREENS},
Dianne Hackborn14cee9f2010-04-23 17:51:26 -0700425 * {@link #FLAG_SUPPORTS_LARGE_SCREENS}, {@link #FLAG_SUPPORTS_XLARGE_SCREENS},
426 * {@link #FLAG_RESIZEABLE_FOR_SCREENS},
Dianne Hackborn7767eac2012-08-23 18:25:40 -0700427 * {@link #FLAG_SUPPORTS_SCREEN_DENSITIES}, {@link #FLAG_VM_SAFE_MODE},
Alex Klyubinb9f8a522015-02-03 11:12:59 -0800428 * {@link #FLAG_ALLOW_BACKUP}, {@link #FLAG_KILL_AFTER_RESTORE},
429 * {@link #FLAG_RESTORE_ANY_VERSION}, {@link #FLAG_EXTERNAL_STORAGE},
430 * {@link #FLAG_LARGE_HEAP}, {@link #FLAG_STOPPED},
431 * {@link #FLAG_SUPPORTS_RTL}, {@link #FLAG_INSTALLED},
432 * {@link #FLAG_IS_DATA_ONLY}, {@link #FLAG_IS_GAME},
Alex Klyubin7cb000f2015-03-26 11:00:04 -0700433 * {@link #FLAG_FULL_BACKUP_ONLY}, {@link #FLAG_USES_CLEARTEXT_TRAFFIC},
434 * {@link #FLAG_MULTIARCH}.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800435 */
436 public int flags = 0;
Amith Yamasani655d0e22013-06-12 14:19:10 -0700437
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800438 /**
Alex Klyubinb9f8a522015-02-03 11:12:59 -0800439 * Value for {@link #privateFlags}: true if the application is hidden via restrictions and for
440 * most purposes is considered as not installed.
441 * {@hide}
442 */
443 public static final int PRIVATE_FLAG_HIDDEN = 1<<0;
444
445 /**
446 * Value for {@link #privateFlags}: set to <code>true</code> if the application
447 * has reported that it is heavy-weight, and thus can not participate in
448 * the normal application lifecycle.
449 *
450 * <p>Comes from the
451 * android.R.styleable#AndroidManifestApplication_cantSaveState
452 * attribute of the &lt;application&gt; tag.
453 *
454 * {@hide}
455 */
456 public static final int PRIVATE_FLAG_CANT_SAVE_STATE = 1<<1;
457
458 /**
459 * Value for {@link #privateFlags}: Set to true if the application has been
460 * installed using the forward lock option.
461 *
462 * NOTE: DO NOT CHANGE THIS VALUE! It is saved in packages.xml.
463 *
464 * {@hide}
465 */
466 public static final int PRIVATE_FLAG_FORWARD_LOCK = 1<<2;
467
468 /**
469 * Value for {@link #privateFlags}: set to {@code true} if the application
470 * is permitted to hold privileged permissions.
471 *
472 * {@hide}
473 */
474 public static final int PRIVATE_FLAG_PRIVILEGED = 1<<3;
475
476 /**
Svet Ganov2acf0632015-11-24 19:10:59 -0800477 * Value for {@link #privateFlags}: {@code true} if the application has any IntentFiler
478 * with some data URI using HTTP or HTTPS with an associated VIEW action.
Fabrice Di Megliod3d8a322015-04-01 15:58:47 -0700479 *
480 * {@hide}
481 */
482 public static final int PRIVATE_FLAG_HAS_DOMAIN_URLS = 1<<4;
483
484 /**
Jeff Sharkey8a372a02016-03-16 16:25:45 -0600485 * When set, the default data storage directory for this app is pointed at
486 * the device-protected location.
Jeff Sharkey15447792015-11-05 16:18:51 -0800487 *
488 * @hide
489 */
Jeff Sharkey8a372a02016-03-16 16:25:45 -0600490 public static final int PRIVATE_FLAG_DEFAULT_TO_DEVICE_PROTECTED_STORAGE = 1 << 5;
Jeff Sharkey15447792015-11-05 16:18:51 -0800491
492 /**
Jeff Sharkey8a372a02016-03-16 16:25:45 -0600493 * When set, assume that all components under the given app are direct boot
Jeff Sharkeyf9fc6d62015-11-08 16:46:05 -0800494 * aware, unless otherwise specified.
495 *
496 * @hide
497 */
Jeff Sharkey8a372a02016-03-16 16:25:45 -0600498 public static final int PRIVATE_FLAG_DIRECT_BOOT_AWARE = 1 << 6;
Jeff Sharkeyf9fc6d62015-11-08 16:46:05 -0800499
500 /**
Chad Brubaker4389c232016-11-04 14:50:50 -0700501 * Value for {@link #flags}: {@code true} if the application is blocked via restrictions
502 * and for most purposes is considered as not installed.
503 * {@hide}
504 */
505 public static final int PRIVATE_FLAG_EPHEMERAL = 1 << 7;
506
507 /**
Jeff Sharkey8a372a02016-03-16 16:25:45 -0600508 * When set, at least one component inside this application is direct boot
509 * aware.
Jeff Sharkey8924e872015-11-30 12:52:10 -0700510 *
511 * @hide
512 */
Jeff Sharkey8a372a02016-03-16 16:25:45 -0600513 public static final int PRIVATE_FLAG_PARTIALLY_DIRECT_BOOT_AWARE = 1 << 8;
Jeff Sharkey8924e872015-11-30 12:52:10 -0700514
Fyodor Kupolovf99104d2015-12-14 11:31:29 -0800515
516 /**
Fyodor Kupolovbdbc9692015-12-14 13:11:13 -0800517 * When set, signals that the application is required for the system user and should not be
518 * uninstalled.
519 *
520 * @hide
521 */
Chad Brubaker4389c232016-11-04 14:50:50 -0700522 public static final int PRIVATE_FLAG_REQUIRED_FOR_SYSTEM_USER = 1 << 9;
Fyodor Kupolovbdbc9692015-12-14 13:11:13 -0800523
524 /**
Wale Ogunwale72a73e32016-10-13 12:16:39 -0700525 * When set, the application explicitly requested that its activities by resizeable by default.
Wale Ogunwale6afdf912016-01-30 13:01:33 -0800526 * @see android.R.styleable#AndroidManifestActivity_resizeableActivity
527 *
528 * @hide
529 */
Chad Brubaker4389c232016-11-04 14:50:50 -0700530 public static final int PRIVATE_FLAG_RESIZEABLE_ACTIVITIES_EXPLICITLY_SET = 1 << 10;
Wale Ogunwale72a73e32016-10-13 12:16:39 -0700531
532 /**
533 * The application isn't requesting explicitly requesting for its activities to be resizeable or
534 * non-resizeable by default. So, we are making it activities resizeable by default based on the
535 * target SDK version of the app.
536 * @see android.R.styleable#AndroidManifestActivity_resizeableActivity
537 *
538 * NOTE: This only affects apps with target SDK >= N where the resizeableActivity attribute was
539 * introduced. It shouldn't be confused with {@link ActivityInfo#RESIZE_MODE_FORCE_RESIZEABLE}
540 * where certain pre-N apps are forced to the resizeable.
541 *
542 * @hide
543 */
Chad Brubaker4389c232016-11-04 14:50:50 -0700544 public static final int PRIVATE_FLAG_RESIZEABLE_ACTIVITIES_VIA_SDK_VERSION = 1 << 11;
Wale Ogunwale6afdf912016-01-30 13:01:33 -0800545
546 /**
Christopher Tate43fbc5f2016-02-17 18:00:48 -0800547 * Value for {@link #privateFlags}: {@code true} means the OS should go ahead and
548 * run full-data backup operations for the app even when it is in a
549 * foreground-equivalent run state. Defaults to {@code false} if unspecified.
550 * @hide
551 */
Chad Brubaker4389c232016-11-04 14:50:50 -0700552 public static final int PRIVATE_FLAG_BACKUP_IN_FOREGROUND = 1 << 12;
Christopher Tate43fbc5f2016-02-17 18:00:48 -0800553
554 /**
Svet Ganov67882122016-12-11 16:36:34 -0800555 * Value for {@link #privateFlags}: {@code true} means this application
556 * contains a static shared library. Defaults to {@code false} if unspecified.
557 * @hide
558 */
559 public static final int PRIVATE_FLAG_STATIC_SHARED_LIBRARY = 1 << 13;
560
561 /**
Adam Lesinski4e862812016-11-21 16:02:24 -0800562 * Value for {@linl #privateFlags}: When set, the application will only have its splits loaded
563 * if they are required to load a component. Splits can be loaded on demand using the
564 * {@link Context#createContextForSplit(String)} API.
565 * @hide
566 */
567 public static final int PRIVATE_FLAG_ISOLATED_SPLIT_LOADING = 1 << 14;
568
569 /**
Alex Klyubinb9f8a522015-02-03 11:12:59 -0800570 * Private/hidden flags. See {@code PRIVATE_FLAG_...} constants.
571 * {@hide}
572 */
573 public int privateFlags;
574
575 /**
Dianne Hackborndf6e9802011-05-26 14:20:23 -0700576 * The required smallest screen width the application can run on. If 0,
577 * nothing has been specified. Comes from
578 * {@link android.R.styleable#AndroidManifestSupportsScreens_requiresSmallestWidthDp
579 * android:requiresSmallestWidthDp} attribute of the &lt;supports-screens&gt; tag.
580 */
581 public int requiresSmallestWidthDp = 0;
582
583 /**
584 * The maximum smallest screen width the application is designed for. If 0,
585 * nothing has been specified. Comes from
586 * {@link android.R.styleable#AndroidManifestSupportsScreens_compatibleWidthLimitDp
587 * android:compatibleWidthLimitDp} attribute of the &lt;supports-screens&gt; tag.
588 */
589 public int compatibleWidthLimitDp = 0;
590
591 /**
Dianne Hackborn2762ff32011-06-01 21:27:05 -0700592 * The maximum smallest screen width the application will work on. If 0,
593 * nothing has been specified. Comes from
594 * {@link android.R.styleable#AndroidManifestSupportsScreens_largestWidthLimitDp
595 * android:largestWidthLimitDp} attribute of the &lt;supports-screens&gt; tag.
596 */
597 public int largestWidthLimitDp = 0;
598
Jeff Sharkeyd7460572014-07-06 20:44:55 -0700599 /** {@hide} */
Jeff Sharkeyb2b9ab82015-04-05 21:10:42 -0700600 public String volumeUuid;
601 /** {@hide} */
Jeff Sharkeyd7460572014-07-06 20:44:55 -0700602 public String scanSourceDir;
603 /** {@hide} */
604 public String scanPublicSourceDir;
605
Dianne Hackborn2762ff32011-06-01 21:27:05 -0700606 /**
Jeff Sharkey8a4c9722014-06-16 13:48:42 -0700607 * Full path to the base APK for this application.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800608 */
609 public String sourceDir;
610
611 /**
Jeff Sharkey8a4c9722014-06-16 13:48:42 -0700612 * Full path to the publicly available parts of {@link #sourceDir},
613 * including resources and manifest. This may be different from
614 * {@link #sourceDir} if an application is forward locked.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800615 */
616 public String publicSourceDir;
Jeff Sharkey8a4c9722014-06-16 13:48:42 -0700617
618 /**
Adam Lesinski4e862812016-11-21 16:02:24 -0800619 * The names of all installed split APKs, ordered lexicographically.
620 */
621 public String[] splitNames;
622
623 /**
624 * Full paths to zero or more split APKs, indexed by the same order as {@link #splitNames}.
Jeff Sharkey8a4c9722014-06-16 13:48:42 -0700625 */
626 public String[] splitSourceDirs;
627
628 /**
629 * Full path to the publicly available parts of {@link #splitSourceDirs},
630 * including resources and manifest. This may be different from
631 * {@link #splitSourceDirs} if an application is forward locked.
Adam Lesinski4e862812016-11-21 16:02:24 -0800632 *
633 * @see #splitSourceDirs
Jeff Sharkey8a4c9722014-06-16 13:48:42 -0700634 */
635 public String[] splitPublicSourceDirs;
636
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800637 /**
Adam Lesinski4e862812016-11-21 16:02:24 -0800638 * Maps the dependencies between split APKs. All splits implicitly depend on the base APK.
639 *
640 * Available since platform version O.
641 *
642 * Only populated if the application opts in to isolated split loading via the
643 * {@link android.R.attr.isolatedSplits} attribute in the &lt;manifest&gt; tag of the app's
644 * AndroidManifest.xml.
645 *
646 * The keys and values are all indices into the {@link #splitNames}, {@link #splitSourceDirs},
647 * and {@link #splitPublicSourceDirs} arrays.
648 * Each key represents a split and its value is its parent split.
649 * Cycles do not exist because they are illegal and screened for during installation.
650 *
651 * May be null if no splits are installed, or if no dependencies exist between them.
652 * @hide
653 */
654 public SparseIntArray splitDependencies;
655
656 /**
657 * Full paths to the locations of extra resource packages (runtime overlays)
658 * this application uses. This field is only used if there are extra resource
659 * packages, otherwise it is null.
660 *
Kenny Rootace5a3f2010-02-05 12:59:28 -0800661 * {@hide}
Kenny Rootd1ab0162010-01-21 17:27:14 -0800662 */
663 public String[] resourceDirs;
664
665 /**
Robert Craig0f40dc92013-03-25 06:33:03 -0400666 * String retrieved from the seinfo tag found in selinux policy. This value
Robert Craig5e16bc52015-08-28 12:11:41 -0400667 * can be overridden with a value set through the mac_permissions.xml policy
668 * construct. This value is useful in setting an SELinux security context on
669 * the process as well as its data directory. The String default is being used
670 * here to represent a catchall label when no policy matches.
Robert Craig0f40dc92013-03-25 06:33:03 -0400671 *
672 * {@hide}
673 */
Robert Craig5e16bc52015-08-28 12:11:41 -0400674 public String seinfo = "default";
Robert Craig0f40dc92013-03-25 06:33:03 -0400675
676 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800677 * Paths to all shared libraries this application is linked against. This
678 * field is only set if the {@link PackageManager#GET_SHARED_LIBRARY_FILES
679 * PackageManager.GET_SHARED_LIBRARY_FILES} flag was used when retrieving
680 * the structure.
681 */
682 public String[] sharedLibraryFiles;
683
684 /**
Jeff Sharkey7a30a302015-12-08 14:20:06 -0700685 * Full path to the default directory assigned to the package for its
686 * persistent data.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800687 */
688 public String dataDir;
Kenny Root85387d72010-08-26 10:13:11 -0700689
Jeff Sharkey7a30a302015-12-08 14:20:06 -0700690 /**
Jeff Sharkey8a372a02016-03-16 16:25:45 -0600691 * Full path to the device-protected directory assigned to the package for
Jeff Sharkey7a30a302015-12-08 14:20:06 -0700692 * its persistent data.
Jeff Sharkey8a372a02016-03-16 16:25:45 -0600693 *
694 * @see Context#createDeviceProtectedStorageContext()
Jeff Sharkey7a30a302015-12-08 14:20:06 -0700695 */
Jeff Sharkey8a372a02016-03-16 16:25:45 -0600696 public String deviceProtectedDataDir;
697
698 /** @removed */
699 @Deprecated
Jeff Sharkey15447792015-11-05 16:18:51 -0800700 public String deviceEncryptedDataDir;
Jeff Sharkey7a30a302015-12-08 14:20:06 -0700701
702 /**
Jeff Sharkey8a372a02016-03-16 16:25:45 -0600703 * Full path to the credential-protected directory assigned to the package
Jeff Sharkey7a30a302015-12-08 14:20:06 -0700704 * for its persistent data.
Jeff Sharkey8a372a02016-03-16 16:25:45 -0600705 *
706 * @hide
Jeff Sharkey7a30a302015-12-08 14:20:06 -0700707 */
Jeff Sharkey8a372a02016-03-16 16:25:45 -0600708 @SystemApi
709 public String credentialProtectedDataDir;
710
711 /** @removed */
712 @Deprecated
Jeff Sharkey15447792015-11-05 16:18:51 -0800713 public String credentialEncryptedDataDir;
714
Kenny Root85387d72010-08-26 10:13:11 -0700715 /**
716 * Full path to the directory where native JNI libraries are stored.
Kenny Root85387d72010-08-26 10:13:11 -0700717 */
718 public String nativeLibraryDir;
719
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800720 /**
Narayan Kamath7dba6eb2014-07-16 08:53:30 +0100721 * Full path where unpacked native libraries for {@link #secondaryCpuAbi}
722 * are stored, if present.
723 *
724 * The main reason this exists is for bundled multi-arch apps, where
725 * it's not trivial to calculate the location of libs for the secondary abi
726 * given the location of the primary.
727 *
728 * TODO: Change the layout of bundled installs so that we can use
729 * nativeLibraryRootDir & nativeLibraryRootRequiresIsa there as well.
730 * (e.g {@code [ "/system/app-lib/Foo/arm", "/system/app-lib/Foo/arm64" ]}
731 * instead of {@code [ "/system/lib/Foo", "/system/lib64/Foo" ]}.
732 *
733 * @hide
734 */
735 public String secondaryNativeLibraryDir;
736
737 /**
Jeff Sharkey84f12942014-07-10 17:48:11 -0700738 * The root path where unpacked native libraries are stored.
739 * <p>
740 * When {@link #nativeLibraryRootRequiresIsa} is set, the libraries are
741 * placed in ISA-specific subdirectories under this path, otherwise the
742 * libraries are placed directly at this path.
Narayan Kamathff110bd2014-07-04 18:30:45 +0100743 *
Jeff Sharkey84f12942014-07-10 17:48:11 -0700744 * @hide
Narayan Kamathff110bd2014-07-04 18:30:45 +0100745 */
Jeff Sharkey84f12942014-07-10 17:48:11 -0700746 public String nativeLibraryRootDir;
747
748 /**
749 * Flag indicating that ISA must be appended to
750 * {@link #nativeLibraryRootDir} to be useful.
751 *
752 * @hide
753 */
754 public boolean nativeLibraryRootRequiresIsa;
Narayan Kamathff110bd2014-07-04 18:30:45 +0100755
756 /**
757 * The primary ABI that this application requires, This is inferred from the ABIs
Ramin Zaghiff0c4702014-04-01 15:02:29 +0100758 * of the native JNI libraries the application bundles. Will be {@code null}
759 * if this application does not require any particular ABI.
760 *
Narayan Kamathff110bd2014-07-04 18:30:45 +0100761 * If non-null, the application will always be launched with this ABI.
762 *
Ramin Zaghiff0c4702014-04-01 15:02:29 +0100763 * {@hide}
764 */
Narayan Kamathff110bd2014-07-04 18:30:45 +0100765 public String primaryCpuAbi;
766
767 /**
768 * The secondary ABI for this application. Might be non-null for multi-arch
769 * installs. The application itself never uses this ABI, but other applications that
770 * use its code might.
771 *
772 * {@hide}
773 */
774 public String secondaryCpuAbi;
775
776 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800777 * The kernel user-ID that has been assigned to this application;
778 * currently this is not a unique ID (multiple applications can have
779 * the same uid).
780 */
781 public int uid;
782
Mitsuru Oshima8d112672009-04-27 12:01:23 -0700783 /**
Todd Kennedy89d60182016-03-11 11:18:32 -0800784 * The minimum SDK version this application can run on. It will not run
785 * on earlier versions.
786 */
Todd Kennedy6e2e7f52016-05-02 14:56:45 -0700787 public int minSdkVersion;
Todd Kennedy89d60182016-03-11 11:18:32 -0800788
789 /**
Dianne Hackborn3b3e1452009-09-24 19:22:12 -0700790 * The minimum SDK version this application targets. It may run on earlier
Dianne Hackborna96cbb42009-05-13 15:06:13 -0700791 * versions, but it knows how to work with any new behavior added at this
792 * version. Will be {@link android.os.Build.VERSION_CODES#CUR_DEVELOPMENT}
793 * if this is a development build and the app is targeting that. You should
794 * compare that this number is >= the SDK version number at which your
795 * behavior was introduced.
796 */
797 public int targetSdkVersion;
Dianne Hackborn8472e612014-01-23 17:57:20 -0800798
799 /**
800 * The app's declared version code.
801 * @hide
802 */
803 public int versionCode;
804
Dianne Hackborna96cbb42009-05-13 15:06:13 -0700805 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800806 * When false, indicates that all components within this application are
807 * considered disabled, regardless of their individually set enabled status.
808 */
809 public boolean enabled = true;
810
Dianne Hackborn54e570f2010-10-04 18:32:32 -0700811 /**
Dianne Hackborn0ac30312011-06-17 14:49:23 -0700812 * For convenient access to the current enabled setting of this app.
813 * @hide
814 */
815 public int enabledSetting = PackageManager.COMPONENT_ENABLED_STATE_DEFAULT;
816
817 /**
Dianne Hackborn54e570f2010-10-04 18:32:32 -0700818 * For convenient access to package's install location.
819 * @hide
820 */
821 public int installLocation = PackageInfo.INSTALL_LOCATION_UNSPECIFIED;
Jose Lima12d0b4c2014-03-14 16:55:12 -0700822
Chad Brubakerc845b2a2016-05-13 14:09:27 -0700823 /**
824 * Resource file providing the application's Network Security Config.
825 * @hide
826 */
827 public int networkSecurityConfigRes;
828
Jeff Sharkey9bc89af2017-01-11 11:25:50 -0700829 /**
Todd Kennedy11e45072017-01-25 13:24:21 -0800830 * Version of the sandbox the application wants to run in.
831 * @hide
832 */
833 public int targetSandboxVersion;
834
835 /**
Jeff Sharkey9bc89af2017-01-11 11:25:50 -0700836 * The category of this app. Categories are used to cluster multiple apps
837 * together into meaningful groups, such as when summarizing battery,
838 * network, or disk usage. Apps should only define this value when they fit
839 * well into one of the specific categories.
840 * <p>
841 * Set from the {@link android.R.attr#appCategory} attribute in the
842 * manifest. If the manifest doesn't define a category, this value may have
843 * been provided by the installer via
844 * {@link PackageManager#setApplicationCategoryHint(String, int)}.
845 */
846 public @Category int category = CATEGORY_UNDEFINED;
847
848 /** {@hide} */
849 @IntDef({
850 CATEGORY_UNDEFINED,
851 CATEGORY_GAME,
852 CATEGORY_AUDIO,
853 CATEGORY_VIDEO,
854 CATEGORY_IMAGE,
855 CATEGORY_SOCIAL,
856 CATEGORY_NEWS,
857 CATEGORY_MAPS,
858 CATEGORY_PRODUCTIVITY
859 })
860 @Retention(RetentionPolicy.SOURCE)
861 public @interface Category {
862 }
863
864 /**
865 * Value when category is undefined.
866 *
867 * @see #category
868 */
869 public static final int CATEGORY_UNDEFINED = -1;
870
871 /**
872 * Category for apps which are primarily games.
873 *
874 * @see #category
875 */
876 public static final int CATEGORY_GAME = 0;
877
878 /**
879 * Category for apps which primarily work with audio or music, such as music
880 * players.
881 *
882 * @see #category
883 */
884 public static final int CATEGORY_AUDIO = 1;
885
886 /**
887 * Category for apps which primarily work with video or movies, such as
888 * streaming video apps.
889 *
890 * @see #category
891 */
892 public static final int CATEGORY_VIDEO = 2;
893
894 /**
895 * Category for apps which primarily work with images or photos, such as
896 * camera or gallery apps.
897 *
898 * @see #category
899 */
900 public static final int CATEGORY_IMAGE = 3;
901
902 /**
903 * Category for apps which are primarily social apps, such as messaging,
904 * communication, or social network apps.
905 *
906 * @see #category
907 */
908 public static final int CATEGORY_SOCIAL = 4;
909
910 /**
911 * Category for apps which are primarily news apps, such as newspapers,
912 * magazines, or sports apps.
913 *
914 * @see #category
915 */
916 public static final int CATEGORY_NEWS = 5;
917
918 /**
919 * Category for apps which are primarily maps apps, such as navigation apps.
920 *
921 * @see #category
922 */
923 public static final int CATEGORY_MAPS = 6;
924
925 /**
926 * Category for apps which are primarily productivity apps, such as cloud
927 * storage or workplace apps.
928 *
929 * @see #category
930 */
931 public static final int CATEGORY_PRODUCTIVITY = 7;
932
933 /**
934 * Return a concise, localized title for the given
935 * {@link ApplicationInfo#category} value, or {@code null} for unknown
936 * values such as {@link #CATEGORY_UNDEFINED}.
937 *
938 * @see #category
939 */
940 public static CharSequence getCategoryTitle(Context context, @Category int category) {
941 switch (category) {
942 case ApplicationInfo.CATEGORY_GAME:
943 return context.getText(com.android.internal.R.string.app_category_game);
944 case ApplicationInfo.CATEGORY_AUDIO:
945 return context.getText(com.android.internal.R.string.app_category_audio);
946 case ApplicationInfo.CATEGORY_VIDEO:
947 return context.getText(com.android.internal.R.string.app_category_video);
948 case ApplicationInfo.CATEGORY_IMAGE:
949 return context.getText(com.android.internal.R.string.app_category_image);
950 case ApplicationInfo.CATEGORY_SOCIAL:
951 return context.getText(com.android.internal.R.string.app_category_social);
952 case ApplicationInfo.CATEGORY_NEWS:
953 return context.getText(com.android.internal.R.string.app_category_news);
954 case ApplicationInfo.CATEGORY_MAPS:
955 return context.getText(com.android.internal.R.string.app_category_maps);
956 case ApplicationInfo.CATEGORY_PRODUCTIVITY:
957 return context.getText(com.android.internal.R.string.app_category_productivity);
958 default:
959 return null;
960 }
961 }
962
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800963 public void dump(Printer pw, String prefix) {
Dianne Hackborn6ac42ae2015-12-08 17:22:10 -0800964 dump(pw, prefix, DUMP_FLAG_ALL);
965 }
966
967 /** @hide */
968 public void dump(Printer pw, String prefix, int flags) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800969 super.dumpFront(pw, prefix);
Dianne Hackborn6ac42ae2015-12-08 17:22:10 -0800970 if ((flags&DUMP_FLAG_DETAILS) != 0 && className != null) {
Dianne Hackborn12527f92009-11-11 17:39:50 -0800971 pw.println(prefix + "className=" + className);
972 }
973 if (permission != null) {
974 pw.println(prefix + "permission=" + permission);
975 }
Dianne Hackborn39792d22010-08-19 18:01:52 -0700976 pw.println(prefix + "processName=" + processName);
Dianne Hackborn6ac42ae2015-12-08 17:22:10 -0800977 if ((flags&DUMP_FLAG_DETAILS) != 0) {
978 pw.println(prefix + "taskAffinity=" + taskAffinity);
979 }
Dianne Hackborn39792d22010-08-19 18:01:52 -0700980 pw.println(prefix + "uid=" + uid + " flags=0x" + Integer.toHexString(flags)
Alex Klyubinb9f8a522015-02-03 11:12:59 -0800981 + " privateFlags=0x" + Integer.toHexString(privateFlags)
Dianne Hackborn39792d22010-08-19 18:01:52 -0700982 + " theme=0x" + Integer.toHexString(theme));
Dianne Hackborn6ac42ae2015-12-08 17:22:10 -0800983 if ((flags&DUMP_FLAG_DETAILS) != 0) {
984 pw.println(prefix + "requiresSmallestWidthDp=" + requiresSmallestWidthDp
985 + " compatibleWidthLimitDp=" + compatibleWidthLimitDp
986 + " largestWidthLimitDp=" + largestWidthLimitDp);
987 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800988 pw.println(prefix + "sourceDir=" + sourceDir);
Jeff Sharkey8a4c9722014-06-16 13:48:42 -0700989 if (!Objects.equals(sourceDir, publicSourceDir)) {
Dianne Hackborn39792d22010-08-19 18:01:52 -0700990 pw.println(prefix + "publicSourceDir=" + publicSourceDir);
991 }
Jeff Sharkey8a4c9722014-06-16 13:48:42 -0700992 if (!ArrayUtils.isEmpty(splitSourceDirs)) {
993 pw.println(prefix + "splitSourceDirs=" + Arrays.toString(splitSourceDirs));
994 }
995 if (!ArrayUtils.isEmpty(splitPublicSourceDirs)
996 && !Arrays.equals(splitSourceDirs, splitPublicSourceDirs)) {
997 pw.println(prefix + "splitPublicSourceDirs=" + Arrays.toString(splitPublicSourceDirs));
998 }
Dianne Hackborn39792d22010-08-19 18:01:52 -0700999 if (resourceDirs != null) {
Andreas Gampee6748ce2015-12-11 18:00:38 -08001000 pw.println(prefix + "resourceDirs=" + Arrays.toString(resourceDirs));
Dianne Hackborn39792d22010-08-19 18:01:52 -07001001 }
Dianne Hackborn6ac42ae2015-12-08 17:22:10 -08001002 if ((flags&DUMP_FLAG_DETAILS) != 0 && seinfo != null) {
Robert Craig0f40dc92013-03-25 06:33:03 -04001003 pw.println(prefix + "seinfo=" + seinfo);
1004 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001005 pw.println(prefix + "dataDir=" + dataDir);
Dianne Hackborn6ac42ae2015-12-08 17:22:10 -08001006 if ((flags&DUMP_FLAG_DETAILS) != 0) {
Jeff Sharkey8a372a02016-03-16 16:25:45 -06001007 pw.println(prefix + "deviceProtectedDataDir=" + deviceProtectedDataDir);
1008 pw.println(prefix + "credentialProtectedDataDir=" + credentialProtectedDataDir);
Dianne Hackborn6ac42ae2015-12-08 17:22:10 -08001009 if (sharedLibraryFiles != null) {
1010 pw.println(prefix + "sharedLibraryFiles=" + Arrays.toString(sharedLibraryFiles));
1011 }
Dianne Hackborn12527f92009-11-11 17:39:50 -08001012 }
Todd Kennedy89d60182016-03-11 11:18:32 -08001013 pw.println(prefix + "enabled=" + enabled
1014 + " minSdkVersion=" + minSdkVersion
1015 + " targetSdkVersion=" + targetSdkVersion
Todd Kennedy11e45072017-01-25 13:24:21 -08001016 + " versionCode=" + versionCode
1017 + " targetSandboxVersion=" + targetSandboxVersion);
Dianne Hackborn6ac42ae2015-12-08 17:22:10 -08001018 if ((flags&DUMP_FLAG_DETAILS) != 0) {
1019 if (manageSpaceActivityName != null) {
1020 pw.println(prefix + "manageSpaceActivityName=" + manageSpaceActivityName);
1021 }
1022 if (descriptionRes != 0) {
1023 pw.println(prefix + "description=0x" + Integer.toHexString(descriptionRes));
1024 }
1025 if (uiOptions != 0) {
1026 pw.println(prefix + "uiOptions=0x" + Integer.toHexString(uiOptions));
1027 }
1028 pw.println(prefix + "supportsRtl=" + (hasRtlSupport() ? "true" : "false"));
1029 if (fullBackupContent > 0) {
1030 pw.println(prefix + "fullBackupContent=@xml/" + fullBackupContent);
1031 } else {
1032 pw.println(prefix + "fullBackupContent="
1033 + (fullBackupContent < 0 ? "false" : "true"));
1034 }
Chad Brubakerc845b2a2016-05-13 14:09:27 -07001035 if (networkSecurityConfigRes != 0) {
1036 pw.println(prefix + "networkSecurityConfigRes=0x"
1037 + Integer.toHexString(networkSecurityConfigRes));
1038 }
Jeff Sharkey9bc89af2017-01-11 11:25:50 -07001039 if (category != CATEGORY_UNDEFINED) {
1040 pw.println(prefix + "category=" + category);
1041 }
Matthew Williams303650c2015-04-17 18:22:51 -07001042 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001043 super.dumpBack(pw, prefix);
1044 }
Fabrice Di Meglio59dfce82012-04-02 16:17:20 -07001045
1046 /**
1047 * @return true if "supportsRtl" has been set to true in the AndroidManifest
1048 * @hide
1049 */
1050 public boolean hasRtlSupport() {
1051 return (flags & FLAG_SUPPORTS_RTL) == FLAG_SUPPORTS_RTL;
1052 }
Jeff Sharkeyba75a9b2016-01-07 11:51:33 -07001053
1054 /** {@hide} */
1055 public boolean hasCode() {
1056 return (flags & FLAG_HAS_CODE) != 0;
1057 }
1058
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001059 public static class DisplayNameComparator
1060 implements Comparator<ApplicationInfo> {
1061 public DisplayNameComparator(PackageManager pm) {
1062 mPM = pm;
1063 }
1064
1065 public final int compare(ApplicationInfo aa, ApplicationInfo ab) {
1066 CharSequence sa = mPM.getApplicationLabel(aa);
1067 if (sa == null) {
1068 sa = aa.packageName;
1069 }
1070 CharSequence sb = mPM.getApplicationLabel(ab);
1071 if (sb == null) {
1072 sb = ab.packageName;
1073 }
1074
1075 return sCollator.compare(sa.toString(), sb.toString());
1076 }
1077
1078 private final Collator sCollator = Collator.getInstance();
1079 private PackageManager mPM;
1080 }
1081
1082 public ApplicationInfo() {
1083 }
1084
1085 public ApplicationInfo(ApplicationInfo orig) {
1086 super(orig);
1087 taskAffinity = orig.taskAffinity;
1088 permission = orig.permission;
1089 processName = orig.processName;
1090 className = orig.className;
1091 theme = orig.theme;
1092 flags = orig.flags;
Alex Klyubinb9f8a522015-02-03 11:12:59 -08001093 privateFlags = orig.privateFlags;
Dianne Hackborndf6e9802011-05-26 14:20:23 -07001094 requiresSmallestWidthDp = orig.requiresSmallestWidthDp;
1095 compatibleWidthLimitDp = orig.compatibleWidthLimitDp;
Dianne Hackborn2762ff32011-06-01 21:27:05 -07001096 largestWidthLimitDp = orig.largestWidthLimitDp;
Jeff Sharkeyb2b9ab82015-04-05 21:10:42 -07001097 volumeUuid = orig.volumeUuid;
Jeff Sharkey7f1a57a2014-10-08 10:14:53 -07001098 scanSourceDir = orig.scanSourceDir;
1099 scanPublicSourceDir = orig.scanPublicSourceDir;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001100 sourceDir = orig.sourceDir;
1101 publicSourceDir = orig.publicSourceDir;
Adam Lesinski4e862812016-11-21 16:02:24 -08001102 splitNames = orig.splitNames;
Jeff Sharkey8a4c9722014-06-16 13:48:42 -07001103 splitSourceDirs = orig.splitSourceDirs;
1104 splitPublicSourceDirs = orig.splitPublicSourceDirs;
Adam Lesinski4e862812016-11-21 16:02:24 -08001105 splitDependencies = orig.splitDependencies;
Kenny Root85387d72010-08-26 10:13:11 -07001106 nativeLibraryDir = orig.nativeLibraryDir;
Narayan Kamath7dba6eb2014-07-16 08:53:30 +01001107 secondaryNativeLibraryDir = orig.secondaryNativeLibraryDir;
Jeff Sharkey84f12942014-07-10 17:48:11 -07001108 nativeLibraryRootDir = orig.nativeLibraryRootDir;
1109 nativeLibraryRootRequiresIsa = orig.nativeLibraryRootRequiresIsa;
Narayan Kamathff110bd2014-07-04 18:30:45 +01001110 primaryCpuAbi = orig.primaryCpuAbi;
1111 secondaryCpuAbi = orig.secondaryCpuAbi;
Kenny Rootd1ab0162010-01-21 17:27:14 -08001112 resourceDirs = orig.resourceDirs;
Robert Craig0f40dc92013-03-25 06:33:03 -04001113 seinfo = orig.seinfo;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001114 sharedLibraryFiles = orig.sharedLibraryFiles;
1115 dataDir = orig.dataDir;
Jeff Sharkey8a372a02016-03-16 16:25:45 -06001116 deviceEncryptedDataDir = deviceProtectedDataDir = orig.deviceProtectedDataDir;
1117 credentialEncryptedDataDir = credentialProtectedDataDir = orig.credentialProtectedDataDir;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001118 uid = orig.uid;
Todd Kennedy89d60182016-03-11 11:18:32 -08001119 minSdkVersion = orig.minSdkVersion;
Dianne Hackborna96cbb42009-05-13 15:06:13 -07001120 targetSdkVersion = orig.targetSdkVersion;
Dianne Hackborn8472e612014-01-23 17:57:20 -08001121 versionCode = orig.versionCode;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001122 enabled = orig.enabled;
Dianne Hackborn0ac30312011-06-17 14:49:23 -07001123 enabledSetting = orig.enabledSetting;
Dianne Hackborn54e570f2010-10-04 18:32:32 -07001124 installLocation = orig.installLocation;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001125 manageSpaceActivityName = orig.manageSpaceActivityName;
1126 descriptionRes = orig.descriptionRes;
Adam Powell269248d2011-08-02 10:26:54 -07001127 uiOptions = orig.uiOptions;
Christopher Tatebcb02552012-10-16 17:14:34 -07001128 backupAgentName = orig.backupAgentName;
Matthew Williams303650c2015-04-17 18:22:51 -07001129 fullBackupContent = orig.fullBackupContent;
Chad Brubakerc845b2a2016-05-13 14:09:27 -07001130 networkSecurityConfigRes = orig.networkSecurityConfigRes;
Jeff Sharkey9bc89af2017-01-11 11:25:50 -07001131 category = orig.category;
Todd Kennedy11e45072017-01-25 13:24:21 -08001132 targetSandboxVersion = orig.targetSandboxVersion;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001133 }
1134
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001135 public String toString() {
1136 return "ApplicationInfo{"
1137 + Integer.toHexString(System.identityHashCode(this))
1138 + " " + packageName + "}";
1139 }
1140
1141 public int describeContents() {
1142 return 0;
1143 }
1144
Adam Lesinski4e862812016-11-21 16:02:24 -08001145 @SuppressWarnings("unchecked")
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001146 public void writeToParcel(Parcel dest, int parcelableFlags) {
1147 super.writeToParcel(dest, parcelableFlags);
1148 dest.writeString(taskAffinity);
1149 dest.writeString(permission);
1150 dest.writeString(processName);
1151 dest.writeString(className);
1152 dest.writeInt(theme);
1153 dest.writeInt(flags);
Alex Klyubinb9f8a522015-02-03 11:12:59 -08001154 dest.writeInt(privateFlags);
Dianne Hackborndf6e9802011-05-26 14:20:23 -07001155 dest.writeInt(requiresSmallestWidthDp);
1156 dest.writeInt(compatibleWidthLimitDp);
Dianne Hackborn2762ff32011-06-01 21:27:05 -07001157 dest.writeInt(largestWidthLimitDp);
Jeff Sharkeyb2b9ab82015-04-05 21:10:42 -07001158 dest.writeString(volumeUuid);
Jeff Sharkey7f1a57a2014-10-08 10:14:53 -07001159 dest.writeString(scanSourceDir);
1160 dest.writeString(scanPublicSourceDir);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001161 dest.writeString(sourceDir);
1162 dest.writeString(publicSourceDir);
Adam Lesinski4e862812016-11-21 16:02:24 -08001163 dest.writeStringArray(splitNames);
Jeff Sharkey8a4c9722014-06-16 13:48:42 -07001164 dest.writeStringArray(splitSourceDirs);
1165 dest.writeStringArray(splitPublicSourceDirs);
Adam Lesinski4e862812016-11-21 16:02:24 -08001166 dest.writeSparseIntArray(splitDependencies);
Kenny Root85387d72010-08-26 10:13:11 -07001167 dest.writeString(nativeLibraryDir);
Narayan Kamath7dba6eb2014-07-16 08:53:30 +01001168 dest.writeString(secondaryNativeLibraryDir);
Jeff Sharkey84f12942014-07-10 17:48:11 -07001169 dest.writeString(nativeLibraryRootDir);
1170 dest.writeInt(nativeLibraryRootRequiresIsa ? 1 : 0);
Narayan Kamathff110bd2014-07-04 18:30:45 +01001171 dest.writeString(primaryCpuAbi);
1172 dest.writeString(secondaryCpuAbi);
Kenny Rootd1ab0162010-01-21 17:27:14 -08001173 dest.writeStringArray(resourceDirs);
Robert Craig0f40dc92013-03-25 06:33:03 -04001174 dest.writeString(seinfo);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001175 dest.writeStringArray(sharedLibraryFiles);
1176 dest.writeString(dataDir);
Jeff Sharkey8a372a02016-03-16 16:25:45 -06001177 dest.writeString(deviceProtectedDataDir);
1178 dest.writeString(credentialProtectedDataDir);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001179 dest.writeInt(uid);
Todd Kennedy6e2e7f52016-05-02 14:56:45 -07001180 dest.writeInt(minSdkVersion);
Dianne Hackborna96cbb42009-05-13 15:06:13 -07001181 dest.writeInt(targetSdkVersion);
Dianne Hackborn8472e612014-01-23 17:57:20 -08001182 dest.writeInt(versionCode);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001183 dest.writeInt(enabled ? 1 : 0);
Dianne Hackborn0ac30312011-06-17 14:49:23 -07001184 dest.writeInt(enabledSetting);
Dianne Hackborn54e570f2010-10-04 18:32:32 -07001185 dest.writeInt(installLocation);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001186 dest.writeString(manageSpaceActivityName);
Christopher Tate181fafa2009-05-14 11:12:14 -07001187 dest.writeString(backupAgentName);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001188 dest.writeInt(descriptionRes);
Adam Powell269248d2011-08-02 10:26:54 -07001189 dest.writeInt(uiOptions);
Matthew Williams303650c2015-04-17 18:22:51 -07001190 dest.writeInt(fullBackupContent);
Chad Brubakerc845b2a2016-05-13 14:09:27 -07001191 dest.writeInt(networkSecurityConfigRes);
Jeff Sharkey9bc89af2017-01-11 11:25:50 -07001192 dest.writeInt(category);
Todd Kennedy11e45072017-01-25 13:24:21 -08001193 dest.writeInt(targetSandboxVersion);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001194 }
1195
1196 public static final Parcelable.Creator<ApplicationInfo> CREATOR
1197 = new Parcelable.Creator<ApplicationInfo>() {
1198 public ApplicationInfo createFromParcel(Parcel source) {
1199 return new ApplicationInfo(source);
1200 }
1201 public ApplicationInfo[] newArray(int size) {
1202 return new ApplicationInfo[size];
1203 }
1204 };
1205
Adam Lesinski4e862812016-11-21 16:02:24 -08001206 @SuppressWarnings("unchecked")
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001207 private ApplicationInfo(Parcel source) {
1208 super(source);
1209 taskAffinity = source.readString();
1210 permission = source.readString();
1211 processName = source.readString();
1212 className = source.readString();
1213 theme = source.readInt();
1214 flags = source.readInt();
Alex Klyubinb9f8a522015-02-03 11:12:59 -08001215 privateFlags = source.readInt();
Dianne Hackborndf6e9802011-05-26 14:20:23 -07001216 requiresSmallestWidthDp = source.readInt();
1217 compatibleWidthLimitDp = source.readInt();
Dianne Hackborn2762ff32011-06-01 21:27:05 -07001218 largestWidthLimitDp = source.readInt();
Jeff Sharkeyb2b9ab82015-04-05 21:10:42 -07001219 volumeUuid = source.readString();
Jeff Sharkey7f1a57a2014-10-08 10:14:53 -07001220 scanSourceDir = source.readString();
1221 scanPublicSourceDir = source.readString();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001222 sourceDir = source.readString();
1223 publicSourceDir = source.readString();
Adam Lesinski4e862812016-11-21 16:02:24 -08001224 splitNames = source.readStringArray();
Jeff Sharkey8a4c9722014-06-16 13:48:42 -07001225 splitSourceDirs = source.readStringArray();
1226 splitPublicSourceDirs = source.readStringArray();
Adam Lesinski4e862812016-11-21 16:02:24 -08001227 splitDependencies = source.readSparseIntArray();
Kenny Root85387d72010-08-26 10:13:11 -07001228 nativeLibraryDir = source.readString();
Narayan Kamath7dba6eb2014-07-16 08:53:30 +01001229 secondaryNativeLibraryDir = source.readString();
Jeff Sharkey84f12942014-07-10 17:48:11 -07001230 nativeLibraryRootDir = source.readString();
1231 nativeLibraryRootRequiresIsa = source.readInt() != 0;
Narayan Kamathff110bd2014-07-04 18:30:45 +01001232 primaryCpuAbi = source.readString();
1233 secondaryCpuAbi = source.readString();
Kenny Rootd1ab0162010-01-21 17:27:14 -08001234 resourceDirs = source.readStringArray();
Robert Craig0f40dc92013-03-25 06:33:03 -04001235 seinfo = source.readString();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001236 sharedLibraryFiles = source.readStringArray();
1237 dataDir = source.readString();
Jeff Sharkey8a372a02016-03-16 16:25:45 -06001238 deviceEncryptedDataDir = deviceProtectedDataDir = source.readString();
1239 credentialEncryptedDataDir = credentialProtectedDataDir = source.readString();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001240 uid = source.readInt();
Todd Kennedy6e2e7f52016-05-02 14:56:45 -07001241 minSdkVersion = source.readInt();
Dianne Hackborna96cbb42009-05-13 15:06:13 -07001242 targetSdkVersion = source.readInt();
Dianne Hackborn8472e612014-01-23 17:57:20 -08001243 versionCode = source.readInt();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001244 enabled = source.readInt() != 0;
Dianne Hackborn0ac30312011-06-17 14:49:23 -07001245 enabledSetting = source.readInt();
Dianne Hackborn54e570f2010-10-04 18:32:32 -07001246 installLocation = source.readInt();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001247 manageSpaceActivityName = source.readString();
Christopher Tate181fafa2009-05-14 11:12:14 -07001248 backupAgentName = source.readString();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001249 descriptionRes = source.readInt();
Adam Powell269248d2011-08-02 10:26:54 -07001250 uiOptions = source.readInt();
Matthew Williams303650c2015-04-17 18:22:51 -07001251 fullBackupContent = source.readInt();
Chad Brubakerc845b2a2016-05-13 14:09:27 -07001252 networkSecurityConfigRes = source.readInt();
Jeff Sharkey9bc89af2017-01-11 11:25:50 -07001253 category = source.readInt();
Todd Kennedy11e45072017-01-25 13:24:21 -08001254 targetSandboxVersion = source.readInt();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001255 }
Mitsuru Oshima8d112672009-04-27 12:01:23 -07001256
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001257 /**
1258 * Retrieve the textual description of the application. This
1259 * will call back on the given PackageManager to load the description from
1260 * the application.
1261 *
1262 * @param pm A PackageManager from which the label can be loaded; usually
1263 * the PackageManager from which you originally retrieved this item.
1264 *
1265 * @return Returns a CharSequence containing the application's description.
1266 * If there is no description, null is returned.
1267 */
1268 public CharSequence loadDescription(PackageManager pm) {
1269 if (descriptionRes != 0) {
Jeff Brown07330792010-03-30 19:57:08 -07001270 CharSequence label = pm.getText(packageName, descriptionRes, this);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001271 if (label != null) {
1272 return label;
1273 }
1274 }
1275 return null;
1276 }
Mitsuru Oshimae5fb3282009-06-09 21:16:08 -07001277
1278 /**
1279 * Disable compatibility mode
1280 *
1281 * @hide
1282 */
1283 public void disableCompatibilityMode() {
Mitsuru Oshima69fff4a2009-07-21 09:51:05 -07001284 flags |= (FLAG_SUPPORTS_LARGE_SCREENS | FLAG_SUPPORTS_NORMAL_SCREENS |
Dianne Hackborn11b822d2009-07-21 20:03:02 -07001285 FLAG_SUPPORTS_SMALL_SCREENS | FLAG_RESIZEABLE_FOR_SCREENS |
Dianne Hackborn14cee9f2010-04-23 17:51:26 -07001286 FLAG_SUPPORTS_SCREEN_DENSITIES | FLAG_SUPPORTS_XLARGE_SCREENS);
Mitsuru Oshimae5fb3282009-06-09 21:16:08 -07001287 }
Jeff Sharkey15447792015-11-05 16:18:51 -08001288
skuhne@google.com7e85eb02017-01-04 13:49:54 -08001289 /**
1290 * Is using compatibility mode for non densty aware legacy applications.
1291 *
1292 * @hide
1293 */
1294 public boolean usesCompatibilityMode() {
1295 return targetSdkVersion < DONUT ||
1296 (flags & (FLAG_SUPPORTS_LARGE_SCREENS | FLAG_SUPPORTS_NORMAL_SCREENS |
1297 FLAG_SUPPORTS_SMALL_SCREENS | FLAG_RESIZEABLE_FOR_SCREENS |
1298 FLAG_SUPPORTS_SCREEN_DENSITIES | FLAG_SUPPORTS_XLARGE_SCREENS)) == 0;
1299 }
1300
Jeff Sharkey15447792015-11-05 16:18:51 -08001301 /** {@hide} */
1302 public void initForUser(int userId) {
1303 uid = UserHandle.getUid(userId, UserHandle.getAppId(uid));
1304
1305 if ("android".equals(packageName)) {
1306 dataDir = Environment.getDataSystemDirectory().getAbsolutePath();
1307 return;
1308 }
1309
Jeff Sharkey8a372a02016-03-16 16:25:45 -06001310 deviceEncryptedDataDir = deviceProtectedDataDir = Environment
Jeff Sharkey8212ae02016-02-10 14:46:43 -07001311 .getDataUserDePackageDirectory(volumeUuid, userId, packageName)
Jeff Sharkey15447792015-11-05 16:18:51 -08001312 .getAbsolutePath();
Jeff Sharkey8a372a02016-03-16 16:25:45 -06001313 credentialEncryptedDataDir = credentialProtectedDataDir = Environment
Jeff Sharkey8212ae02016-02-10 14:46:43 -07001314 .getDataUserCePackageDirectory(volumeUuid, userId, packageName)
Jeff Sharkey15447792015-11-05 16:18:51 -08001315 .getAbsolutePath();
1316
Jeff Sharkey8a372a02016-03-16 16:25:45 -06001317 if ((privateFlags & PRIVATE_FLAG_DEFAULT_TO_DEVICE_PROTECTED_STORAGE) != 0
1318 && PackageManager.APPLY_DEFAULT_TO_DEVICE_PROTECTED_STORAGE) {
1319 dataDir = deviceProtectedDataDir;
Jeff Sharkey15447792015-11-05 16:18:51 -08001320 } else {
Jeff Sharkey8a372a02016-03-16 16:25:45 -06001321 dataDir = credentialProtectedDataDir;
Jeff Sharkey15447792015-11-05 16:18:51 -08001322 }
Todd Kennedy11e45072017-01-25 13:24:21 -08001323 // TODO: modify per-user ephemerality
Jeff Sharkey15447792015-11-05 16:18:51 -08001324 }
1325
Jeff Brown07330792010-03-30 19:57:08 -07001326 /**
1327 * @hide
1328 */
Alexandra Gherghinaa7093142014-07-30 13:43:39 +01001329 @Override
1330 public Drawable loadDefaultIcon(PackageManager pm) {
Jeff Brown07330792010-03-30 19:57:08 -07001331 if ((flags & FLAG_EXTERNAL_STORAGE) != 0
1332 && isPackageUnavailable(pm)) {
1333 return Resources.getSystem().getDrawable(
1334 com.android.internal.R.drawable.sym_app_on_sd_unavailable_icon);
1335 }
1336 return pm.getDefaultActivityIcon();
1337 }
1338
1339 private boolean isPackageUnavailable(PackageManager pm) {
1340 try {
1341 return pm.getPackageInfo(packageName, 0) == null;
1342 } catch (NameNotFoundException ex) {
1343 return true;
1344 }
1345 }
Jeff Sharkeyd7460572014-07-06 20:44:55 -07001346
Jeff Brown07330792010-03-30 19:57:08 -07001347 /**
1348 * @hide
1349 */
Fyodor Kupoloveeea67b2015-02-23 17:14:45 -08001350 public boolean isForwardLocked() {
1351 return (privateFlags & ApplicationInfo.PRIVATE_FLAG_FORWARD_LOCK) != 0;
1352 }
1353
1354 /**
1355 * @hide
1356 */
Jeff Sharkeya73b8fd2016-01-06 17:02:08 -07001357 @TestApi
Fyodor Kupolovb94c1652015-03-03 12:25:30 -08001358 public boolean isSystemApp() {
1359 return (flags & ApplicationInfo.FLAG_SYSTEM) != 0;
1360 }
1361
1362 /**
1363 * @hide
1364 */
Jeff Sharkeya73b8fd2016-01-06 17:02:08 -07001365 @TestApi
Svet Ganovadc1cf42015-06-15 16:36:24 -07001366 public boolean isPrivilegedApp() {
1367 return (privateFlags & ApplicationInfo.PRIVATE_FLAG_PRIVILEGED) != 0;
1368 }
1369
1370 /**
1371 * @hide
1372 */
Fyodor Kupolovb94c1652015-03-03 12:25:30 -08001373 public boolean isUpdatedSystemApp() {
1374 return (flags & ApplicationInfo.FLAG_UPDATED_SYSTEM_APP) != 0;
1375 }
1376
Jeff Sharkeye2d45be2015-04-15 17:14:12 -07001377 /** @hide */
1378 public boolean isInternal() {
1379 return (flags & ApplicationInfo.FLAG_EXTERNAL_STORAGE) == 0;
1380 }
1381
1382 /** @hide */
1383 public boolean isExternalAsec() {
1384 return TextUtils.isEmpty(volumeUuid)
1385 && (flags & ApplicationInfo.FLAG_EXTERNAL_STORAGE) != 0;
1386 }
1387
Jeff Sharkeyf9fc6d62015-11-08 16:46:05 -08001388 /** @hide */
Jeff Sharkey8a372a02016-03-16 16:25:45 -06001389 public boolean isDefaultToDeviceProtectedStorage() {
1390 return (privateFlags
1391 & ApplicationInfo.PRIVATE_FLAG_DEFAULT_TO_DEVICE_PROTECTED_STORAGE) != 0;
Jeff Sharkeye4697132016-02-06 19:46:15 -07001392 }
1393
1394 /** @hide */
Jeff Sharkey8a372a02016-03-16 16:25:45 -06001395 public boolean isDirectBootAware() {
1396 return (privateFlags & ApplicationInfo.PRIVATE_FLAG_DIRECT_BOOT_AWARE) != 0;
Jeff Sharkeyf9fc6d62015-11-08 16:46:05 -08001397 }
1398
Jeff Sharkey8924e872015-11-30 12:52:10 -07001399 /** @hide */
Jeff Sharkey8a372a02016-03-16 16:25:45 -06001400 public boolean isPartiallyDirectBootAware() {
1401 return (privateFlags & ApplicationInfo.PRIVATE_FLAG_PARTIALLY_DIRECT_BOOT_AWARE) != 0;
Jeff Sharkey8924e872015-11-30 12:52:10 -07001402 }
1403
Fyodor Kupolovb94c1652015-03-03 12:25:30 -08001404 /**
1405 * @hide
1406 */
Svet Ganov2acf0632015-11-24 19:10:59 -08001407 public boolean isEphemeralApp() {
1408 return (privateFlags & ApplicationInfo.PRIVATE_FLAG_EPHEMERAL) != 0;
1409 }
1410
1411 /**
1412 * @hide
1413 */
Fyodor Kupolovbdbc9692015-12-14 13:11:13 -08001414 public boolean isRequiredForSystemUser() {
1415 return (privateFlags & ApplicationInfo.PRIVATE_FLAG_REQUIRED_FOR_SYSTEM_USER) != 0;
1416 }
1417
1418 /**
Adam Lesinski4e862812016-11-21 16:02:24 -08001419 * Returns true if the app has declared in its manifest that it wants its split APKs to be
1420 * loaded into isolated Contexts, with their own ClassLoaders and Resources objects.
1421 * @hide
1422 */
1423 public boolean requestsIsolatedSplitLoading() {
1424 return (privateFlags & ApplicationInfo.PRIVATE_FLAG_ISOLATED_SPLIT_LOADING) != 0;
1425 }
1426
1427 /**
Fyodor Kupolovbdbc9692015-12-14 13:11:13 -08001428 * @hide
1429 */
Svet Ganov67882122016-12-11 16:36:34 -08001430 public boolean isStaticSharedLibrary() {
1431 return (privateFlags & ApplicationInfo.PRIVATE_FLAG_STATIC_SHARED_LIBRARY) != 0;
1432 }
1433
1434 /**
1435 * @hide
1436 */
Jeff Brown07330792010-03-30 19:57:08 -07001437 @Override protected ApplicationInfo getApplicationInfo() {
1438 return this;
1439 }
Jeff Sharkeyd7460572014-07-06 20:44:55 -07001440
1441 /** {@hide} */ public void setCodePath(String codePath) { scanSourceDir = codePath; }
1442 /** {@hide} */ public void setBaseCodePath(String baseCodePath) { sourceDir = baseCodePath; }
1443 /** {@hide} */ public void setSplitCodePaths(String[] splitCodePaths) { splitSourceDirs = splitCodePaths; }
1444 /** {@hide} */ public void setResourcePath(String resourcePath) { scanPublicSourceDir = resourcePath; }
1445 /** {@hide} */ public void setBaseResourcePath(String baseResourcePath) { publicSourceDir = baseResourcePath; }
1446 /** {@hide} */ public void setSplitResourcePaths(String[] splitResourcePaths) { splitPublicSourceDirs = splitResourcePaths; }
1447
1448 /** {@hide} */ public String getCodePath() { return scanSourceDir; }
1449 /** {@hide} */ public String getBaseCodePath() { return sourceDir; }
1450 /** {@hide} */ public String[] getSplitCodePaths() { return splitSourceDirs; }
1451 /** {@hide} */ public String getResourcePath() { return scanPublicSourceDir; }
1452 /** {@hide} */ public String getBaseResourcePath() { return publicSourceDir; }
Jeff Sharkeya3a43b02016-11-15 17:54:23 -07001453 /** {@hide} */ public String[] getSplitResourcePaths() { return splitPublicSourceDirs; }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001454}