blob: 96bb2ee6b0e327196c0eda2388d3c4f7592be195 [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 /**
Narayan Kamath589a1bc2014-07-03 14:43:26 +0100376 * Value for {@link #flags}: true if code from this application will need to be
377 * loaded into other applications' processes. On devices that support multiple
378 * instruction sets, this implies the code might be loaded into a process that's
379 * using any of the devices supported instruction sets.
380 *
381 * <p> The system might treat such applications specially, for eg., by
382 * extracting the application's native libraries for all supported instruction
383 * sets or by compiling the application's dex code for all supported instruction
384 * sets.
385 */
386 public static final int FLAG_MULTIARCH = 1 << 31;
Amith Yamasani655d0e22013-06-12 14:19:10 -0700387
388 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800389 * Flags associated with the application. Any combination of
390 * {@link #FLAG_SYSTEM}, {@link #FLAG_DEBUGGABLE}, {@link #FLAG_HAS_CODE},
391 * {@link #FLAG_PERSISTENT}, {@link #FLAG_FACTORY_TEST}, and
392 * {@link #FLAG_ALLOW_TASK_REPARENTING}
Dianne Hackborn851a5412009-05-08 12:06:44 -0700393 * {@link #FLAG_ALLOW_CLEAR_USER_DATA}, {@link #FLAG_UPDATED_SYSTEM_APP},
Dianne Hackborn723738c2009-06-25 19:48:04 -0700394 * {@link #FLAG_TEST_ONLY}, {@link #FLAG_SUPPORTS_SMALL_SCREENS},
395 * {@link #FLAG_SUPPORTS_NORMAL_SCREENS},
Dianne Hackborn14cee9f2010-04-23 17:51:26 -0700396 * {@link #FLAG_SUPPORTS_LARGE_SCREENS}, {@link #FLAG_SUPPORTS_XLARGE_SCREENS},
397 * {@link #FLAG_RESIZEABLE_FOR_SCREENS},
Dianne Hackborn7767eac2012-08-23 18:25:40 -0700398 * {@link #FLAG_SUPPORTS_SCREEN_DENSITIES}, {@link #FLAG_VM_SAFE_MODE},
Alex Klyubinb9f8a522015-02-03 11:12:59 -0800399 * {@link #FLAG_ALLOW_BACKUP}, {@link #FLAG_KILL_AFTER_RESTORE},
400 * {@link #FLAG_RESTORE_ANY_VERSION}, {@link #FLAG_EXTERNAL_STORAGE},
401 * {@link #FLAG_LARGE_HEAP}, {@link #FLAG_STOPPED},
402 * {@link #FLAG_SUPPORTS_RTL}, {@link #FLAG_INSTALLED},
403 * {@link #FLAG_IS_DATA_ONLY}, {@link #FLAG_IS_GAME},
Alex Klyubin7cb000f2015-03-26 11:00:04 -0700404 * {@link #FLAG_FULL_BACKUP_ONLY}, {@link #FLAG_USES_CLEARTEXT_TRAFFIC},
405 * {@link #FLAG_MULTIARCH}.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800406 */
407 public int flags = 0;
Amith Yamasani655d0e22013-06-12 14:19:10 -0700408
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800409 /**
Alex Klyubinb9f8a522015-02-03 11:12:59 -0800410 * Value for {@link #privateFlags}: true if the application is hidden via restrictions and for
411 * most purposes is considered as not installed.
412 * {@hide}
413 */
414 public static final int PRIVATE_FLAG_HIDDEN = 1<<0;
415
416 /**
417 * Value for {@link #privateFlags}: set to <code>true</code> if the application
418 * has reported that it is heavy-weight, and thus can not participate in
419 * the normal application lifecycle.
420 *
421 * <p>Comes from the
422 * android.R.styleable#AndroidManifestApplication_cantSaveState
423 * attribute of the &lt;application&gt; tag.
424 *
425 * {@hide}
426 */
427 public static final int PRIVATE_FLAG_CANT_SAVE_STATE = 1<<1;
428
429 /**
430 * Value for {@link #privateFlags}: Set to true if the application has been
431 * installed using the forward lock option.
432 *
433 * NOTE: DO NOT CHANGE THIS VALUE! It is saved in packages.xml.
434 *
435 * {@hide}
436 */
437 public static final int PRIVATE_FLAG_FORWARD_LOCK = 1<<2;
438
439 /**
440 * Value for {@link #privateFlags}: set to {@code true} if the application
441 * is permitted to hold privileged permissions.
442 *
443 * {@hide}
444 */
445 public static final int PRIVATE_FLAG_PRIVILEGED = 1<<3;
446
447 /**
Fabrice Di Megliod3d8a322015-04-01 15:58:47 -0700448 * Value for {@link #flags}: {@code true} if the application has any IntentFiler with some
449 * data URI using HTTP or HTTPS with an associated VIEW action.
450 *
451 * {@hide}
452 */
453 public static final int PRIVATE_FLAG_HAS_DOMAIN_URLS = 1<<4;
454
455 /**
Alex Klyubinb9f8a522015-02-03 11:12:59 -0800456 * Private/hidden flags. See {@code PRIVATE_FLAG_...} constants.
457 * {@hide}
458 */
459 public int privateFlags;
460
461 /**
Dianne Hackborndf6e9802011-05-26 14:20:23 -0700462 * The required smallest screen width the application can run on. If 0,
463 * nothing has been specified. Comes from
464 * {@link android.R.styleable#AndroidManifestSupportsScreens_requiresSmallestWidthDp
465 * android:requiresSmallestWidthDp} attribute of the &lt;supports-screens&gt; tag.
466 */
467 public int requiresSmallestWidthDp = 0;
468
469 /**
470 * The maximum smallest screen width the application is designed for. If 0,
471 * nothing has been specified. Comes from
472 * {@link android.R.styleable#AndroidManifestSupportsScreens_compatibleWidthLimitDp
473 * android:compatibleWidthLimitDp} attribute of the &lt;supports-screens&gt; tag.
474 */
475 public int compatibleWidthLimitDp = 0;
476
477 /**
Dianne Hackborn2762ff32011-06-01 21:27:05 -0700478 * The maximum smallest screen width the application will work on. If 0,
479 * nothing has been specified. Comes from
480 * {@link android.R.styleable#AndroidManifestSupportsScreens_largestWidthLimitDp
481 * android:largestWidthLimitDp} attribute of the &lt;supports-screens&gt; tag.
482 */
483 public int largestWidthLimitDp = 0;
484
Jeff Sharkeyd7460572014-07-06 20:44:55 -0700485 /** {@hide} */
Jeff Sharkeyb2b9ab82015-04-05 21:10:42 -0700486 public String volumeUuid;
487 /** {@hide} */
Jeff Sharkeyd7460572014-07-06 20:44:55 -0700488 public String scanSourceDir;
489 /** {@hide} */
490 public String scanPublicSourceDir;
491
Dianne Hackborn2762ff32011-06-01 21:27:05 -0700492 /**
Jeff Sharkey8a4c9722014-06-16 13:48:42 -0700493 * Full path to the base APK for this application.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800494 */
495 public String sourceDir;
496
497 /**
Jeff Sharkey8a4c9722014-06-16 13:48:42 -0700498 * Full path to the publicly available parts of {@link #sourceDir},
499 * including resources and manifest. This may be different from
500 * {@link #sourceDir} if an application is forward locked.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800501 */
502 public String publicSourceDir;
Jeff Sharkey8a4c9722014-06-16 13:48:42 -0700503
504 /**
505 * Full paths to zero or more split APKs that, when combined with the base
506 * APK defined in {@link #sourceDir}, form a complete application.
507 */
508 public String[] splitSourceDirs;
509
510 /**
511 * Full path to the publicly available parts of {@link #splitSourceDirs},
512 * including resources and manifest. This may be different from
513 * {@link #splitSourceDirs} if an application is forward locked.
514 */
515 public String[] splitPublicSourceDirs;
516
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800517 /**
Kenny Rootd1ab0162010-01-21 17:27:14 -0800518 * Full paths to the locations of extra resource packages this application
519 * uses. This field is only used if there are extra resource packages,
520 * otherwise it is null.
Kenny Rootace5a3f2010-02-05 12:59:28 -0800521 *
522 * {@hide}
Kenny Rootd1ab0162010-01-21 17:27:14 -0800523 */
524 public String[] resourceDirs;
525
526 /**
Robert Craig0f40dc92013-03-25 06:33:03 -0400527 * String retrieved from the seinfo tag found in selinux policy. This value
528 * is useful in setting an SELinux security context on the process as well
529 * as its data directory.
530 *
531 * {@hide}
532 */
533 public String seinfo;
534
535 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800536 * Paths to all shared libraries this application is linked against. This
537 * field is only set if the {@link PackageManager#GET_SHARED_LIBRARY_FILES
538 * PackageManager.GET_SHARED_LIBRARY_FILES} flag was used when retrieving
539 * the structure.
540 */
541 public String[] sharedLibraryFiles;
542
543 /**
544 * Full path to a directory assigned to the package for its persistent
545 * data.
546 */
547 public String dataDir;
Kenny Root85387d72010-08-26 10:13:11 -0700548
549 /**
550 * Full path to the directory where native JNI libraries are stored.
Kenny Root85387d72010-08-26 10:13:11 -0700551 */
552 public String nativeLibraryDir;
553
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800554 /**
Narayan Kamath7dba6eb2014-07-16 08:53:30 +0100555 * Full path where unpacked native libraries for {@link #secondaryCpuAbi}
556 * are stored, if present.
557 *
558 * The main reason this exists is for bundled multi-arch apps, where
559 * it's not trivial to calculate the location of libs for the secondary abi
560 * given the location of the primary.
561 *
562 * TODO: Change the layout of bundled installs so that we can use
563 * nativeLibraryRootDir & nativeLibraryRootRequiresIsa there as well.
564 * (e.g {@code [ "/system/app-lib/Foo/arm", "/system/app-lib/Foo/arm64" ]}
565 * instead of {@code [ "/system/lib/Foo", "/system/lib64/Foo" ]}.
566 *
567 * @hide
568 */
569 public String secondaryNativeLibraryDir;
570
571 /**
Jeff Sharkey84f12942014-07-10 17:48:11 -0700572 * The root path where unpacked native libraries are stored.
573 * <p>
574 * When {@link #nativeLibraryRootRequiresIsa} is set, the libraries are
575 * placed in ISA-specific subdirectories under this path, otherwise the
576 * libraries are placed directly at this path.
Narayan Kamathff110bd2014-07-04 18:30:45 +0100577 *
Jeff Sharkey84f12942014-07-10 17:48:11 -0700578 * @hide
Narayan Kamathff110bd2014-07-04 18:30:45 +0100579 */
Jeff Sharkey84f12942014-07-10 17:48:11 -0700580 public String nativeLibraryRootDir;
581
582 /**
583 * Flag indicating that ISA must be appended to
584 * {@link #nativeLibraryRootDir} to be useful.
585 *
586 * @hide
587 */
588 public boolean nativeLibraryRootRequiresIsa;
Narayan Kamathff110bd2014-07-04 18:30:45 +0100589
590 /**
591 * The primary ABI that this application requires, This is inferred from the ABIs
Ramin Zaghiff0c4702014-04-01 15:02:29 +0100592 * of the native JNI libraries the application bundles. Will be {@code null}
593 * if this application does not require any particular ABI.
594 *
Narayan Kamathff110bd2014-07-04 18:30:45 +0100595 * If non-null, the application will always be launched with this ABI.
596 *
Ramin Zaghiff0c4702014-04-01 15:02:29 +0100597 * {@hide}
598 */
Narayan Kamathff110bd2014-07-04 18:30:45 +0100599 public String primaryCpuAbi;
600
601 /**
602 * The secondary ABI for this application. Might be non-null for multi-arch
603 * installs. The application itself never uses this ABI, but other applications that
604 * use its code might.
605 *
606 * {@hide}
607 */
608 public String secondaryCpuAbi;
609
610 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800611 * The kernel user-ID that has been assigned to this application;
612 * currently this is not a unique ID (multiple applications can have
613 * the same uid).
614 */
615 public int uid;
616
Mitsuru Oshima8d112672009-04-27 12:01:23 -0700617 /**
Dianne Hackborn3b3e1452009-09-24 19:22:12 -0700618 * The minimum SDK version this application targets. It may run on earlier
Dianne Hackborna96cbb42009-05-13 15:06:13 -0700619 * versions, but it knows how to work with any new behavior added at this
620 * version. Will be {@link android.os.Build.VERSION_CODES#CUR_DEVELOPMENT}
621 * if this is a development build and the app is targeting that. You should
622 * compare that this number is >= the SDK version number at which your
623 * behavior was introduced.
624 */
625 public int targetSdkVersion;
Dianne Hackborn8472e612014-01-23 17:57:20 -0800626
627 /**
628 * The app's declared version code.
629 * @hide
630 */
631 public int versionCode;
632
Dianne Hackborna96cbb42009-05-13 15:06:13 -0700633 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800634 * When false, indicates that all components within this application are
635 * considered disabled, regardless of their individually set enabled status.
636 */
637 public boolean enabled = true;
638
Dianne Hackborn54e570f2010-10-04 18:32:32 -0700639 /**
Dianne Hackborn0ac30312011-06-17 14:49:23 -0700640 * For convenient access to the current enabled setting of this app.
641 * @hide
642 */
643 public int enabledSetting = PackageManager.COMPONENT_ENABLED_STATE_DEFAULT;
644
645 /**
Dianne Hackborn54e570f2010-10-04 18:32:32 -0700646 * For convenient access to package's install location.
647 * @hide
648 */
649 public int installLocation = PackageInfo.INSTALL_LOCATION_UNSPECIFIED;
Jose Lima12d0b4c2014-03-14 16:55:12 -0700650
Alan Viverette9b0ab652015-03-18 14:21:04 -0700651 /**
652 * True when the application's rendering should be hardware accelerated.
653 */
654 public boolean hardwareAccelerated;
655
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800656 public void dump(Printer pw, String prefix) {
657 super.dumpFront(pw, prefix);
Dianne Hackborn12527f92009-11-11 17:39:50 -0800658 if (className != null) {
659 pw.println(prefix + "className=" + className);
660 }
661 if (permission != null) {
662 pw.println(prefix + "permission=" + permission);
663 }
Dianne Hackborn39792d22010-08-19 18:01:52 -0700664 pw.println(prefix + "processName=" + processName);
665 pw.println(prefix + "taskAffinity=" + taskAffinity);
666 pw.println(prefix + "uid=" + uid + " flags=0x" + Integer.toHexString(flags)
Alex Klyubinb9f8a522015-02-03 11:12:59 -0800667 + " privateFlags=0x" + Integer.toHexString(privateFlags)
Dianne Hackborn39792d22010-08-19 18:01:52 -0700668 + " theme=0x" + Integer.toHexString(theme));
Dianne Hackborndf6e9802011-05-26 14:20:23 -0700669 pw.println(prefix + "requiresSmallestWidthDp=" + requiresSmallestWidthDp
Dianne Hackborn2762ff32011-06-01 21:27:05 -0700670 + " compatibleWidthLimitDp=" + compatibleWidthLimitDp
671 + " largestWidthLimitDp=" + largestWidthLimitDp);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800672 pw.println(prefix + "sourceDir=" + sourceDir);
Jeff Sharkey8a4c9722014-06-16 13:48:42 -0700673 if (!Objects.equals(sourceDir, publicSourceDir)) {
Dianne Hackborn39792d22010-08-19 18:01:52 -0700674 pw.println(prefix + "publicSourceDir=" + publicSourceDir);
675 }
Jeff Sharkey8a4c9722014-06-16 13:48:42 -0700676 if (!ArrayUtils.isEmpty(splitSourceDirs)) {
677 pw.println(prefix + "splitSourceDirs=" + Arrays.toString(splitSourceDirs));
678 }
679 if (!ArrayUtils.isEmpty(splitPublicSourceDirs)
680 && !Arrays.equals(splitSourceDirs, splitPublicSourceDirs)) {
681 pw.println(prefix + "splitPublicSourceDirs=" + Arrays.toString(splitPublicSourceDirs));
682 }
Dianne Hackborn39792d22010-08-19 18:01:52 -0700683 if (resourceDirs != null) {
684 pw.println(prefix + "resourceDirs=" + resourceDirs);
685 }
Robert Craig0f40dc92013-03-25 06:33:03 -0400686 if (seinfo != null) {
687 pw.println(prefix + "seinfo=" + seinfo);
688 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800689 pw.println(prefix + "dataDir=" + dataDir);
Dianne Hackborn12527f92009-11-11 17:39:50 -0800690 if (sharedLibraryFiles != null) {
Flavio Lerdadcc36bf2015-03-25 10:22:05 +0000691 pw.println(prefix + "sharedLibraryFiles=" + Arrays.toString(sharedLibraryFiles));
Dianne Hackborn12527f92009-11-11 17:39:50 -0800692 }
Dianne Hackborn8472e612014-01-23 17:57:20 -0800693 pw.println(prefix + "enabled=" + enabled + " targetSdkVersion=" + targetSdkVersion
694 + " versionCode=" + versionCode);
Alan Viverette9b0ab652015-03-18 14:21:04 -0700695 pw.println(prefix + "hardwareAccelerated=" + hardwareAccelerated);
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;
Alan Viverette9b0ab652015-03-18 14:21:04 -0700787 hardwareAccelerated = orig.hardwareAccelerated;
Matthew Williams303650c2015-04-17 18:22:51 -0700788 fullBackupContent = orig.fullBackupContent;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800789 }
790
791
792 public String toString() {
793 return "ApplicationInfo{"
794 + Integer.toHexString(System.identityHashCode(this))
795 + " " + packageName + "}";
796 }
797
798 public int describeContents() {
799 return 0;
800 }
801
802 public void writeToParcel(Parcel dest, int parcelableFlags) {
803 super.writeToParcel(dest, parcelableFlags);
804 dest.writeString(taskAffinity);
805 dest.writeString(permission);
806 dest.writeString(processName);
807 dest.writeString(className);
808 dest.writeInt(theme);
809 dest.writeInt(flags);
Alex Klyubinb9f8a522015-02-03 11:12:59 -0800810 dest.writeInt(privateFlags);
Dianne Hackborndf6e9802011-05-26 14:20:23 -0700811 dest.writeInt(requiresSmallestWidthDp);
812 dest.writeInt(compatibleWidthLimitDp);
Dianne Hackborn2762ff32011-06-01 21:27:05 -0700813 dest.writeInt(largestWidthLimitDp);
Jeff Sharkeyb2b9ab82015-04-05 21:10:42 -0700814 dest.writeString(volumeUuid);
Jeff Sharkey7f1a57a2014-10-08 10:14:53 -0700815 dest.writeString(scanSourceDir);
816 dest.writeString(scanPublicSourceDir);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800817 dest.writeString(sourceDir);
818 dest.writeString(publicSourceDir);
Jeff Sharkey8a4c9722014-06-16 13:48:42 -0700819 dest.writeStringArray(splitSourceDirs);
820 dest.writeStringArray(splitPublicSourceDirs);
Kenny Root85387d72010-08-26 10:13:11 -0700821 dest.writeString(nativeLibraryDir);
Narayan Kamath7dba6eb2014-07-16 08:53:30 +0100822 dest.writeString(secondaryNativeLibraryDir);
Jeff Sharkey84f12942014-07-10 17:48:11 -0700823 dest.writeString(nativeLibraryRootDir);
824 dest.writeInt(nativeLibraryRootRequiresIsa ? 1 : 0);
Narayan Kamathff110bd2014-07-04 18:30:45 +0100825 dest.writeString(primaryCpuAbi);
826 dest.writeString(secondaryCpuAbi);
Kenny Rootd1ab0162010-01-21 17:27:14 -0800827 dest.writeStringArray(resourceDirs);
Robert Craig0f40dc92013-03-25 06:33:03 -0400828 dest.writeString(seinfo);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800829 dest.writeStringArray(sharedLibraryFiles);
830 dest.writeString(dataDir);
831 dest.writeInt(uid);
Dianne Hackborna96cbb42009-05-13 15:06:13 -0700832 dest.writeInt(targetSdkVersion);
Dianne Hackborn8472e612014-01-23 17:57:20 -0800833 dest.writeInt(versionCode);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800834 dest.writeInt(enabled ? 1 : 0);
Dianne Hackborn0ac30312011-06-17 14:49:23 -0700835 dest.writeInt(enabledSetting);
Dianne Hackborn54e570f2010-10-04 18:32:32 -0700836 dest.writeInt(installLocation);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800837 dest.writeString(manageSpaceActivityName);
Christopher Tate181fafa2009-05-14 11:12:14 -0700838 dest.writeString(backupAgentName);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800839 dest.writeInt(descriptionRes);
Adam Powell269248d2011-08-02 10:26:54 -0700840 dest.writeInt(uiOptions);
Alan Viverette9b0ab652015-03-18 14:21:04 -0700841 dest.writeInt(hardwareAccelerated ? 1 : 0);
Matthew Williams303650c2015-04-17 18:22:51 -0700842 dest.writeInt(fullBackupContent);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800843 }
844
845 public static final Parcelable.Creator<ApplicationInfo> CREATOR
846 = new Parcelable.Creator<ApplicationInfo>() {
847 public ApplicationInfo createFromParcel(Parcel source) {
848 return new ApplicationInfo(source);
849 }
850 public ApplicationInfo[] newArray(int size) {
851 return new ApplicationInfo[size];
852 }
853 };
854
855 private ApplicationInfo(Parcel source) {
856 super(source);
857 taskAffinity = source.readString();
858 permission = source.readString();
859 processName = source.readString();
860 className = source.readString();
861 theme = source.readInt();
862 flags = source.readInt();
Alex Klyubinb9f8a522015-02-03 11:12:59 -0800863 privateFlags = source.readInt();
Dianne Hackborndf6e9802011-05-26 14:20:23 -0700864 requiresSmallestWidthDp = source.readInt();
865 compatibleWidthLimitDp = source.readInt();
Dianne Hackborn2762ff32011-06-01 21:27:05 -0700866 largestWidthLimitDp = source.readInt();
Jeff Sharkeyb2b9ab82015-04-05 21:10:42 -0700867 volumeUuid = source.readString();
Jeff Sharkey7f1a57a2014-10-08 10:14:53 -0700868 scanSourceDir = source.readString();
869 scanPublicSourceDir = source.readString();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800870 sourceDir = source.readString();
871 publicSourceDir = source.readString();
Jeff Sharkey8a4c9722014-06-16 13:48:42 -0700872 splitSourceDirs = source.readStringArray();
873 splitPublicSourceDirs = source.readStringArray();
Kenny Root85387d72010-08-26 10:13:11 -0700874 nativeLibraryDir = source.readString();
Narayan Kamath7dba6eb2014-07-16 08:53:30 +0100875 secondaryNativeLibraryDir = source.readString();
Jeff Sharkey84f12942014-07-10 17:48:11 -0700876 nativeLibraryRootDir = source.readString();
877 nativeLibraryRootRequiresIsa = source.readInt() != 0;
Narayan Kamathff110bd2014-07-04 18:30:45 +0100878 primaryCpuAbi = source.readString();
879 secondaryCpuAbi = source.readString();
Kenny Rootd1ab0162010-01-21 17:27:14 -0800880 resourceDirs = source.readStringArray();
Robert Craig0f40dc92013-03-25 06:33:03 -0400881 seinfo = source.readString();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800882 sharedLibraryFiles = source.readStringArray();
883 dataDir = source.readString();
884 uid = source.readInt();
Dianne Hackborna96cbb42009-05-13 15:06:13 -0700885 targetSdkVersion = source.readInt();
Dianne Hackborn8472e612014-01-23 17:57:20 -0800886 versionCode = source.readInt();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800887 enabled = source.readInt() != 0;
Dianne Hackborn0ac30312011-06-17 14:49:23 -0700888 enabledSetting = source.readInt();
Dianne Hackborn54e570f2010-10-04 18:32:32 -0700889 installLocation = source.readInt();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800890 manageSpaceActivityName = source.readString();
Christopher Tate181fafa2009-05-14 11:12:14 -0700891 backupAgentName = source.readString();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800892 descriptionRes = source.readInt();
Adam Powell269248d2011-08-02 10:26:54 -0700893 uiOptions = source.readInt();
Alan Viverette9b0ab652015-03-18 14:21:04 -0700894 hardwareAccelerated = source.readInt() != 0;
Matthew Williams303650c2015-04-17 18:22:51 -0700895 fullBackupContent = source.readInt();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800896 }
Mitsuru Oshima8d112672009-04-27 12:01:23 -0700897
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800898 /**
899 * Retrieve the textual description of the application. This
900 * will call back on the given PackageManager to load the description from
901 * the application.
902 *
903 * @param pm A PackageManager from which the label can be loaded; usually
904 * the PackageManager from which you originally retrieved this item.
905 *
906 * @return Returns a CharSequence containing the application's description.
907 * If there is no description, null is returned.
908 */
909 public CharSequence loadDescription(PackageManager pm) {
910 if (descriptionRes != 0) {
Jeff Brown07330792010-03-30 19:57:08 -0700911 CharSequence label = pm.getText(packageName, descriptionRes, this);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800912 if (label != null) {
913 return label;
914 }
915 }
916 return null;
917 }
Mitsuru Oshimae5fb3282009-06-09 21:16:08 -0700918
919 /**
920 * Disable compatibility mode
921 *
922 * @hide
923 */
924 public void disableCompatibilityMode() {
Mitsuru Oshima69fff4a2009-07-21 09:51:05 -0700925 flags |= (FLAG_SUPPORTS_LARGE_SCREENS | FLAG_SUPPORTS_NORMAL_SCREENS |
Dianne Hackborn11b822d2009-07-21 20:03:02 -0700926 FLAG_SUPPORTS_SMALL_SCREENS | FLAG_RESIZEABLE_FOR_SCREENS |
Dianne Hackborn14cee9f2010-04-23 17:51:26 -0700927 FLAG_SUPPORTS_SCREEN_DENSITIES | FLAG_SUPPORTS_XLARGE_SCREENS);
Mitsuru Oshimae5fb3282009-06-09 21:16:08 -0700928 }
Jeff Brown07330792010-03-30 19:57:08 -0700929
930 /**
931 * @hide
932 */
Alexandra Gherghinaa7093142014-07-30 13:43:39 +0100933 @Override
934 public Drawable loadDefaultIcon(PackageManager pm) {
Jeff Brown07330792010-03-30 19:57:08 -0700935 if ((flags & FLAG_EXTERNAL_STORAGE) != 0
936 && isPackageUnavailable(pm)) {
937 return Resources.getSystem().getDrawable(
938 com.android.internal.R.drawable.sym_app_on_sd_unavailable_icon);
939 }
940 return pm.getDefaultActivityIcon();
941 }
942
943 private boolean isPackageUnavailable(PackageManager pm) {
944 try {
945 return pm.getPackageInfo(packageName, 0) == null;
946 } catch (NameNotFoundException ex) {
947 return true;
948 }
949 }
Jeff Sharkeyd7460572014-07-06 20:44:55 -0700950
Jeff Brown07330792010-03-30 19:57:08 -0700951 /**
952 * @hide
953 */
Fyodor Kupoloveeea67b2015-02-23 17:14:45 -0800954 public boolean isForwardLocked() {
955 return (privateFlags & ApplicationInfo.PRIVATE_FLAG_FORWARD_LOCK) != 0;
956 }
957
958 /**
959 * @hide
960 */
Fyodor Kupolovb94c1652015-03-03 12:25:30 -0800961 public boolean isSystemApp() {
962 return (flags & ApplicationInfo.FLAG_SYSTEM) != 0;
963 }
964
965 /**
966 * @hide
967 */
968 public boolean isUpdatedSystemApp() {
969 return (flags & ApplicationInfo.FLAG_UPDATED_SYSTEM_APP) != 0;
970 }
971
Jeff Sharkeye2d45be2015-04-15 17:14:12 -0700972 /** @hide */
973 public boolean isInternal() {
974 return (flags & ApplicationInfo.FLAG_EXTERNAL_STORAGE) == 0;
975 }
976
977 /** @hide */
978 public boolean isExternalAsec() {
979 return TextUtils.isEmpty(volumeUuid)
980 && (flags & ApplicationInfo.FLAG_EXTERNAL_STORAGE) != 0;
981 }
982
Fyodor Kupolovb94c1652015-03-03 12:25:30 -0800983 /**
984 * @hide
985 */
Jeff Brown07330792010-03-30 19:57:08 -0700986 @Override protected ApplicationInfo getApplicationInfo() {
987 return this;
988 }
Jeff Sharkeyd7460572014-07-06 20:44:55 -0700989
990 /** {@hide} */ public void setCodePath(String codePath) { scanSourceDir = codePath; }
991 /** {@hide} */ public void setBaseCodePath(String baseCodePath) { sourceDir = baseCodePath; }
992 /** {@hide} */ public void setSplitCodePaths(String[] splitCodePaths) { splitSourceDirs = splitCodePaths; }
993 /** {@hide} */ public void setResourcePath(String resourcePath) { scanPublicSourceDir = resourcePath; }
994 /** {@hide} */ public void setBaseResourcePath(String baseResourcePath) { publicSourceDir = baseResourcePath; }
995 /** {@hide} */ public void setSplitResourcePaths(String[] splitResourcePaths) { splitPublicSourceDirs = splitResourcePaths; }
996
997 /** {@hide} */ public String getCodePath() { return scanSourceDir; }
998 /** {@hide} */ public String getBaseCodePath() { return sourceDir; }
999 /** {@hide} */ public String[] getSplitCodePaths() { return splitSourceDirs; }
1000 /** {@hide} */ public String getResourcePath() { return scanPublicSourceDir; }
1001 /** {@hide} */ public String getBaseResourcePath() { return publicSourceDir; }
1002 /** {@hide} */ public String[] getSplitResourcePaths() { return splitSourceDirs; }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001003}