blob: 9fb6f4dfa90681ac2ed30c2998773401760ba943 [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 Brown07330792010-03-30 19:57:08 -070019import android.content.pm.PackageManager.NameNotFoundException;
20import android.content.res.Resources;
21import android.graphics.drawable.Drawable;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080022import android.os.Parcel;
23import android.os.Parcelable;
Jeff Sharkeye2d45be2015-04-15 17:14:12 -070024import android.text.TextUtils;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080025import android.util.Printer;
26
Jeff Sharkey8a4c9722014-06-16 13:48:42 -070027import com.android.internal.util.ArrayUtils;
28
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080029import java.text.Collator;
Jeff Sharkey8a4c9722014-06-16 13:48:42 -070030import java.util.Arrays;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080031import java.util.Comparator;
Jeff Sharkey8a4c9722014-06-16 13:48:42 -070032import java.util.Objects;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080033
34/**
35 * Information you can retrieve about a particular application. This
36 * corresponds to information collected from the AndroidManifest.xml's
37 * <application> tag.
38 */
39public class ApplicationInfo extends PackageItemInfo implements Parcelable {
40
41 /**
42 * Default task affinity of all activities in this application. See
43 * {@link ActivityInfo#taskAffinity} for more information. This comes
44 * from the "taskAffinity" attribute.
45 */
46 public String taskAffinity;
47
48 /**
49 * Optional name of a permission required to be able to access this
50 * application's components. From the "permission" attribute.
51 */
52 public String permission;
53
54 /**
55 * The name of the process this application should run in. From the
56 * "process" attribute or, if not set, the same as
57 * <var>packageName</var>.
58 */
59 public String processName;
60
61 /**
62 * Class implementing the Application object. From the "class"
63 * attribute.
64 */
65 public String className;
66
67 /**
68 * A style resource identifier (in the package's resources) of the
69 * description of an application. From the "description" attribute
70 * or, if not set, 0.
71 */
72 public int descriptionRes;
73
74 /**
75 * A style resource identifier (in the package's resources) of the
76 * default visual theme of the application. From the "theme" attribute
77 * or, if not set, 0.
78 */
79 public int theme;
80
81 /**
82 * Class implementing the Application's manage space
83 * functionality. From the "manageSpaceActivity"
84 * attribute. This is an optional attribute and will be null if
Christopher Tate181fafa2009-05-14 11:12:14 -070085 * applications don't specify it in their manifest
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080086 */
87 public String manageSpaceActivityName;
88
89 /**
Christopher Tate181fafa2009-05-14 11:12:14 -070090 * Class implementing the Application's backup functionality. From
91 * the "backupAgent" attribute. This is an optional attribute and
92 * will be null if the application does not specify it in its manifest.
93 *
94 * <p>If android:allowBackup is set to false, this attribute is ignored.
Christopher Tate181fafa2009-05-14 11:12:14 -070095 */
96 public String backupAgentName;
Christopher Tate4a627c72011-04-01 14:43:32 -070097
98 /**
Matthew Williams303650c2015-04-17 18:22:51 -070099 * An optional attribute that indicates the app supports automatic backup of app data.
100 * <p>0 is the default and means the app's entire data folder + managed external storage will
101 * be backed up;
102 * Any negative value indicates the app does not support full-data backup, though it may still
103 * want to participate via the traditional key/value backup API;
104 * A positive number specifies an xml resource in which the application has defined its backup
105 * include/exclude criteria.
106 * <p>If android:allowBackup is set to false, this attribute is ignored.
107 *
108 * @see {@link android.content.Context#getNoBackupFilesDir}
109 * @see {@link #FLAG_ALLOW_BACKUP}
Christopher Tate98fa6562015-05-14 13:20:10 -0700110 *
111 * @hide
Matthew Williams303650c2015-04-17 18:22:51 -0700112 */
113 public int fullBackupContent = 0;
114
115 /**
Adam Powell269248d2011-08-02 10:26:54 -0700116 * The default extra UI options for activities in this application.
117 * Set from the {@link android.R.attr#uiOptions} attribute in the
118 * activity's manifest.
119 */
120 public int uiOptions = 0;
121
122 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800123 * Value for {@link #flags}: if set, this application is installed in the
124 * device's system image.
125 */
126 public static final int FLAG_SYSTEM = 1<<0;
127
128 /**
129 * Value for {@link #flags}: set to true if this application would like to
130 * allow debugging of its
131 * code, even when installed on a non-development system. Comes
132 * from {@link android.R.styleable#AndroidManifestApplication_debuggable
133 * android:debuggable} of the &lt;application&gt; tag.
134 */
135 public static final int FLAG_DEBUGGABLE = 1<<1;
136
137 /**
138 * Value for {@link #flags}: set to true if this application has code
139 * associated with it. Comes
140 * from {@link android.R.styleable#AndroidManifestApplication_hasCode
141 * android:hasCode} of the &lt;application&gt; tag.
142 */
143 public static final int FLAG_HAS_CODE = 1<<2;
144
145 /**
146 * Value for {@link #flags}: set to true if this application is persistent.
147 * Comes from {@link android.R.styleable#AndroidManifestApplication_persistent
148 * android:persistent} of the &lt;application&gt; tag.
149 */
150 public static final int FLAG_PERSISTENT = 1<<3;
151
152 /**
Christopher Tate181fafa2009-05-14 11:12:14 -0700153 * Value for {@link #flags}: set to true if this application holds the
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800154 * {@link android.Manifest.permission#FACTORY_TEST} permission and the
155 * device is running in factory test mode.
156 */
157 public static final int FLAG_FACTORY_TEST = 1<<4;
158
159 /**
160 * Value for {@link #flags}: default value for the corresponding ActivityInfo flag.
161 * Comes from {@link android.R.styleable#AndroidManifestApplication_allowTaskReparenting
162 * android:allowTaskReparenting} of the &lt;application&gt; tag.
163 */
164 public static final int FLAG_ALLOW_TASK_REPARENTING = 1<<5;
165
166 /**
167 * Value for {@link #flags}: default value for the corresponding ActivityInfo flag.
168 * Comes from {@link android.R.styleable#AndroidManifestApplication_allowClearUserData
169 * android:allowClearUserData} of the &lt;application&gt; tag.
170 */
171 public static final int FLAG_ALLOW_CLEAR_USER_DATA = 1<<6;
172
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800173 /**
Dianne Hackborn851a5412009-05-08 12:06:44 -0700174 * Value for {@link #flags}: this is set if this application has been
175 * install as an update to a built-in system application.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800176 */
177 public static final int FLAG_UPDATED_SYSTEM_APP = 1<<7;
Dianne Hackborn851a5412009-05-08 12:06:44 -0700178
179 /**
Dianne Hackborn7f205432009-07-28 00:13:47 -0700180 * Value for {@link #flags}: this is set of the application has specified
181 * {@link android.R.styleable#AndroidManifestApplication_testOnly
182 * android:testOnly} to be true.
Dianne Hackborn851a5412009-05-08 12:06:44 -0700183 */
Dianne Hackborna96cbb42009-05-13 15:06:13 -0700184 public static final int FLAG_TEST_ONLY = 1<<8;
Dianne Hackbornade3eca2009-05-11 18:54:45 -0700185
186 /**
Dianne Hackborn5c1e00b2009-06-18 17:10:57 -0700187 * Value for {@link #flags}: true when the application's window can be
Dianne Hackborn723738c2009-06-25 19:48:04 -0700188 * reduced in size for smaller screens. Corresponds to
189 * {@link android.R.styleable#AndroidManifestSupportsScreens_smallScreens
190 * android:smallScreens}.
Dianne Hackborn5c1e00b2009-06-18 17:10:57 -0700191 */
Dianne Hackborn723738c2009-06-25 19:48:04 -0700192 public static final int FLAG_SUPPORTS_SMALL_SCREENS = 1<<9;
193
194 /**
195 * Value for {@link #flags}: true when the application's window can be
196 * displayed on normal screens. Corresponds to
197 * {@link android.R.styleable#AndroidManifestSupportsScreens_normalScreens
198 * android:normalScreens}.
199 */
200 public static final int FLAG_SUPPORTS_NORMAL_SCREENS = 1<<10;
201
202 /**
203 * Value for {@link #flags}: true when the application's window can be
204 * increased in size for larger screens. Corresponds to
205 * {@link android.R.styleable#AndroidManifestSupportsScreens_largeScreens
Dianne Hackborn22ec9ab2010-04-29 17:56:03 -0700206 * android:largeScreens}.
Dianne Hackborn723738c2009-06-25 19:48:04 -0700207 */
208 public static final int FLAG_SUPPORTS_LARGE_SCREENS = 1<<11;
Dianne Hackborn5c1e00b2009-06-18 17:10:57 -0700209
210 /**
Dianne Hackbornc4db95c2009-07-21 17:46:02 -0700211 * Value for {@link #flags}: true when the application knows how to adjust
212 * its UI for different screen sizes. Corresponds to
213 * {@link android.R.styleable#AndroidManifestSupportsScreens_resizeable
214 * android:resizeable}.
215 */
216 public static final int FLAG_RESIZEABLE_FOR_SCREENS = 1<<12;
217
218 /**
Dianne Hackborn11b822d2009-07-21 20:03:02 -0700219 * Value for {@link #flags}: true when the application knows how to
220 * accomodate different screen densities. Corresponds to
221 * {@link android.R.styleable#AndroidManifestSupportsScreens_anyDensity
222 * android:anyDensity}.
223 */
224 public static final int FLAG_SUPPORTS_SCREEN_DENSITIES = 1<<13;
225
226 /**
Ben Cheng23085b72010-02-08 16:06:32 -0800227 * Value for {@link #flags}: set to true if this application would like to
228 * request the VM to operate under the safe mode. Comes from
Ben Chengef3f5dd2010-03-29 15:47:26 -0700229 * {@link android.R.styleable#AndroidManifestApplication_vmSafeMode
230 * android:vmSafeMode} of the &lt;application&gt; tag.
Ben Cheng23085b72010-02-08 16:06:32 -0800231 */
232 public static final int FLAG_VM_SAFE_MODE = 1<<14;
233
234 /**
Christopher Tate3de55bc2010-03-12 17:28:08 -0800235 * Value for {@link #flags}: set to <code>false</code> if the application does not wish
236 * to permit any OS-driven backups of its data; <code>true</code> otherwise.
Christopher Tate181fafa2009-05-14 11:12:14 -0700237 *
Christopher Tate3de55bc2010-03-12 17:28:08 -0800238 * <p>Comes from the
239 * {@link android.R.styleable#AndroidManifestApplication_allowBackup android:allowBackup}
240 * attribute of the &lt;application&gt; tag.
Christopher Tate181fafa2009-05-14 11:12:14 -0700241 */
Ben Cheng23085b72010-02-08 16:06:32 -0800242 public static final int FLAG_ALLOW_BACKUP = 1<<15;
Christopher Tate5e1ab332009-09-01 20:32:49 -0700243
244 /**
Christopher Tate3de55bc2010-03-12 17:28:08 -0800245 * Value for {@link #flags}: set to <code>false</code> if the application must be kept
246 * in memory following a full-system restore operation; <code>true</code> otherwise.
247 * Ordinarily, during a full system restore operation each application is shut down
248 * following execution of its agent's onRestore() method. Setting this attribute to
249 * <code>false</code> prevents this. Most applications will not need to set this attribute.
Christopher Tate5e1ab332009-09-01 20:32:49 -0700250 *
Christopher Tate3de55bc2010-03-12 17:28:08 -0800251 * <p>If
252 * {@link android.R.styleable#AndroidManifestApplication_allowBackup android:allowBackup}
253 * is set to <code>false</code> or no
254 * {@link android.R.styleable#AndroidManifestApplication_backupAgent android:backupAgent}
Christopher Tate5e1ab332009-09-01 20:32:49 -0700255 * is specified, this flag will be ignored.
256 *
Christopher Tate3de55bc2010-03-12 17:28:08 -0800257 * <p>Comes from the
258 * {@link android.R.styleable#AndroidManifestApplication_killAfterRestore android:killAfterRestore}
259 * attribute of the &lt;application&gt; tag.
Christopher Tate5e1ab332009-09-01 20:32:49 -0700260 */
Ben Cheng23085b72010-02-08 16:06:32 -0800261 public static final int FLAG_KILL_AFTER_RESTORE = 1<<16;
Christopher Tate5e1ab332009-09-01 20:32:49 -0700262
263 /**
Christopher Tate3de55bc2010-03-12 17:28:08 -0800264 * Value for {@link #flags}: Set to <code>true</code> if the application's backup
265 * agent claims to be able to handle restore data even "from the future,"
266 * i.e. from versions of the application with a versionCode greater than
267 * the one currently installed on the device. <i>Use with caution!</i> By default
268 * this attribute is <code>false</code> and the Backup Manager will ensure that data
269 * from "future" versions of the application are never supplied during a restore operation.
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_restoreAnyVersion android:restoreAnyVersion}
279 * attribute of the &lt;application&gt; tag.
Christopher Tate5e1ab332009-09-01 20:32:49 -0700280 */
Christopher Tate3de55bc2010-03-12 17:28:08 -0800281 public static final int FLAG_RESTORE_ANY_VERSION = 1<<17;
Christopher Tate5e1ab332009-09-01 20:32:49 -0700282
Christopher Tate181fafa2009-05-14 11:12:14 -0700283 /**
Dianne Hackborn3202d382010-04-26 17:51:34 -0700284 * Value for {@link #flags}: Set to true if the application is
285 * currently installed on external/removable/unprotected storage. Such
286 * applications may not be available if their storage is not currently
287 * mounted. When the storage it is on is not available, it will look like
288 * the application has been uninstalled (its .apk is no longer available)
289 * but its persistent data is not removed.
Suchi Amalapurapuaf8e9f42010-01-12 10:17:28 -0800290 */
Dianne Hackborn94c567e2010-04-26 18:13:10 -0700291 public static final int FLAG_EXTERNAL_STORAGE = 1<<18;
Suchi Amalapurapuaf8e9f42010-01-12 10:17:28 -0800292
293 /**
Dianne Hackborn14cee9f2010-04-23 17:51:26 -0700294 * Value for {@link #flags}: true when the application's window can be
295 * increased in size for extra large screens. Corresponds to
296 * {@link android.R.styleable#AndroidManifestSupportsScreens_xlargeScreens
Dianne Hackborn22ec9ab2010-04-29 17:56:03 -0700297 * android:xlargeScreens}.
Dianne Hackborn14cee9f2010-04-23 17:51:26 -0700298 */
299 public static final int FLAG_SUPPORTS_XLARGE_SCREENS = 1<<19;
300
301 /**
Dianne Hackborn3b81bc12011-01-15 11:50:52 -0800302 * Value for {@link #flags}: true when the application has requested a
303 * large heap for its processes. Corresponds to
304 * {@link android.R.styleable#AndroidManifestApplication_largeHeap
305 * android:largeHeap}.
Jason parksa3cdaa52011-01-13 14:15:43 -0600306 */
Dianne Hackborn3b81bc12011-01-15 11:50:52 -0800307 public static final int FLAG_LARGE_HEAP = 1<<20;
Jason parksa3cdaa52011-01-13 14:15:43 -0600308
309 /**
Dianne Hackborne7f97212011-02-24 14:40:20 -0800310 * Value for {@link #flags}: true if this application's package is in
311 * the stopped state.
312 */
313 public static final int FLAG_STOPPED = 1<<21;
314
315 /**
Fabrice Di Meglio59dfce82012-04-02 16:17:20 -0700316 * Value for {@link #flags}: true when the application is willing to support
317 * RTL (right to left). All activities will inherit this value.
318 *
319 * Set from the {@link android.R.attr#supportsRtl} attribute in the
320 * activity's manifest.
321 *
322 * Default value is false (no support for RTL).
323 */
324 public static final int FLAG_SUPPORTS_RTL = 1<<22;
325
326 /**
Dianne Hackborn7767eac2012-08-23 18:25:40 -0700327 * Value for {@link #flags}: true if the application is currently
328 * installed for the calling user.
329 */
330 public static final int FLAG_INSTALLED = 1<<23;
331
332 /**
Dianne Hackborn5e03e2c2012-09-06 14:21:19 -0700333 * Value for {@link #flags}: true if the application only has its
334 * data installed; the application package itself does not currently
335 * exist on the device.
336 */
337 public static final int FLAG_IS_DATA_ONLY = 1<<24;
338
339 /**
Jose Lima12d0b4c2014-03-14 16:55:12 -0700340 * Value for {@link #flags}: true if the application was declared to be a game, or
341 * false if it is a non-game application.
342 */
343 public static final int FLAG_IS_GAME = 1<<25;
344
345 /**
Christopher Tated1de2562014-06-17 17:12:35 -0700346 * Value for {@link #flags}: {@code true} if the application asks that only
347 * full-data streaming backups of its data be performed even though it defines
348 * a {@link android.app.backup.BackupAgent BackupAgent}, which normally
349 * indicates that the app will manage its backed-up data via incremental
350 * key/value updates.
351 */
352 public static final int FLAG_FULL_BACKUP_ONLY = 1<<26;
353
354 /**
Alex Klyubin01a959d2015-03-18 10:05:45 -0700355 * Value for {@link #flags}: {@code true} if the application may use cleartext network traffic
356 * (e.g., HTTP rather than HTTPS; WebSockets rather than WebSockets Secure; XMPP, IMAP, STMP
357 * without STARTTLS or TLS). If {@code false}, the app declares that it does not intend to use
358 * cleartext network traffic, in which case platform components (e.g., HTTP stacks,
Alex Klyubinfbf45992015-04-21 13:44:29 -0700359 * {@code DownloadManager}, {@code MediaPlayer}) will refuse app's requests to use cleartext
360 * traffic. Third-party libraries are encouraged to honor this flag as well.
361 *
362 * <p>NOTE: {@code WebView} does not honor this flag.
363 *
364 * <p>This flag comes from
365 * {@link android.R.styleable#AndroidManifestApplication_usesCleartextTraffic
366 * android:usesCleartextTraffic} of the &lt;application&gt; tag.
Alex Klyubin01a959d2015-03-18 10:05:45 -0700367 */
368 public static final int FLAG_USES_CLEARTEXT_TRAFFIC = 1<<27;
369
370 /**
Dmitriy Ivanovff193d62014-09-30 15:10:48 -0700371 * When set installer extracts native libs from .apk files.
372 */
373 public static final int FLAG_EXTRACT_NATIVE_LIBS = 1<<28;
374
375 /**
Alan Viveretted70b9e72015-05-27 14:29:20 -0700376 * Value for {@link #flags}: {@code true} when the application's rendering
377 * should be hardware accelerated.
378 */
379 public static final int FLAG_HARDWARE_ACCELERATED = 1<<29;
380
381 /**
Narayan Kamath589a1bc2014-07-03 14:43:26 +0100382 * Value for {@link #flags}: true if code from this application will need to be
383 * loaded into other applications' processes. On devices that support multiple
384 * instruction sets, this implies the code might be loaded into a process that's
385 * using any of the devices supported instruction sets.
386 *
387 * <p> The system might treat such applications specially, for eg., by
388 * extracting the application's native libraries for all supported instruction
389 * sets or by compiling the application's dex code for all supported instruction
390 * sets.
391 */
392 public static final int FLAG_MULTIARCH = 1 << 31;
Amith Yamasani655d0e22013-06-12 14:19:10 -0700393
394 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800395 * Flags associated with the application. Any combination of
396 * {@link #FLAG_SYSTEM}, {@link #FLAG_DEBUGGABLE}, {@link #FLAG_HAS_CODE},
397 * {@link #FLAG_PERSISTENT}, {@link #FLAG_FACTORY_TEST}, and
398 * {@link #FLAG_ALLOW_TASK_REPARENTING}
Dianne Hackborn851a5412009-05-08 12:06:44 -0700399 * {@link #FLAG_ALLOW_CLEAR_USER_DATA}, {@link #FLAG_UPDATED_SYSTEM_APP},
Dianne Hackborn723738c2009-06-25 19:48:04 -0700400 * {@link #FLAG_TEST_ONLY}, {@link #FLAG_SUPPORTS_SMALL_SCREENS},
401 * {@link #FLAG_SUPPORTS_NORMAL_SCREENS},
Dianne Hackborn14cee9f2010-04-23 17:51:26 -0700402 * {@link #FLAG_SUPPORTS_LARGE_SCREENS}, {@link #FLAG_SUPPORTS_XLARGE_SCREENS},
403 * {@link #FLAG_RESIZEABLE_FOR_SCREENS},
Dianne Hackborn7767eac2012-08-23 18:25:40 -0700404 * {@link #FLAG_SUPPORTS_SCREEN_DENSITIES}, {@link #FLAG_VM_SAFE_MODE},
Alex Klyubinb9f8a522015-02-03 11:12:59 -0800405 * {@link #FLAG_ALLOW_BACKUP}, {@link #FLAG_KILL_AFTER_RESTORE},
406 * {@link #FLAG_RESTORE_ANY_VERSION}, {@link #FLAG_EXTERNAL_STORAGE},
407 * {@link #FLAG_LARGE_HEAP}, {@link #FLAG_STOPPED},
408 * {@link #FLAG_SUPPORTS_RTL}, {@link #FLAG_INSTALLED},
409 * {@link #FLAG_IS_DATA_ONLY}, {@link #FLAG_IS_GAME},
Alex Klyubin7cb000f2015-03-26 11:00:04 -0700410 * {@link #FLAG_FULL_BACKUP_ONLY}, {@link #FLAG_USES_CLEARTEXT_TRAFFIC},
411 * {@link #FLAG_MULTIARCH}.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800412 */
413 public int flags = 0;
Amith Yamasani655d0e22013-06-12 14:19:10 -0700414
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800415 /**
Alex Klyubinb9f8a522015-02-03 11:12:59 -0800416 * Value for {@link #privateFlags}: true if the application is hidden via restrictions and for
417 * most purposes is considered as not installed.
418 * {@hide}
419 */
420 public static final int PRIVATE_FLAG_HIDDEN = 1<<0;
421
422 /**
423 * Value for {@link #privateFlags}: set to <code>true</code> if the application
424 * has reported that it is heavy-weight, and thus can not participate in
425 * the normal application lifecycle.
426 *
427 * <p>Comes from the
428 * android.R.styleable#AndroidManifestApplication_cantSaveState
429 * attribute of the &lt;application&gt; tag.
430 *
431 * {@hide}
432 */
433 public static final int PRIVATE_FLAG_CANT_SAVE_STATE = 1<<1;
434
435 /**
436 * Value for {@link #privateFlags}: Set to true if the application has been
437 * installed using the forward lock option.
438 *
439 * NOTE: DO NOT CHANGE THIS VALUE! It is saved in packages.xml.
440 *
441 * {@hide}
442 */
443 public static final int PRIVATE_FLAG_FORWARD_LOCK = 1<<2;
444
445 /**
446 * Value for {@link #privateFlags}: set to {@code true} if the application
447 * is permitted to hold privileged permissions.
448 *
449 * {@hide}
450 */
451 public static final int PRIVATE_FLAG_PRIVILEGED = 1<<3;
452
453 /**
Fabrice Di Megliod3d8a322015-04-01 15:58:47 -0700454 * Value for {@link #flags}: {@code true} if the application has any IntentFiler with some
455 * data URI using HTTP or HTTPS with an associated VIEW action.
456 *
457 * {@hide}
458 */
459 public static final int PRIVATE_FLAG_HAS_DOMAIN_URLS = 1<<4;
460
461 /**
Alex Klyubinb9f8a522015-02-03 11:12:59 -0800462 * Private/hidden flags. See {@code PRIVATE_FLAG_...} constants.
463 * {@hide}
464 */
465 public int privateFlags;
466
467 /**
Dianne Hackborndf6e9802011-05-26 14:20:23 -0700468 * The required smallest screen width the application can run on. If 0,
469 * nothing has been specified. Comes from
470 * {@link android.R.styleable#AndroidManifestSupportsScreens_requiresSmallestWidthDp
471 * android:requiresSmallestWidthDp} attribute of the &lt;supports-screens&gt; tag.
472 */
473 public int requiresSmallestWidthDp = 0;
474
475 /**
476 * The maximum smallest screen width the application is designed for. If 0,
477 * nothing has been specified. Comes from
478 * {@link android.R.styleable#AndroidManifestSupportsScreens_compatibleWidthLimitDp
479 * android:compatibleWidthLimitDp} attribute of the &lt;supports-screens&gt; tag.
480 */
481 public int compatibleWidthLimitDp = 0;
482
483 /**
Dianne Hackborn2762ff32011-06-01 21:27:05 -0700484 * The maximum smallest screen width the application will work on. If 0,
485 * nothing has been specified. Comes from
486 * {@link android.R.styleable#AndroidManifestSupportsScreens_largestWidthLimitDp
487 * android:largestWidthLimitDp} attribute of the &lt;supports-screens&gt; tag.
488 */
489 public int largestWidthLimitDp = 0;
490
Jeff Sharkeyd7460572014-07-06 20:44:55 -0700491 /** {@hide} */
Jeff Sharkeyb2b9ab82015-04-05 21:10:42 -0700492 public String volumeUuid;
493 /** {@hide} */
Jeff Sharkeyd7460572014-07-06 20:44:55 -0700494 public String scanSourceDir;
495 /** {@hide} */
496 public String scanPublicSourceDir;
497
Dianne Hackborn2762ff32011-06-01 21:27:05 -0700498 /**
Jeff Sharkey8a4c9722014-06-16 13:48:42 -0700499 * Full path to the base APK for this application.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800500 */
501 public String sourceDir;
502
503 /**
Jeff Sharkey8a4c9722014-06-16 13:48:42 -0700504 * Full path to the publicly available parts of {@link #sourceDir},
505 * including resources and manifest. This may be different from
506 * {@link #sourceDir} if an application is forward locked.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800507 */
508 public String publicSourceDir;
Jeff Sharkey8a4c9722014-06-16 13:48:42 -0700509
510 /**
511 * Full paths to zero or more split APKs that, when combined with the base
512 * APK defined in {@link #sourceDir}, form a complete application.
513 */
514 public String[] splitSourceDirs;
515
516 /**
517 * Full path to the publicly available parts of {@link #splitSourceDirs},
518 * including resources and manifest. This may be different from
519 * {@link #splitSourceDirs} if an application is forward locked.
520 */
521 public String[] splitPublicSourceDirs;
522
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800523 /**
Kenny Rootd1ab0162010-01-21 17:27:14 -0800524 * Full paths to the locations of extra resource packages this application
525 * uses. This field is only used if there are extra resource packages,
526 * otherwise it is null.
Kenny Rootace5a3f2010-02-05 12:59:28 -0800527 *
528 * {@hide}
Kenny Rootd1ab0162010-01-21 17:27:14 -0800529 */
530 public String[] resourceDirs;
531
532 /**
Robert Craig0f40dc92013-03-25 06:33:03 -0400533 * String retrieved from the seinfo tag found in selinux policy. This value
534 * is useful in setting an SELinux security context on the process as well
535 * as its data directory.
536 *
537 * {@hide}
538 */
539 public String seinfo;
540
541 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800542 * Paths to all shared libraries this application is linked against. This
543 * field is only set if the {@link PackageManager#GET_SHARED_LIBRARY_FILES
544 * PackageManager.GET_SHARED_LIBRARY_FILES} flag was used when retrieving
545 * the structure.
546 */
547 public String[] sharedLibraryFiles;
548
549 /**
550 * Full path to a directory assigned to the package for its persistent
551 * data.
552 */
553 public String dataDir;
Kenny Root85387d72010-08-26 10:13:11 -0700554
555 /**
556 * Full path to the directory where native JNI libraries are stored.
Kenny Root85387d72010-08-26 10:13:11 -0700557 */
558 public String nativeLibraryDir;
559
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800560 /**
Narayan Kamath7dba6eb2014-07-16 08:53:30 +0100561 * Full path where unpacked native libraries for {@link #secondaryCpuAbi}
562 * are stored, if present.
563 *
564 * The main reason this exists is for bundled multi-arch apps, where
565 * it's not trivial to calculate the location of libs for the secondary abi
566 * given the location of the primary.
567 *
568 * TODO: Change the layout of bundled installs so that we can use
569 * nativeLibraryRootDir & nativeLibraryRootRequiresIsa there as well.
570 * (e.g {@code [ "/system/app-lib/Foo/arm", "/system/app-lib/Foo/arm64" ]}
571 * instead of {@code [ "/system/lib/Foo", "/system/lib64/Foo" ]}.
572 *
573 * @hide
574 */
575 public String secondaryNativeLibraryDir;
576
577 /**
Jeff Sharkey84f12942014-07-10 17:48:11 -0700578 * The root path where unpacked native libraries are stored.
579 * <p>
580 * When {@link #nativeLibraryRootRequiresIsa} is set, the libraries are
581 * placed in ISA-specific subdirectories under this path, otherwise the
582 * libraries are placed directly at this path.
Narayan Kamathff110bd2014-07-04 18:30:45 +0100583 *
Jeff Sharkey84f12942014-07-10 17:48:11 -0700584 * @hide
Narayan Kamathff110bd2014-07-04 18:30:45 +0100585 */
Jeff Sharkey84f12942014-07-10 17:48:11 -0700586 public String nativeLibraryRootDir;
587
588 /**
589 * Flag indicating that ISA must be appended to
590 * {@link #nativeLibraryRootDir} to be useful.
591 *
592 * @hide
593 */
594 public boolean nativeLibraryRootRequiresIsa;
Narayan Kamathff110bd2014-07-04 18:30:45 +0100595
596 /**
597 * The primary ABI that this application requires, This is inferred from the ABIs
Ramin Zaghiff0c4702014-04-01 15:02:29 +0100598 * of the native JNI libraries the application bundles. Will be {@code null}
599 * if this application does not require any particular ABI.
600 *
Narayan Kamathff110bd2014-07-04 18:30:45 +0100601 * If non-null, the application will always be launched with this ABI.
602 *
Ramin Zaghiff0c4702014-04-01 15:02:29 +0100603 * {@hide}
604 */
Narayan Kamathff110bd2014-07-04 18:30:45 +0100605 public String primaryCpuAbi;
606
607 /**
608 * The secondary ABI for this application. Might be non-null for multi-arch
609 * installs. The application itself never uses this ABI, but other applications that
610 * use its code might.
611 *
612 * {@hide}
613 */
614 public String secondaryCpuAbi;
615
616 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800617 * The kernel user-ID that has been assigned to this application;
618 * currently this is not a unique ID (multiple applications can have
619 * the same uid).
620 */
621 public int uid;
622
Mitsuru Oshima8d112672009-04-27 12:01:23 -0700623 /**
Dianne Hackborn3b3e1452009-09-24 19:22:12 -0700624 * The minimum SDK version this application targets. It may run on earlier
Dianne Hackborna96cbb42009-05-13 15:06:13 -0700625 * versions, but it knows how to work with any new behavior added at this
626 * version. Will be {@link android.os.Build.VERSION_CODES#CUR_DEVELOPMENT}
627 * if this is a development build and the app is targeting that. You should
628 * compare that this number is >= the SDK version number at which your
629 * behavior was introduced.
630 */
631 public int targetSdkVersion;
Dianne Hackborn8472e612014-01-23 17:57:20 -0800632
633 /**
634 * The app's declared version code.
635 * @hide
636 */
637 public int versionCode;
638
Dianne Hackborna96cbb42009-05-13 15:06:13 -0700639 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800640 * When false, indicates that all components within this application are
641 * considered disabled, regardless of their individually set enabled status.
642 */
643 public boolean enabled = true;
644
Dianne Hackborn54e570f2010-10-04 18:32:32 -0700645 /**
Dianne Hackborn0ac30312011-06-17 14:49:23 -0700646 * For convenient access to the current enabled setting of this app.
647 * @hide
648 */
649 public int enabledSetting = PackageManager.COMPONENT_ENABLED_STATE_DEFAULT;
650
651 /**
Dianne Hackborn54e570f2010-10-04 18:32:32 -0700652 * For convenient access to package's install location.
653 * @hide
654 */
655 public int installLocation = PackageInfo.INSTALL_LOCATION_UNSPECIFIED;
Jose Lima12d0b4c2014-03-14 16:55:12 -0700656
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800657 public void dump(Printer pw, String prefix) {
658 super.dumpFront(pw, prefix);
Dianne Hackborn12527f92009-11-11 17:39:50 -0800659 if (className != null) {
660 pw.println(prefix + "className=" + className);
661 }
662 if (permission != null) {
663 pw.println(prefix + "permission=" + permission);
664 }
Dianne Hackborn39792d22010-08-19 18:01:52 -0700665 pw.println(prefix + "processName=" + processName);
666 pw.println(prefix + "taskAffinity=" + taskAffinity);
667 pw.println(prefix + "uid=" + uid + " flags=0x" + Integer.toHexString(flags)
Alex Klyubinb9f8a522015-02-03 11:12:59 -0800668 + " privateFlags=0x" + Integer.toHexString(privateFlags)
Dianne Hackborn39792d22010-08-19 18:01:52 -0700669 + " theme=0x" + Integer.toHexString(theme));
Dianne Hackborndf6e9802011-05-26 14:20:23 -0700670 pw.println(prefix + "requiresSmallestWidthDp=" + requiresSmallestWidthDp
Dianne Hackborn2762ff32011-06-01 21:27:05 -0700671 + " compatibleWidthLimitDp=" + compatibleWidthLimitDp
672 + " largestWidthLimitDp=" + largestWidthLimitDp);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800673 pw.println(prefix + "sourceDir=" + sourceDir);
Jeff Sharkey8a4c9722014-06-16 13:48:42 -0700674 if (!Objects.equals(sourceDir, publicSourceDir)) {
Dianne Hackborn39792d22010-08-19 18:01:52 -0700675 pw.println(prefix + "publicSourceDir=" + publicSourceDir);
676 }
Jeff Sharkey8a4c9722014-06-16 13:48:42 -0700677 if (!ArrayUtils.isEmpty(splitSourceDirs)) {
678 pw.println(prefix + "splitSourceDirs=" + Arrays.toString(splitSourceDirs));
679 }
680 if (!ArrayUtils.isEmpty(splitPublicSourceDirs)
681 && !Arrays.equals(splitSourceDirs, splitPublicSourceDirs)) {
682 pw.println(prefix + "splitPublicSourceDirs=" + Arrays.toString(splitPublicSourceDirs));
683 }
Dianne Hackborn39792d22010-08-19 18:01:52 -0700684 if (resourceDirs != null) {
685 pw.println(prefix + "resourceDirs=" + resourceDirs);
686 }
Robert Craig0f40dc92013-03-25 06:33:03 -0400687 if (seinfo != null) {
688 pw.println(prefix + "seinfo=" + seinfo);
689 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800690 pw.println(prefix + "dataDir=" + dataDir);
Dianne Hackborn12527f92009-11-11 17:39:50 -0800691 if (sharedLibraryFiles != null) {
Flavio Lerdadcc36bf2015-03-25 10:22:05 +0000692 pw.println(prefix + "sharedLibraryFiles=" + Arrays.toString(sharedLibraryFiles));
Dianne Hackborn12527f92009-11-11 17:39:50 -0800693 }
Dianne Hackborn8472e612014-01-23 17:57:20 -0800694 pw.println(prefix + "enabled=" + enabled + " targetSdkVersion=" + targetSdkVersion
695 + " versionCode=" + versionCode);
Dianne Hackborn12527f92009-11-11 17:39:50 -0800696 if (manageSpaceActivityName != null) {
697 pw.println(prefix + "manageSpaceActivityName="+manageSpaceActivityName);
698 }
699 if (descriptionRes != 0) {
700 pw.println(prefix + "description=0x"+Integer.toHexString(descriptionRes));
701 }
Adam Powell269248d2011-08-02 10:26:54 -0700702 if (uiOptions != 0) {
703 pw.println(prefix + "uiOptions=0x" + Integer.toHexString(uiOptions));
704 }
Fabrice Di Meglio59dfce82012-04-02 16:17:20 -0700705 pw.println(prefix + "supportsRtl=" + (hasRtlSupport() ? "true" : "false"));
Matthew Williams303650c2015-04-17 18:22:51 -0700706 if (fullBackupContent > 0) {
707 pw.println(prefix + "fullBackupContent=@xml/" + fullBackupContent);
708 } else {
709 pw.println(prefix + "fullBackupContent=" + (fullBackupContent < 0 ? "false" : "true"));
710 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800711 super.dumpBack(pw, prefix);
712 }
Fabrice Di Meglio59dfce82012-04-02 16:17:20 -0700713
714 /**
715 * @return true if "supportsRtl" has been set to true in the AndroidManifest
716 * @hide
717 */
718 public boolean hasRtlSupport() {
719 return (flags & FLAG_SUPPORTS_RTL) == FLAG_SUPPORTS_RTL;
720 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800721
722 public static class DisplayNameComparator
723 implements Comparator<ApplicationInfo> {
724 public DisplayNameComparator(PackageManager pm) {
725 mPM = pm;
726 }
727
728 public final int compare(ApplicationInfo aa, ApplicationInfo ab) {
729 CharSequence sa = mPM.getApplicationLabel(aa);
730 if (sa == null) {
731 sa = aa.packageName;
732 }
733 CharSequence sb = mPM.getApplicationLabel(ab);
734 if (sb == null) {
735 sb = ab.packageName;
736 }
737
738 return sCollator.compare(sa.toString(), sb.toString());
739 }
740
741 private final Collator sCollator = Collator.getInstance();
742 private PackageManager mPM;
743 }
744
745 public ApplicationInfo() {
746 }
747
748 public ApplicationInfo(ApplicationInfo orig) {
749 super(orig);
750 taskAffinity = orig.taskAffinity;
751 permission = orig.permission;
752 processName = orig.processName;
753 className = orig.className;
754 theme = orig.theme;
755 flags = orig.flags;
Alex Klyubinb9f8a522015-02-03 11:12:59 -0800756 privateFlags = orig.privateFlags;
Dianne Hackborndf6e9802011-05-26 14:20:23 -0700757 requiresSmallestWidthDp = orig.requiresSmallestWidthDp;
758 compatibleWidthLimitDp = orig.compatibleWidthLimitDp;
Dianne Hackborn2762ff32011-06-01 21:27:05 -0700759 largestWidthLimitDp = orig.largestWidthLimitDp;
Jeff Sharkeyb2b9ab82015-04-05 21:10:42 -0700760 volumeUuid = orig.volumeUuid;
Jeff Sharkey7f1a57a2014-10-08 10:14:53 -0700761 scanSourceDir = orig.scanSourceDir;
762 scanPublicSourceDir = orig.scanPublicSourceDir;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800763 sourceDir = orig.sourceDir;
764 publicSourceDir = orig.publicSourceDir;
Jeff Sharkey8a4c9722014-06-16 13:48:42 -0700765 splitSourceDirs = orig.splitSourceDirs;
766 splitPublicSourceDirs = orig.splitPublicSourceDirs;
Kenny Root85387d72010-08-26 10:13:11 -0700767 nativeLibraryDir = orig.nativeLibraryDir;
Narayan Kamath7dba6eb2014-07-16 08:53:30 +0100768 secondaryNativeLibraryDir = orig.secondaryNativeLibraryDir;
Jeff Sharkey84f12942014-07-10 17:48:11 -0700769 nativeLibraryRootDir = orig.nativeLibraryRootDir;
770 nativeLibraryRootRequiresIsa = orig.nativeLibraryRootRequiresIsa;
Narayan Kamathff110bd2014-07-04 18:30:45 +0100771 primaryCpuAbi = orig.primaryCpuAbi;
772 secondaryCpuAbi = orig.secondaryCpuAbi;
Kenny Rootd1ab0162010-01-21 17:27:14 -0800773 resourceDirs = orig.resourceDirs;
Robert Craig0f40dc92013-03-25 06:33:03 -0400774 seinfo = orig.seinfo;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800775 sharedLibraryFiles = orig.sharedLibraryFiles;
776 dataDir = orig.dataDir;
777 uid = orig.uid;
Dianne Hackborna96cbb42009-05-13 15:06:13 -0700778 targetSdkVersion = orig.targetSdkVersion;
Dianne Hackborn8472e612014-01-23 17:57:20 -0800779 versionCode = orig.versionCode;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800780 enabled = orig.enabled;
Dianne Hackborn0ac30312011-06-17 14:49:23 -0700781 enabledSetting = orig.enabledSetting;
Dianne Hackborn54e570f2010-10-04 18:32:32 -0700782 installLocation = orig.installLocation;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800783 manageSpaceActivityName = orig.manageSpaceActivityName;
784 descriptionRes = orig.descriptionRes;
Adam Powell269248d2011-08-02 10:26:54 -0700785 uiOptions = orig.uiOptions;
Christopher Tatebcb02552012-10-16 17:14:34 -0700786 backupAgentName = orig.backupAgentName;
Matthew Williams303650c2015-04-17 18:22:51 -0700787 fullBackupContent = orig.fullBackupContent;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800788 }
789
790
791 public String toString() {
792 return "ApplicationInfo{"
793 + Integer.toHexString(System.identityHashCode(this))
794 + " " + packageName + "}";
795 }
796
797 public int describeContents() {
798 return 0;
799 }
800
801 public void writeToParcel(Parcel dest, int parcelableFlags) {
802 super.writeToParcel(dest, parcelableFlags);
803 dest.writeString(taskAffinity);
804 dest.writeString(permission);
805 dest.writeString(processName);
806 dest.writeString(className);
807 dest.writeInt(theme);
808 dest.writeInt(flags);
Alex Klyubinb9f8a522015-02-03 11:12:59 -0800809 dest.writeInt(privateFlags);
Dianne Hackborndf6e9802011-05-26 14:20:23 -0700810 dest.writeInt(requiresSmallestWidthDp);
811 dest.writeInt(compatibleWidthLimitDp);
Dianne Hackborn2762ff32011-06-01 21:27:05 -0700812 dest.writeInt(largestWidthLimitDp);
Jeff Sharkeyb2b9ab82015-04-05 21:10:42 -0700813 dest.writeString(volumeUuid);
Jeff Sharkey7f1a57a2014-10-08 10:14:53 -0700814 dest.writeString(scanSourceDir);
815 dest.writeString(scanPublicSourceDir);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800816 dest.writeString(sourceDir);
817 dest.writeString(publicSourceDir);
Jeff Sharkey8a4c9722014-06-16 13:48:42 -0700818 dest.writeStringArray(splitSourceDirs);
819 dest.writeStringArray(splitPublicSourceDirs);
Kenny Root85387d72010-08-26 10:13:11 -0700820 dest.writeString(nativeLibraryDir);
Narayan Kamath7dba6eb2014-07-16 08:53:30 +0100821 dest.writeString(secondaryNativeLibraryDir);
Jeff Sharkey84f12942014-07-10 17:48:11 -0700822 dest.writeString(nativeLibraryRootDir);
823 dest.writeInt(nativeLibraryRootRequiresIsa ? 1 : 0);
Narayan Kamathff110bd2014-07-04 18:30:45 +0100824 dest.writeString(primaryCpuAbi);
825 dest.writeString(secondaryCpuAbi);
Kenny Rootd1ab0162010-01-21 17:27:14 -0800826 dest.writeStringArray(resourceDirs);
Robert Craig0f40dc92013-03-25 06:33:03 -0400827 dest.writeString(seinfo);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800828 dest.writeStringArray(sharedLibraryFiles);
829 dest.writeString(dataDir);
830 dest.writeInt(uid);
Dianne Hackborna96cbb42009-05-13 15:06:13 -0700831 dest.writeInt(targetSdkVersion);
Dianne Hackborn8472e612014-01-23 17:57:20 -0800832 dest.writeInt(versionCode);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800833 dest.writeInt(enabled ? 1 : 0);
Dianne Hackborn0ac30312011-06-17 14:49:23 -0700834 dest.writeInt(enabledSetting);
Dianne Hackborn54e570f2010-10-04 18:32:32 -0700835 dest.writeInt(installLocation);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800836 dest.writeString(manageSpaceActivityName);
Christopher Tate181fafa2009-05-14 11:12:14 -0700837 dest.writeString(backupAgentName);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800838 dest.writeInt(descriptionRes);
Adam Powell269248d2011-08-02 10:26:54 -0700839 dest.writeInt(uiOptions);
Matthew Williams303650c2015-04-17 18:22:51 -0700840 dest.writeInt(fullBackupContent);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800841 }
842
843 public static final Parcelable.Creator<ApplicationInfo> CREATOR
844 = new Parcelable.Creator<ApplicationInfo>() {
845 public ApplicationInfo createFromParcel(Parcel source) {
846 return new ApplicationInfo(source);
847 }
848 public ApplicationInfo[] newArray(int size) {
849 return new ApplicationInfo[size];
850 }
851 };
852
853 private ApplicationInfo(Parcel source) {
854 super(source);
855 taskAffinity = source.readString();
856 permission = source.readString();
857 processName = source.readString();
858 className = source.readString();
859 theme = source.readInt();
860 flags = source.readInt();
Alex Klyubinb9f8a522015-02-03 11:12:59 -0800861 privateFlags = source.readInt();
Dianne Hackborndf6e9802011-05-26 14:20:23 -0700862 requiresSmallestWidthDp = source.readInt();
863 compatibleWidthLimitDp = source.readInt();
Dianne Hackborn2762ff32011-06-01 21:27:05 -0700864 largestWidthLimitDp = source.readInt();
Jeff Sharkeyb2b9ab82015-04-05 21:10:42 -0700865 volumeUuid = source.readString();
Jeff Sharkey7f1a57a2014-10-08 10:14:53 -0700866 scanSourceDir = source.readString();
867 scanPublicSourceDir = source.readString();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800868 sourceDir = source.readString();
869 publicSourceDir = source.readString();
Jeff Sharkey8a4c9722014-06-16 13:48:42 -0700870 splitSourceDirs = source.readStringArray();
871 splitPublicSourceDirs = source.readStringArray();
Kenny Root85387d72010-08-26 10:13:11 -0700872 nativeLibraryDir = source.readString();
Narayan Kamath7dba6eb2014-07-16 08:53:30 +0100873 secondaryNativeLibraryDir = source.readString();
Jeff Sharkey84f12942014-07-10 17:48:11 -0700874 nativeLibraryRootDir = source.readString();
875 nativeLibraryRootRequiresIsa = source.readInt() != 0;
Narayan Kamathff110bd2014-07-04 18:30:45 +0100876 primaryCpuAbi = source.readString();
877 secondaryCpuAbi = source.readString();
Kenny Rootd1ab0162010-01-21 17:27:14 -0800878 resourceDirs = source.readStringArray();
Robert Craig0f40dc92013-03-25 06:33:03 -0400879 seinfo = source.readString();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800880 sharedLibraryFiles = source.readStringArray();
881 dataDir = source.readString();
882 uid = source.readInt();
Dianne Hackborna96cbb42009-05-13 15:06:13 -0700883 targetSdkVersion = source.readInt();
Dianne Hackborn8472e612014-01-23 17:57:20 -0800884 versionCode = source.readInt();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800885 enabled = source.readInt() != 0;
Dianne Hackborn0ac30312011-06-17 14:49:23 -0700886 enabledSetting = source.readInt();
Dianne Hackborn54e570f2010-10-04 18:32:32 -0700887 installLocation = source.readInt();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800888 manageSpaceActivityName = source.readString();
Christopher Tate181fafa2009-05-14 11:12:14 -0700889 backupAgentName = source.readString();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800890 descriptionRes = source.readInt();
Adam Powell269248d2011-08-02 10:26:54 -0700891 uiOptions = source.readInt();
Matthew Williams303650c2015-04-17 18:22:51 -0700892 fullBackupContent = source.readInt();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800893 }
Mitsuru Oshima8d112672009-04-27 12:01:23 -0700894
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800895 /**
896 * Retrieve the textual description of the application. This
897 * will call back on the given PackageManager to load the description from
898 * the application.
899 *
900 * @param pm A PackageManager from which the label can be loaded; usually
901 * the PackageManager from which you originally retrieved this item.
902 *
903 * @return Returns a CharSequence containing the application's description.
904 * If there is no description, null is returned.
905 */
906 public CharSequence loadDescription(PackageManager pm) {
907 if (descriptionRes != 0) {
Jeff Brown07330792010-03-30 19:57:08 -0700908 CharSequence label = pm.getText(packageName, descriptionRes, this);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800909 if (label != null) {
910 return label;
911 }
912 }
913 return null;
914 }
Mitsuru Oshimae5fb3282009-06-09 21:16:08 -0700915
916 /**
917 * Disable compatibility mode
918 *
919 * @hide
920 */
921 public void disableCompatibilityMode() {
Mitsuru Oshima69fff4a2009-07-21 09:51:05 -0700922 flags |= (FLAG_SUPPORTS_LARGE_SCREENS | FLAG_SUPPORTS_NORMAL_SCREENS |
Dianne Hackborn11b822d2009-07-21 20:03:02 -0700923 FLAG_SUPPORTS_SMALL_SCREENS | FLAG_RESIZEABLE_FOR_SCREENS |
Dianne Hackborn14cee9f2010-04-23 17:51:26 -0700924 FLAG_SUPPORTS_SCREEN_DENSITIES | FLAG_SUPPORTS_XLARGE_SCREENS);
Mitsuru Oshimae5fb3282009-06-09 21:16:08 -0700925 }
Jeff Brown07330792010-03-30 19:57:08 -0700926
927 /**
928 * @hide
929 */
Alexandra Gherghinaa7093142014-07-30 13:43:39 +0100930 @Override
931 public Drawable loadDefaultIcon(PackageManager pm) {
Jeff Brown07330792010-03-30 19:57:08 -0700932 if ((flags & FLAG_EXTERNAL_STORAGE) != 0
933 && isPackageUnavailable(pm)) {
934 return Resources.getSystem().getDrawable(
935 com.android.internal.R.drawable.sym_app_on_sd_unavailable_icon);
936 }
937 return pm.getDefaultActivityIcon();
938 }
939
940 private boolean isPackageUnavailable(PackageManager pm) {
941 try {
942 return pm.getPackageInfo(packageName, 0) == null;
943 } catch (NameNotFoundException ex) {
944 return true;
945 }
946 }
Jeff Sharkeyd7460572014-07-06 20:44:55 -0700947
Jeff Brown07330792010-03-30 19:57:08 -0700948 /**
949 * @hide
950 */
Fyodor Kupoloveeea67b2015-02-23 17:14:45 -0800951 public boolean isForwardLocked() {
952 return (privateFlags & ApplicationInfo.PRIVATE_FLAG_FORWARD_LOCK) != 0;
953 }
954
955 /**
956 * @hide
957 */
Fyodor Kupolovb94c1652015-03-03 12:25:30 -0800958 public boolean isSystemApp() {
959 return (flags & ApplicationInfo.FLAG_SYSTEM) != 0;
960 }
961
962 /**
963 * @hide
964 */
965 public boolean isUpdatedSystemApp() {
966 return (flags & ApplicationInfo.FLAG_UPDATED_SYSTEM_APP) != 0;
967 }
968
Jeff Sharkeye2d45be2015-04-15 17:14:12 -0700969 /** @hide */
970 public boolean isInternal() {
971 return (flags & ApplicationInfo.FLAG_EXTERNAL_STORAGE) == 0;
972 }
973
974 /** @hide */
975 public boolean isExternalAsec() {
976 return TextUtils.isEmpty(volumeUuid)
977 && (flags & ApplicationInfo.FLAG_EXTERNAL_STORAGE) != 0;
978 }
979
Fyodor Kupolovb94c1652015-03-03 12:25:30 -0800980 /**
981 * @hide
982 */
Jeff Brown07330792010-03-30 19:57:08 -0700983 @Override protected ApplicationInfo getApplicationInfo() {
984 return this;
985 }
Jeff Sharkeyd7460572014-07-06 20:44:55 -0700986
987 /** {@hide} */ public void setCodePath(String codePath) { scanSourceDir = codePath; }
988 /** {@hide} */ public void setBaseCodePath(String baseCodePath) { sourceDir = baseCodePath; }
989 /** {@hide} */ public void setSplitCodePaths(String[] splitCodePaths) { splitSourceDirs = splitCodePaths; }
990 /** {@hide} */ public void setResourcePath(String resourcePath) { scanPublicSourceDir = resourcePath; }
991 /** {@hide} */ public void setBaseResourcePath(String baseResourcePath) { publicSourceDir = baseResourcePath; }
992 /** {@hide} */ public void setSplitResourcePaths(String[] splitResourcePaths) { splitPublicSourceDirs = splitResourcePaths; }
993
994 /** {@hide} */ public String getCodePath() { return scanSourceDir; }
995 /** {@hide} */ public String getBaseCodePath() { return sourceDir; }
996 /** {@hide} */ public String[] getSplitCodePaths() { return splitSourceDirs; }
997 /** {@hide} */ public String getResourcePath() { return scanPublicSourceDir; }
998 /** {@hide} */ public String getBaseResourcePath() { return publicSourceDir; }
999 /** {@hide} */ public String[] getSplitResourcePaths() { return splitSourceDirs; }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001000}