blob: ec746172114127e1805ea28c12935b62fbec1805 [file] [log] [blame]
Kenny Root15a4d2f2010-03-11 18:20:12 -08001/*
2 * Copyright (C) 2007 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080017package android.content.pm;
18
Jeff Sharkey9bc89af2017-01-11 11:25:50 -070019import static android.os.Build.VERSION_CODES.DONUT;
20
21import android.annotation.IntDef;
Jeff Sharkey8a372a02016-03-16 16:25:45 -060022import android.annotation.SystemApi;
Jeff Sharkeya73b8fd2016-01-06 17:02:08 -070023import android.annotation.TestApi;
Jeff Sharkey8a372a02016-03-16 16:25:45 -060024import android.content.Context;
Jeff Brown07330792010-03-30 19:57:08 -070025import android.content.pm.PackageManager.NameNotFoundException;
26import android.content.res.Resources;
27import android.graphics.drawable.Drawable;
Jeff Sharkey15447792015-11-05 16:18:51 -080028import android.os.Environment;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080029import android.os.Parcel;
30import android.os.Parcelable;
Jeff Sharkey15447792015-11-05 16:18:51 -080031import android.os.UserHandle;
Jeff Sharkeye2d45be2015-04-15 17:14:12 -070032import android.text.TextUtils;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080033import android.util.Printer;
Adam Lesinski4e862812016-11-21 16:02:24 -080034import android.util.SparseIntArray;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080035
Jeff Sharkey8a4c9722014-06-16 13:48:42 -070036import com.android.internal.util.ArrayUtils;
37
Jeff Sharkey9bc89af2017-01-11 11:25:50 -070038import java.lang.annotation.Retention;
39import java.lang.annotation.RetentionPolicy;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080040import java.text.Collator;
Jeff Sharkey8a4c9722014-06-16 13:48:42 -070041import java.util.Arrays;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080042import java.util.Comparator;
Jeff Sharkey8a4c9722014-06-16 13:48:42 -070043import java.util.Objects;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080044
45/**
46 * Information you can retrieve about a particular application. This
47 * corresponds to information collected from the AndroidManifest.xml's
48 * <application> tag.
49 */
50public class ApplicationInfo extends PackageItemInfo implements Parcelable {
51
52 /**
53 * Default task affinity of all activities in this application. See
54 * {@link ActivityInfo#taskAffinity} for more information. This comes
55 * from the "taskAffinity" attribute.
56 */
57 public String taskAffinity;
58
59 /**
60 * Optional name of a permission required to be able to access this
61 * application's components. From the "permission" attribute.
62 */
63 public String permission;
64
65 /**
66 * The name of the process this application should run in. From the
67 * "process" attribute or, if not set, the same as
68 * <var>packageName</var>.
69 */
70 public String processName;
71
72 /**
73 * Class implementing the Application object. From the "class"
74 * attribute.
75 */
76 public String className;
77
78 /**
79 * A style resource identifier (in the package's resources) of the
80 * description of an application. From the "description" attribute
81 * or, if not set, 0.
82 */
83 public int descriptionRes;
84
85 /**
86 * A style resource identifier (in the package's resources) of the
87 * default visual theme of the application. From the "theme" attribute
88 * or, if not set, 0.
89 */
90 public int theme;
91
92 /**
93 * Class implementing the Application's manage space
94 * functionality. From the "manageSpaceActivity"
95 * attribute. This is an optional attribute and will be null if
Christopher Tate181fafa2009-05-14 11:12:14 -070096 * applications don't specify it in their manifest
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080097 */
98 public String manageSpaceActivityName;
99
100 /**
Christopher Tate181fafa2009-05-14 11:12:14 -0700101 * Class implementing the Application's backup functionality. From
102 * the "backupAgent" attribute. This is an optional attribute and
103 * will be null if the application does not specify it in its manifest.
104 *
105 * <p>If android:allowBackup is set to false, this attribute is ignored.
Christopher Tate181fafa2009-05-14 11:12:14 -0700106 */
107 public String backupAgentName;
Christopher Tate4a627c72011-04-01 14:43:32 -0700108
109 /**
Matthew Williams303650c2015-04-17 18:22:51 -0700110 * An optional attribute that indicates the app supports automatic backup of app data.
111 * <p>0 is the default and means the app's entire data folder + managed external storage will
112 * be backed up;
113 * Any negative value indicates the app does not support full-data backup, though it may still
114 * want to participate via the traditional key/value backup API;
115 * A positive number specifies an xml resource in which the application has defined its backup
116 * include/exclude criteria.
117 * <p>If android:allowBackup is set to false, this attribute is ignored.
118 *
Jeff Sharkey8a372a02016-03-16 16:25:45 -0600119 * @see android.content.Context#getNoBackupFilesDir()
120 * @see #FLAG_ALLOW_BACKUP
Christopher Tate98fa6562015-05-14 13:20:10 -0700121 *
122 * @hide
Matthew Williams303650c2015-04-17 18:22:51 -0700123 */
124 public int fullBackupContent = 0;
125
126 /**
Adam Powell269248d2011-08-02 10:26:54 -0700127 * The default extra UI options for activities in this application.
128 * Set from the {@link android.R.attr#uiOptions} attribute in the
129 * activity's manifest.
130 */
131 public int uiOptions = 0;
132
133 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800134 * Value for {@link #flags}: if set, this application is installed in the
135 * device's system image.
136 */
137 public static final int FLAG_SYSTEM = 1<<0;
138
139 /**
140 * Value for {@link #flags}: set to true if this application would like to
141 * allow debugging of its
142 * code, even when installed on a non-development system. Comes
143 * from {@link android.R.styleable#AndroidManifestApplication_debuggable
144 * android:debuggable} of the &lt;application&gt; tag.
145 */
146 public static final int FLAG_DEBUGGABLE = 1<<1;
147
148 /**
149 * Value for {@link #flags}: set to true if this application has code
150 * associated with it. Comes
151 * from {@link android.R.styleable#AndroidManifestApplication_hasCode
152 * android:hasCode} of the &lt;application&gt; tag.
153 */
154 public static final int FLAG_HAS_CODE = 1<<2;
155
156 /**
157 * Value for {@link #flags}: set to true if this application is persistent.
158 * Comes from {@link android.R.styleable#AndroidManifestApplication_persistent
159 * android:persistent} of the &lt;application&gt; tag.
160 */
161 public static final int FLAG_PERSISTENT = 1<<3;
162
163 /**
Christopher Tate181fafa2009-05-14 11:12:14 -0700164 * Value for {@link #flags}: set to true if this application holds the
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800165 * {@link android.Manifest.permission#FACTORY_TEST} permission and the
166 * device is running in factory test mode.
167 */
168 public static final int FLAG_FACTORY_TEST = 1<<4;
169
170 /**
171 * Value for {@link #flags}: default value for the corresponding ActivityInfo flag.
172 * Comes from {@link android.R.styleable#AndroidManifestApplication_allowTaskReparenting
173 * android:allowTaskReparenting} of the &lt;application&gt; tag.
174 */
175 public static final int FLAG_ALLOW_TASK_REPARENTING = 1<<5;
176
177 /**
178 * Value for {@link #flags}: default value for the corresponding ActivityInfo flag.
179 * Comes from {@link android.R.styleable#AndroidManifestApplication_allowClearUserData
180 * android:allowClearUserData} of the &lt;application&gt; tag.
181 */
182 public static final int FLAG_ALLOW_CLEAR_USER_DATA = 1<<6;
183
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800184 /**
Dianne Hackborn851a5412009-05-08 12:06:44 -0700185 * Value for {@link #flags}: this is set if this application has been
Kweku Adams8de29ca2016-01-22 12:30:26 -0800186 * installed as an update to a built-in system application.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800187 */
188 public static final int FLAG_UPDATED_SYSTEM_APP = 1<<7;
Dianne Hackborn851a5412009-05-08 12:06:44 -0700189
190 /**
Svet Ganov354cd3c2015-12-17 11:35:04 -0800191 * Value for {@link #flags}: this is set if the application has specified
Dianne Hackborn7f205432009-07-28 00:13:47 -0700192 * {@link android.R.styleable#AndroidManifestApplication_testOnly
193 * android:testOnly} to be true.
Dianne Hackborn851a5412009-05-08 12:06:44 -0700194 */
Dianne Hackborna96cbb42009-05-13 15:06:13 -0700195 public static final int FLAG_TEST_ONLY = 1<<8;
Dianne Hackbornade3eca2009-05-11 18:54:45 -0700196
197 /**
Dianne Hackborn5c1e00b2009-06-18 17:10:57 -0700198 * Value for {@link #flags}: true when the application's window can be
Dianne Hackborn723738c2009-06-25 19:48:04 -0700199 * reduced in size for smaller screens. Corresponds to
200 * {@link android.R.styleable#AndroidManifestSupportsScreens_smallScreens
201 * android:smallScreens}.
Dianne Hackborn5c1e00b2009-06-18 17:10:57 -0700202 */
Dianne Hackborn723738c2009-06-25 19:48:04 -0700203 public static final int FLAG_SUPPORTS_SMALL_SCREENS = 1<<9;
204
205 /**
206 * Value for {@link #flags}: true when the application's window can be
207 * displayed on normal screens. Corresponds to
208 * {@link android.R.styleable#AndroidManifestSupportsScreens_normalScreens
209 * android:normalScreens}.
210 */
211 public static final int FLAG_SUPPORTS_NORMAL_SCREENS = 1<<10;
212
213 /**
214 * Value for {@link #flags}: true when the application's window can be
215 * increased in size for larger screens. Corresponds to
216 * {@link android.R.styleable#AndroidManifestSupportsScreens_largeScreens
Dianne Hackborn22ec9ab2010-04-29 17:56:03 -0700217 * android:largeScreens}.
Dianne Hackborn723738c2009-06-25 19:48:04 -0700218 */
219 public static final int FLAG_SUPPORTS_LARGE_SCREENS = 1<<11;
Dianne Hackborn5c1e00b2009-06-18 17:10:57 -0700220
221 /**
Dianne Hackbornc4db95c2009-07-21 17:46:02 -0700222 * Value for {@link #flags}: true when the application knows how to adjust
223 * its UI for different screen sizes. Corresponds to
224 * {@link android.R.styleable#AndroidManifestSupportsScreens_resizeable
225 * android:resizeable}.
226 */
227 public static final int FLAG_RESIZEABLE_FOR_SCREENS = 1<<12;
228
229 /**
Dianne Hackborn11b822d2009-07-21 20:03:02 -0700230 * Value for {@link #flags}: true when the application knows how to
231 * accomodate different screen densities. Corresponds to
232 * {@link android.R.styleable#AndroidManifestSupportsScreens_anyDensity
233 * android:anyDensity}.
234 */
235 public static final int FLAG_SUPPORTS_SCREEN_DENSITIES = 1<<13;
236
237 /**
Ben Cheng23085b72010-02-08 16:06:32 -0800238 * Value for {@link #flags}: set to true if this application would like to
239 * request the VM to operate under the safe mode. Comes from
Ben Chengef3f5dd2010-03-29 15:47:26 -0700240 * {@link android.R.styleable#AndroidManifestApplication_vmSafeMode
241 * android:vmSafeMode} of the &lt;application&gt; tag.
Ben Cheng23085b72010-02-08 16:06:32 -0800242 */
243 public static final int FLAG_VM_SAFE_MODE = 1<<14;
244
245 /**
Christopher Tate3de55bc2010-03-12 17:28:08 -0800246 * Value for {@link #flags}: set to <code>false</code> if the application does not wish
247 * to permit any OS-driven backups of its data; <code>true</code> otherwise.
Christopher Tate181fafa2009-05-14 11:12:14 -0700248 *
Christopher Tate3de55bc2010-03-12 17:28:08 -0800249 * <p>Comes from the
250 * {@link android.R.styleable#AndroidManifestApplication_allowBackup android:allowBackup}
251 * attribute of the &lt;application&gt; tag.
Christopher Tate181fafa2009-05-14 11:12:14 -0700252 */
Ben Cheng23085b72010-02-08 16:06:32 -0800253 public static final int FLAG_ALLOW_BACKUP = 1<<15;
Christopher Tate5e1ab332009-09-01 20:32:49 -0700254
255 /**
Christopher Tate3de55bc2010-03-12 17:28:08 -0800256 * Value for {@link #flags}: set to <code>false</code> if the application must be kept
257 * in memory following a full-system restore operation; <code>true</code> otherwise.
258 * Ordinarily, during a full system restore operation each application is shut down
259 * following execution of its agent's onRestore() method. Setting this attribute to
260 * <code>false</code> prevents this. Most applications will not need to set this attribute.
Christopher Tate5e1ab332009-09-01 20:32:49 -0700261 *
Christopher Tate3de55bc2010-03-12 17:28:08 -0800262 * <p>If
263 * {@link android.R.styleable#AndroidManifestApplication_allowBackup android:allowBackup}
264 * is set to <code>false</code> or no
265 * {@link android.R.styleable#AndroidManifestApplication_backupAgent android:backupAgent}
Christopher Tate5e1ab332009-09-01 20:32:49 -0700266 * is specified, this flag will be ignored.
267 *
Christopher Tate3de55bc2010-03-12 17:28:08 -0800268 * <p>Comes from the
269 * {@link android.R.styleable#AndroidManifestApplication_killAfterRestore android:killAfterRestore}
270 * attribute of the &lt;application&gt; tag.
Christopher Tate5e1ab332009-09-01 20:32:49 -0700271 */
Ben Cheng23085b72010-02-08 16:06:32 -0800272 public static final int FLAG_KILL_AFTER_RESTORE = 1<<16;
Christopher Tate5e1ab332009-09-01 20:32:49 -0700273
274 /**
Christopher Tate3de55bc2010-03-12 17:28:08 -0800275 * Value for {@link #flags}: Set to <code>true</code> if the application's backup
276 * agent claims to be able to handle restore data even "from the future,"
277 * i.e. from versions of the application with a versionCode greater than
278 * the one currently installed on the device. <i>Use with caution!</i> By default
279 * this attribute is <code>false</code> and the Backup Manager will ensure that data
280 * from "future" versions of the application are never supplied during a restore operation.
Christopher Tate5e1ab332009-09-01 20:32:49 -0700281 *
Christopher Tate3de55bc2010-03-12 17:28:08 -0800282 * <p>If
283 * {@link android.R.styleable#AndroidManifestApplication_allowBackup android:allowBackup}
284 * is set to <code>false</code> or no
285 * {@link android.R.styleable#AndroidManifestApplication_backupAgent android:backupAgent}
Christopher Tate5e1ab332009-09-01 20:32:49 -0700286 * is specified, this flag will be ignored.
287 *
Christopher Tate3de55bc2010-03-12 17:28:08 -0800288 * <p>Comes from the
289 * {@link android.R.styleable#AndroidManifestApplication_restoreAnyVersion android:restoreAnyVersion}
290 * attribute of the &lt;application&gt; tag.
Christopher Tate5e1ab332009-09-01 20:32:49 -0700291 */
Christopher Tate3de55bc2010-03-12 17:28:08 -0800292 public static final int FLAG_RESTORE_ANY_VERSION = 1<<17;
Christopher Tate5e1ab332009-09-01 20:32:49 -0700293
Christopher Tate181fafa2009-05-14 11:12:14 -0700294 /**
Dianne Hackborn3202d382010-04-26 17:51:34 -0700295 * Value for {@link #flags}: Set to true if the application is
296 * currently installed on external/removable/unprotected storage. Such
297 * applications may not be available if their storage is not currently
298 * mounted. When the storage it is on is not available, it will look like
299 * the application has been uninstalled (its .apk is no longer available)
300 * but its persistent data is not removed.
Suchi Amalapurapuaf8e9f42010-01-12 10:17:28 -0800301 */
Dianne Hackborn94c567e2010-04-26 18:13:10 -0700302 public static final int FLAG_EXTERNAL_STORAGE = 1<<18;
Suchi Amalapurapuaf8e9f42010-01-12 10:17:28 -0800303
304 /**
Dianne Hackborn14cee9f2010-04-23 17:51:26 -0700305 * Value for {@link #flags}: true when the application's window can be
306 * increased in size for extra large screens. Corresponds to
307 * {@link android.R.styleable#AndroidManifestSupportsScreens_xlargeScreens
Dianne Hackborn22ec9ab2010-04-29 17:56:03 -0700308 * android:xlargeScreens}.
Dianne Hackborn14cee9f2010-04-23 17:51:26 -0700309 */
310 public static final int FLAG_SUPPORTS_XLARGE_SCREENS = 1<<19;
311
312 /**
Dianne Hackborn3b81bc12011-01-15 11:50:52 -0800313 * Value for {@link #flags}: true when the application has requested a
314 * large heap for its processes. Corresponds to
315 * {@link android.R.styleable#AndroidManifestApplication_largeHeap
316 * android:largeHeap}.
Jason parksa3cdaa52011-01-13 14:15:43 -0600317 */
Dianne Hackborn3b81bc12011-01-15 11:50:52 -0800318 public static final int FLAG_LARGE_HEAP = 1<<20;
Jason parksa3cdaa52011-01-13 14:15:43 -0600319
320 /**
Dianne Hackborne7f97212011-02-24 14:40:20 -0800321 * Value for {@link #flags}: true if this application's package is in
322 * the stopped state.
323 */
324 public static final int FLAG_STOPPED = 1<<21;
325
326 /**
Fabrice Di Meglio59dfce82012-04-02 16:17:20 -0700327 * Value for {@link #flags}: true when the application is willing to support
328 * RTL (right to left). All activities will inherit this value.
329 *
330 * Set from the {@link android.R.attr#supportsRtl} attribute in the
331 * activity's manifest.
332 *
333 * Default value is false (no support for RTL).
334 */
335 public static final int FLAG_SUPPORTS_RTL = 1<<22;
336
337 /**
Dianne Hackborn7767eac2012-08-23 18:25:40 -0700338 * Value for {@link #flags}: true if the application is currently
339 * installed for the calling user.
340 */
341 public static final int FLAG_INSTALLED = 1<<23;
342
343 /**
Dianne Hackborn5e03e2c2012-09-06 14:21:19 -0700344 * Value for {@link #flags}: true if the application only has its
345 * data installed; the application package itself does not currently
346 * exist on the device.
347 */
348 public static final int FLAG_IS_DATA_ONLY = 1<<24;
349
350 /**
Jeff Sharkey9bc89af2017-01-11 11:25:50 -0700351 * Value for {@link #flags}: true if the application was declared to be a
352 * game, or false if it is a non-game application.
353 *
354 * @deprecated use {@link #CATEGORY_GAME} instead.
Jose Lima12d0b4c2014-03-14 16:55:12 -0700355 */
Jeff Sharkey9bc89af2017-01-11 11:25:50 -0700356 @Deprecated
Jose Lima12d0b4c2014-03-14 16:55:12 -0700357 public static final int FLAG_IS_GAME = 1<<25;
358
359 /**
Christopher Tated1de2562014-06-17 17:12:35 -0700360 * Value for {@link #flags}: {@code true} if the application asks that only
361 * full-data streaming backups of its data be performed even though it defines
362 * a {@link android.app.backup.BackupAgent BackupAgent}, which normally
363 * indicates that the app will manage its backed-up data via incremental
364 * key/value updates.
365 */
366 public static final int FLAG_FULL_BACKUP_ONLY = 1<<26;
367
368 /**
Alex Klyubin01a959d2015-03-18 10:05:45 -0700369 * Value for {@link #flags}: {@code true} if the application may use cleartext network traffic
370 * (e.g., HTTP rather than HTTPS; WebSockets rather than WebSockets Secure; XMPP, IMAP, STMP
371 * without STARTTLS or TLS). If {@code false}, the app declares that it does not intend to use
372 * cleartext network traffic, in which case platform components (e.g., HTTP stacks,
Alex Klyubinfbf45992015-04-21 13:44:29 -0700373 * {@code DownloadManager}, {@code MediaPlayer}) will refuse app's requests to use cleartext
374 * traffic. Third-party libraries are encouraged to honor this flag as well.
375 *
376 * <p>NOTE: {@code WebView} does not honor this flag.
377 *
Chad Brubaker2df5ba72016-04-11 13:31:24 -0700378 * <p>This flag is ignored on Android N and above if an Android Network Security Config is
379 * present.
380 *
Alex Klyubinfbf45992015-04-21 13:44:29 -0700381 * <p>This flag comes from
382 * {@link android.R.styleable#AndroidManifestApplication_usesCleartextTraffic
383 * android:usesCleartextTraffic} of the &lt;application&gt; tag.
Alex Klyubin01a959d2015-03-18 10:05:45 -0700384 */
385 public static final int FLAG_USES_CLEARTEXT_TRAFFIC = 1<<27;
386
387 /**
Dmitriy Ivanovff193d62014-09-30 15:10:48 -0700388 * When set installer extracts native libs from .apk files.
389 */
390 public static final int FLAG_EXTRACT_NATIVE_LIBS = 1<<28;
391
392 /**
Alan Viveretted70b9e72015-05-27 14:29:20 -0700393 * Value for {@link #flags}: {@code true} when the application's rendering
394 * should be hardware accelerated.
395 */
396 public static final int FLAG_HARDWARE_ACCELERATED = 1<<29;
397
398 /**
Andrei Stingaceanu1e283912015-11-26 15:26:28 +0000399 * Value for {@link #flags}: true if this application's package is in
400 * the suspended state.
401 */
402 public static final int FLAG_SUSPENDED = 1<<30;
403
404 /**
Narayan Kamath589a1bc2014-07-03 14:43:26 +0100405 * Value for {@link #flags}: true if code from this application will need to be
406 * loaded into other applications' processes. On devices that support multiple
407 * instruction sets, this implies the code might be loaded into a process that's
408 * using any of the devices supported instruction sets.
409 *
410 * <p> The system might treat such applications specially, for eg., by
411 * extracting the application's native libraries for all supported instruction
412 * sets or by compiling the application's dex code for all supported instruction
413 * sets.
414 */
415 public static final int FLAG_MULTIARCH = 1 << 31;
Amith Yamasani655d0e22013-06-12 14:19:10 -0700416
417 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800418 * Flags associated with the application. Any combination of
419 * {@link #FLAG_SYSTEM}, {@link #FLAG_DEBUGGABLE}, {@link #FLAG_HAS_CODE},
420 * {@link #FLAG_PERSISTENT}, {@link #FLAG_FACTORY_TEST}, and
421 * {@link #FLAG_ALLOW_TASK_REPARENTING}
Dianne Hackborn851a5412009-05-08 12:06:44 -0700422 * {@link #FLAG_ALLOW_CLEAR_USER_DATA}, {@link #FLAG_UPDATED_SYSTEM_APP},
Dianne Hackborn723738c2009-06-25 19:48:04 -0700423 * {@link #FLAG_TEST_ONLY}, {@link #FLAG_SUPPORTS_SMALL_SCREENS},
424 * {@link #FLAG_SUPPORTS_NORMAL_SCREENS},
Dianne Hackborn14cee9f2010-04-23 17:51:26 -0700425 * {@link #FLAG_SUPPORTS_LARGE_SCREENS}, {@link #FLAG_SUPPORTS_XLARGE_SCREENS},
426 * {@link #FLAG_RESIZEABLE_FOR_SCREENS},
Dianne Hackborn7767eac2012-08-23 18:25:40 -0700427 * {@link #FLAG_SUPPORTS_SCREEN_DENSITIES}, {@link #FLAG_VM_SAFE_MODE},
Alex Klyubinb9f8a522015-02-03 11:12:59 -0800428 * {@link #FLAG_ALLOW_BACKUP}, {@link #FLAG_KILL_AFTER_RESTORE},
429 * {@link #FLAG_RESTORE_ANY_VERSION}, {@link #FLAG_EXTERNAL_STORAGE},
430 * {@link #FLAG_LARGE_HEAP}, {@link #FLAG_STOPPED},
431 * {@link #FLAG_SUPPORTS_RTL}, {@link #FLAG_INSTALLED},
432 * {@link #FLAG_IS_DATA_ONLY}, {@link #FLAG_IS_GAME},
Alex Klyubin7cb000f2015-03-26 11:00:04 -0700433 * {@link #FLAG_FULL_BACKUP_ONLY}, {@link #FLAG_USES_CLEARTEXT_TRAFFIC},
434 * {@link #FLAG_MULTIARCH}.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800435 */
436 public int flags = 0;
Amith Yamasani655d0e22013-06-12 14:19:10 -0700437
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800438 /**
Alex Klyubinb9f8a522015-02-03 11:12:59 -0800439 * Value for {@link #privateFlags}: true if the application is hidden via restrictions and for
440 * most purposes is considered as not installed.
441 * {@hide}
442 */
443 public static final int PRIVATE_FLAG_HIDDEN = 1<<0;
444
445 /**
446 * Value for {@link #privateFlags}: set to <code>true</code> if the application
447 * has reported that it is heavy-weight, and thus can not participate in
448 * the normal application lifecycle.
449 *
450 * <p>Comes from the
451 * android.R.styleable#AndroidManifestApplication_cantSaveState
452 * attribute of the &lt;application&gt; tag.
453 *
454 * {@hide}
455 */
456 public static final int PRIVATE_FLAG_CANT_SAVE_STATE = 1<<1;
457
458 /**
459 * Value for {@link #privateFlags}: Set to true if the application has been
460 * installed using the forward lock option.
461 *
462 * NOTE: DO NOT CHANGE THIS VALUE! It is saved in packages.xml.
463 *
464 * {@hide}
465 */
466 public static final int PRIVATE_FLAG_FORWARD_LOCK = 1<<2;
467
468 /**
469 * Value for {@link #privateFlags}: set to {@code true} if the application
470 * is permitted to hold privileged permissions.
471 *
472 * {@hide}
473 */
474 public static final int PRIVATE_FLAG_PRIVILEGED = 1<<3;
475
476 /**
Svet Ganov2acf0632015-11-24 19:10:59 -0800477 * Value for {@link #privateFlags}: {@code true} if the application has any IntentFiler
478 * with some data URI using HTTP or HTTPS with an associated VIEW action.
Fabrice Di Megliod3d8a322015-04-01 15:58:47 -0700479 *
480 * {@hide}
481 */
482 public static final int PRIVATE_FLAG_HAS_DOMAIN_URLS = 1<<4;
483
484 /**
Jeff Sharkey8a372a02016-03-16 16:25:45 -0600485 * When set, the default data storage directory for this app is pointed at
486 * the device-protected location.
Jeff Sharkey15447792015-11-05 16:18:51 -0800487 *
488 * @hide
489 */
Jeff Sharkey8a372a02016-03-16 16:25:45 -0600490 public static final int PRIVATE_FLAG_DEFAULT_TO_DEVICE_PROTECTED_STORAGE = 1 << 5;
Jeff Sharkey15447792015-11-05 16:18:51 -0800491
492 /**
Jeff Sharkey8a372a02016-03-16 16:25:45 -0600493 * When set, assume that all components under the given app are direct boot
Jeff Sharkeyf9fc6d62015-11-08 16:46:05 -0800494 * aware, unless otherwise specified.
495 *
496 * @hide
497 */
Jeff Sharkey8a372a02016-03-16 16:25:45 -0600498 public static final int PRIVATE_FLAG_DIRECT_BOOT_AWARE = 1 << 6;
Jeff Sharkeyf9fc6d62015-11-08 16:46:05 -0800499
500 /**
Chad Brubaker4389c232016-11-04 14:50:50 -0700501 * Value for {@link #flags}: {@code true} if the application is blocked via restrictions
502 * and for most purposes is considered as not installed.
503 * {@hide}
504 */
505 public static final int PRIVATE_FLAG_EPHEMERAL = 1 << 7;
506
507 /**
Jeff Sharkey8a372a02016-03-16 16:25:45 -0600508 * When set, at least one component inside this application is direct boot
509 * aware.
Jeff Sharkey8924e872015-11-30 12:52:10 -0700510 *
511 * @hide
512 */
Jeff Sharkey8a372a02016-03-16 16:25:45 -0600513 public static final int PRIVATE_FLAG_PARTIALLY_DIRECT_BOOT_AWARE = 1 << 8;
Jeff Sharkey8924e872015-11-30 12:52:10 -0700514
Fyodor Kupolovf99104d2015-12-14 11:31:29 -0800515
516 /**
Fyodor Kupolovbdbc9692015-12-14 13:11:13 -0800517 * When set, signals that the application is required for the system user and should not be
518 * uninstalled.
519 *
520 * @hide
521 */
Chad Brubaker4389c232016-11-04 14:50:50 -0700522 public static final int PRIVATE_FLAG_REQUIRED_FOR_SYSTEM_USER = 1 << 9;
Fyodor Kupolovbdbc9692015-12-14 13:11:13 -0800523
524 /**
Wale Ogunwale72a73e32016-10-13 12:16:39 -0700525 * When set, the application explicitly requested that its activities by resizeable by default.
Wale Ogunwale6afdf912016-01-30 13:01:33 -0800526 * @see android.R.styleable#AndroidManifestActivity_resizeableActivity
527 *
528 * @hide
529 */
Chad Brubaker4389c232016-11-04 14:50:50 -0700530 public static final int PRIVATE_FLAG_RESIZEABLE_ACTIVITIES_EXPLICITLY_SET = 1 << 10;
Wale Ogunwale72a73e32016-10-13 12:16:39 -0700531
532 /**
533 * The application isn't requesting explicitly requesting for its activities to be resizeable or
534 * non-resizeable by default. So, we are making it activities resizeable by default based on the
535 * target SDK version of the app.
536 * @see android.R.styleable#AndroidManifestActivity_resizeableActivity
537 *
538 * NOTE: This only affects apps with target SDK >= N where the resizeableActivity attribute was
539 * introduced. It shouldn't be confused with {@link ActivityInfo#RESIZE_MODE_FORCE_RESIZEABLE}
540 * where certain pre-N apps are forced to the resizeable.
541 *
542 * @hide
543 */
Chad Brubaker4389c232016-11-04 14:50:50 -0700544 public static final int PRIVATE_FLAG_RESIZEABLE_ACTIVITIES_VIA_SDK_VERSION = 1 << 11;
Wale Ogunwale6afdf912016-01-30 13:01:33 -0800545
546 /**
Christopher Tate43fbc5f2016-02-17 18:00:48 -0800547 * Value for {@link #privateFlags}: {@code true} means the OS should go ahead and
548 * run full-data backup operations for the app even when it is in a
549 * foreground-equivalent run state. Defaults to {@code false} if unspecified.
550 * @hide
551 */
Chad Brubaker4389c232016-11-04 14:50:50 -0700552 public static final int PRIVATE_FLAG_BACKUP_IN_FOREGROUND = 1 << 12;
Christopher Tate43fbc5f2016-02-17 18:00:48 -0800553
554 /**
Svet Ganov67882122016-12-11 16:36:34 -0800555 * Value for {@link #privateFlags}: {@code true} means this application
556 * contains a static shared library. Defaults to {@code false} if unspecified.
557 * @hide
558 */
559 public static final int PRIVATE_FLAG_STATIC_SHARED_LIBRARY = 1 << 13;
560
561 /**
Adam Lesinski4e862812016-11-21 16:02:24 -0800562 * Value for {@linl #privateFlags}: When set, the application will only have its splits loaded
563 * if they are required to load a component. Splits can be loaded on demand using the
564 * {@link Context#createContextForSplit(String)} API.
565 * @hide
566 */
567 public static final int PRIVATE_FLAG_ISOLATED_SPLIT_LOADING = 1 << 14;
568
569 /**
Alex Klyubinb9f8a522015-02-03 11:12:59 -0800570 * Private/hidden flags. See {@code PRIVATE_FLAG_...} constants.
571 * {@hide}
572 */
573 public int privateFlags;
574
575 /**
Dianne Hackborndf6e9802011-05-26 14:20:23 -0700576 * The required smallest screen width the application can run on. If 0,
577 * nothing has been specified. Comes from
578 * {@link android.R.styleable#AndroidManifestSupportsScreens_requiresSmallestWidthDp
579 * android:requiresSmallestWidthDp} attribute of the &lt;supports-screens&gt; tag.
580 */
581 public int requiresSmallestWidthDp = 0;
582
583 /**
584 * The maximum smallest screen width the application is designed for. If 0,
585 * nothing has been specified. Comes from
586 * {@link android.R.styleable#AndroidManifestSupportsScreens_compatibleWidthLimitDp
587 * android:compatibleWidthLimitDp} attribute of the &lt;supports-screens&gt; tag.
588 */
589 public int compatibleWidthLimitDp = 0;
590
591 /**
Dianne Hackborn2762ff32011-06-01 21:27:05 -0700592 * The maximum smallest screen width the application will work on. If 0,
593 * nothing has been specified. Comes from
594 * {@link android.R.styleable#AndroidManifestSupportsScreens_largestWidthLimitDp
595 * android:largestWidthLimitDp} attribute of the &lt;supports-screens&gt; tag.
596 */
597 public int largestWidthLimitDp = 0;
598
Jeff Sharkey61128602017-01-26 17:07:35 -0700599 /**
600 * UUID of the storage volume on which this application is being hosted. For
601 * apps hosted on the default internal storage at
602 * {@link Environment#getDataDirectory()}, the UUID value is {@code null}.
603 */
Jeff Sharkeyb2b9ab82015-04-05 21:10:42 -0700604 public String volumeUuid;
Jeff Sharkey61128602017-01-26 17:07:35 -0700605
Jeff Sharkeyb2b9ab82015-04-05 21:10:42 -0700606 /** {@hide} */
Jeff Sharkeyd7460572014-07-06 20:44:55 -0700607 public String scanSourceDir;
608 /** {@hide} */
609 public String scanPublicSourceDir;
610
Dianne Hackborn2762ff32011-06-01 21:27:05 -0700611 /**
Jeff Sharkey8a4c9722014-06-16 13:48:42 -0700612 * Full path to the base APK for this application.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800613 */
614 public String sourceDir;
615
616 /**
Jeff Sharkey8a4c9722014-06-16 13:48:42 -0700617 * Full path to the publicly available parts of {@link #sourceDir},
618 * including resources and manifest. This may be different from
619 * {@link #sourceDir} if an application is forward locked.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800620 */
621 public String publicSourceDir;
Jeff Sharkey8a4c9722014-06-16 13:48:42 -0700622
623 /**
Adam Lesinski4e862812016-11-21 16:02:24 -0800624 * The names of all installed split APKs, ordered lexicographically.
625 */
626 public String[] splitNames;
627
628 /**
629 * Full paths to zero or more split APKs, indexed by the same order as {@link #splitNames}.
Jeff Sharkey8a4c9722014-06-16 13:48:42 -0700630 */
631 public String[] splitSourceDirs;
632
633 /**
634 * Full path to the publicly available parts of {@link #splitSourceDirs},
635 * including resources and manifest. This may be different from
636 * {@link #splitSourceDirs} if an application is forward locked.
Adam Lesinski4e862812016-11-21 16:02:24 -0800637 *
638 * @see #splitSourceDirs
Jeff Sharkey8a4c9722014-06-16 13:48:42 -0700639 */
640 public String[] splitPublicSourceDirs;
641
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800642 /**
Adam Lesinski4e862812016-11-21 16:02:24 -0800643 * Maps the dependencies between split APKs. All splits implicitly depend on the base APK.
644 *
645 * Available since platform version O.
646 *
647 * Only populated if the application opts in to isolated split loading via the
648 * {@link android.R.attr.isolatedSplits} attribute in the &lt;manifest&gt; tag of the app's
649 * AndroidManifest.xml.
650 *
651 * The keys and values are all indices into the {@link #splitNames}, {@link #splitSourceDirs},
652 * and {@link #splitPublicSourceDirs} arrays.
653 * Each key represents a split and its value is its parent split.
654 * Cycles do not exist because they are illegal and screened for during installation.
655 *
656 * May be null if no splits are installed, or if no dependencies exist between them.
657 * @hide
658 */
659 public SparseIntArray splitDependencies;
660
661 /**
662 * Full paths to the locations of extra resource packages (runtime overlays)
663 * this application uses. This field is only used if there are extra resource
664 * packages, otherwise it is null.
665 *
Kenny Rootace5a3f2010-02-05 12:59:28 -0800666 * {@hide}
Kenny Rootd1ab0162010-01-21 17:27:14 -0800667 */
668 public String[] resourceDirs;
669
670 /**
Robert Craig0f40dc92013-03-25 06:33:03 -0400671 * String retrieved from the seinfo tag found in selinux policy. This value
Robert Craig5e16bc52015-08-28 12:11:41 -0400672 * can be overridden with a value set through the mac_permissions.xml policy
673 * construct. This value is useful in setting an SELinux security context on
674 * the process as well as its data directory. The String default is being used
675 * here to represent a catchall label when no policy matches.
Robert Craig0f40dc92013-03-25 06:33:03 -0400676 *
677 * {@hide}
678 */
Robert Craig5e16bc52015-08-28 12:11:41 -0400679 public String seinfo = "default";
Robert Craig0f40dc92013-03-25 06:33:03 -0400680
681 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800682 * Paths to all shared libraries this application is linked against. This
683 * field is only set if the {@link PackageManager#GET_SHARED_LIBRARY_FILES
684 * PackageManager.GET_SHARED_LIBRARY_FILES} flag was used when retrieving
685 * the structure.
686 */
687 public String[] sharedLibraryFiles;
688
689 /**
Jeff Sharkey7a30a302015-12-08 14:20:06 -0700690 * Full path to the default directory assigned to the package for its
691 * persistent data.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800692 */
693 public String dataDir;
Kenny Root85387d72010-08-26 10:13:11 -0700694
Jeff Sharkey7a30a302015-12-08 14:20:06 -0700695 /**
Jeff Sharkey8a372a02016-03-16 16:25:45 -0600696 * Full path to the device-protected directory assigned to the package for
Jeff Sharkey7a30a302015-12-08 14:20:06 -0700697 * its persistent data.
Jeff Sharkey8a372a02016-03-16 16:25:45 -0600698 *
699 * @see Context#createDeviceProtectedStorageContext()
Jeff Sharkey7a30a302015-12-08 14:20:06 -0700700 */
Jeff Sharkey8a372a02016-03-16 16:25:45 -0600701 public String deviceProtectedDataDir;
702
703 /** @removed */
704 @Deprecated
Jeff Sharkey15447792015-11-05 16:18:51 -0800705 public String deviceEncryptedDataDir;
Jeff Sharkey7a30a302015-12-08 14:20:06 -0700706
707 /**
Jeff Sharkey8a372a02016-03-16 16:25:45 -0600708 * Full path to the credential-protected directory assigned to the package
Jeff Sharkey7a30a302015-12-08 14:20:06 -0700709 * for its persistent data.
Jeff Sharkey8a372a02016-03-16 16:25:45 -0600710 *
711 * @hide
Jeff Sharkey7a30a302015-12-08 14:20:06 -0700712 */
Jeff Sharkey8a372a02016-03-16 16:25:45 -0600713 @SystemApi
714 public String credentialProtectedDataDir;
715
716 /** @removed */
717 @Deprecated
Jeff Sharkey15447792015-11-05 16:18:51 -0800718 public String credentialEncryptedDataDir;
719
Kenny Root85387d72010-08-26 10:13:11 -0700720 /**
721 * Full path to the directory where native JNI libraries are stored.
Kenny Root85387d72010-08-26 10:13:11 -0700722 */
723 public String nativeLibraryDir;
724
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800725 /**
Narayan Kamath7dba6eb2014-07-16 08:53:30 +0100726 * Full path where unpacked native libraries for {@link #secondaryCpuAbi}
727 * are stored, if present.
728 *
729 * The main reason this exists is for bundled multi-arch apps, where
730 * it's not trivial to calculate the location of libs for the secondary abi
731 * given the location of the primary.
732 *
733 * TODO: Change the layout of bundled installs so that we can use
734 * nativeLibraryRootDir & nativeLibraryRootRequiresIsa there as well.
735 * (e.g {@code [ "/system/app-lib/Foo/arm", "/system/app-lib/Foo/arm64" ]}
736 * instead of {@code [ "/system/lib/Foo", "/system/lib64/Foo" ]}.
737 *
738 * @hide
739 */
740 public String secondaryNativeLibraryDir;
741
742 /**
Jeff Sharkey84f12942014-07-10 17:48:11 -0700743 * The root path where unpacked native libraries are stored.
744 * <p>
745 * When {@link #nativeLibraryRootRequiresIsa} is set, the libraries are
746 * placed in ISA-specific subdirectories under this path, otherwise the
747 * libraries are placed directly at this path.
Narayan Kamathff110bd2014-07-04 18:30:45 +0100748 *
Jeff Sharkey84f12942014-07-10 17:48:11 -0700749 * @hide
Narayan Kamathff110bd2014-07-04 18:30:45 +0100750 */
Jeff Sharkey84f12942014-07-10 17:48:11 -0700751 public String nativeLibraryRootDir;
752
753 /**
754 * Flag indicating that ISA must be appended to
755 * {@link #nativeLibraryRootDir} to be useful.
756 *
757 * @hide
758 */
759 public boolean nativeLibraryRootRequiresIsa;
Narayan Kamathff110bd2014-07-04 18:30:45 +0100760
761 /**
762 * The primary ABI that this application requires, This is inferred from the ABIs
Ramin Zaghiff0c4702014-04-01 15:02:29 +0100763 * of the native JNI libraries the application bundles. Will be {@code null}
764 * if this application does not require any particular ABI.
765 *
Narayan Kamathff110bd2014-07-04 18:30:45 +0100766 * If non-null, the application will always be launched with this ABI.
767 *
Ramin Zaghiff0c4702014-04-01 15:02:29 +0100768 * {@hide}
769 */
Narayan Kamathff110bd2014-07-04 18:30:45 +0100770 public String primaryCpuAbi;
771
772 /**
773 * The secondary ABI for this application. Might be non-null for multi-arch
774 * installs. The application itself never uses this ABI, but other applications that
775 * use its code might.
776 *
777 * {@hide}
778 */
779 public String secondaryCpuAbi;
780
781 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800782 * The kernel user-ID that has been assigned to this application;
783 * currently this is not a unique ID (multiple applications can have
784 * the same uid).
785 */
786 public int uid;
787
Mitsuru Oshima8d112672009-04-27 12:01:23 -0700788 /**
Todd Kennedy89d60182016-03-11 11:18:32 -0800789 * The minimum SDK version this application can run on. It will not run
790 * on earlier versions.
791 */
Todd Kennedy6e2e7f52016-05-02 14:56:45 -0700792 public int minSdkVersion;
Todd Kennedy89d60182016-03-11 11:18:32 -0800793
794 /**
Dianne Hackborn3b3e1452009-09-24 19:22:12 -0700795 * The minimum SDK version this application targets. It may run on earlier
Dianne Hackborna96cbb42009-05-13 15:06:13 -0700796 * versions, but it knows how to work with any new behavior added at this
797 * version. Will be {@link android.os.Build.VERSION_CODES#CUR_DEVELOPMENT}
798 * if this is a development build and the app is targeting that. You should
799 * compare that this number is >= the SDK version number at which your
800 * behavior was introduced.
801 */
802 public int targetSdkVersion;
Dianne Hackborn8472e612014-01-23 17:57:20 -0800803
804 /**
805 * The app's declared version code.
806 * @hide
807 */
808 public int versionCode;
809
Dianne Hackborna96cbb42009-05-13 15:06:13 -0700810 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800811 * When false, indicates that all components within this application are
812 * considered disabled, regardless of their individually set enabled status.
813 */
814 public boolean enabled = true;
815
Dianne Hackborn54e570f2010-10-04 18:32:32 -0700816 /**
Dianne Hackborn0ac30312011-06-17 14:49:23 -0700817 * For convenient access to the current enabled setting of this app.
818 * @hide
819 */
820 public int enabledSetting = PackageManager.COMPONENT_ENABLED_STATE_DEFAULT;
821
822 /**
Dianne Hackborn54e570f2010-10-04 18:32:32 -0700823 * For convenient access to package's install location.
824 * @hide
825 */
826 public int installLocation = PackageInfo.INSTALL_LOCATION_UNSPECIFIED;
Jose Lima12d0b4c2014-03-14 16:55:12 -0700827
Chad Brubakerc845b2a2016-05-13 14:09:27 -0700828 /**
829 * Resource file providing the application's Network Security Config.
830 * @hide
831 */
832 public int networkSecurityConfigRes;
833
Jeff Sharkey9bc89af2017-01-11 11:25:50 -0700834 /**
835 * The category of this app. Categories are used to cluster multiple apps
836 * together into meaningful groups, such as when summarizing battery,
837 * network, or disk usage. Apps should only define this value when they fit
838 * well into one of the specific categories.
839 * <p>
840 * Set from the {@link android.R.attr#appCategory} attribute in the
841 * manifest. If the manifest doesn't define a category, this value may have
842 * been provided by the installer via
843 * {@link PackageManager#setApplicationCategoryHint(String, int)}.
844 */
845 public @Category int category = CATEGORY_UNDEFINED;
846
847 /** {@hide} */
848 @IntDef({
849 CATEGORY_UNDEFINED,
850 CATEGORY_GAME,
851 CATEGORY_AUDIO,
852 CATEGORY_VIDEO,
853 CATEGORY_IMAGE,
854 CATEGORY_SOCIAL,
855 CATEGORY_NEWS,
856 CATEGORY_MAPS,
857 CATEGORY_PRODUCTIVITY
858 })
859 @Retention(RetentionPolicy.SOURCE)
860 public @interface Category {
861 }
862
863 /**
864 * Value when category is undefined.
865 *
866 * @see #category
867 */
868 public static final int CATEGORY_UNDEFINED = -1;
869
870 /**
871 * Category for apps which are primarily games.
872 *
873 * @see #category
874 */
875 public static final int CATEGORY_GAME = 0;
876
877 /**
878 * Category for apps which primarily work with audio or music, such as music
879 * players.
880 *
881 * @see #category
882 */
883 public static final int CATEGORY_AUDIO = 1;
884
885 /**
886 * Category for apps which primarily work with video or movies, such as
887 * streaming video apps.
888 *
889 * @see #category
890 */
891 public static final int CATEGORY_VIDEO = 2;
892
893 /**
894 * Category for apps which primarily work with images or photos, such as
895 * camera or gallery apps.
896 *
897 * @see #category
898 */
899 public static final int CATEGORY_IMAGE = 3;
900
901 /**
902 * Category for apps which are primarily social apps, such as messaging,
903 * communication, or social network apps.
904 *
905 * @see #category
906 */
907 public static final int CATEGORY_SOCIAL = 4;
908
909 /**
910 * Category for apps which are primarily news apps, such as newspapers,
911 * magazines, or sports apps.
912 *
913 * @see #category
914 */
915 public static final int CATEGORY_NEWS = 5;
916
917 /**
918 * Category for apps which are primarily maps apps, such as navigation apps.
919 *
920 * @see #category
921 */
922 public static final int CATEGORY_MAPS = 6;
923
924 /**
925 * Category for apps which are primarily productivity apps, such as cloud
926 * storage or workplace apps.
927 *
928 * @see #category
929 */
930 public static final int CATEGORY_PRODUCTIVITY = 7;
931
932 /**
933 * Return a concise, localized title for the given
934 * {@link ApplicationInfo#category} value, or {@code null} for unknown
935 * values such as {@link #CATEGORY_UNDEFINED}.
936 *
937 * @see #category
938 */
939 public static CharSequence getCategoryTitle(Context context, @Category int category) {
940 switch (category) {
941 case ApplicationInfo.CATEGORY_GAME:
942 return context.getText(com.android.internal.R.string.app_category_game);
943 case ApplicationInfo.CATEGORY_AUDIO:
944 return context.getText(com.android.internal.R.string.app_category_audio);
945 case ApplicationInfo.CATEGORY_VIDEO:
946 return context.getText(com.android.internal.R.string.app_category_video);
947 case ApplicationInfo.CATEGORY_IMAGE:
948 return context.getText(com.android.internal.R.string.app_category_image);
949 case ApplicationInfo.CATEGORY_SOCIAL:
950 return context.getText(com.android.internal.R.string.app_category_social);
951 case ApplicationInfo.CATEGORY_NEWS:
952 return context.getText(com.android.internal.R.string.app_category_news);
953 case ApplicationInfo.CATEGORY_MAPS:
954 return context.getText(com.android.internal.R.string.app_category_maps);
955 case ApplicationInfo.CATEGORY_PRODUCTIVITY:
956 return context.getText(com.android.internal.R.string.app_category_productivity);
957 default:
958 return null;
959 }
960 }
961
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800962 public void dump(Printer pw, String prefix) {
Dianne Hackborn6ac42ae2015-12-08 17:22:10 -0800963 dump(pw, prefix, DUMP_FLAG_ALL);
964 }
965
966 /** @hide */
967 public void dump(Printer pw, String prefix, int flags) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800968 super.dumpFront(pw, prefix);
Dianne Hackborn6ac42ae2015-12-08 17:22:10 -0800969 if ((flags&DUMP_FLAG_DETAILS) != 0 && className != null) {
Dianne Hackborn12527f92009-11-11 17:39:50 -0800970 pw.println(prefix + "className=" + className);
971 }
972 if (permission != null) {
973 pw.println(prefix + "permission=" + permission);
974 }
Dianne Hackborn39792d22010-08-19 18:01:52 -0700975 pw.println(prefix + "processName=" + processName);
Dianne Hackborn6ac42ae2015-12-08 17:22:10 -0800976 if ((flags&DUMP_FLAG_DETAILS) != 0) {
977 pw.println(prefix + "taskAffinity=" + taskAffinity);
978 }
Dianne Hackborn39792d22010-08-19 18:01:52 -0700979 pw.println(prefix + "uid=" + uid + " flags=0x" + Integer.toHexString(flags)
Alex Klyubinb9f8a522015-02-03 11:12:59 -0800980 + " privateFlags=0x" + Integer.toHexString(privateFlags)
Dianne Hackborn39792d22010-08-19 18:01:52 -0700981 + " theme=0x" + Integer.toHexString(theme));
Dianne Hackborn6ac42ae2015-12-08 17:22:10 -0800982 if ((flags&DUMP_FLAG_DETAILS) != 0) {
983 pw.println(prefix + "requiresSmallestWidthDp=" + requiresSmallestWidthDp
984 + " compatibleWidthLimitDp=" + compatibleWidthLimitDp
985 + " largestWidthLimitDp=" + largestWidthLimitDp);
986 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800987 pw.println(prefix + "sourceDir=" + sourceDir);
Jeff Sharkey8a4c9722014-06-16 13:48:42 -0700988 if (!Objects.equals(sourceDir, publicSourceDir)) {
Dianne Hackborn39792d22010-08-19 18:01:52 -0700989 pw.println(prefix + "publicSourceDir=" + publicSourceDir);
990 }
Jeff Sharkey8a4c9722014-06-16 13:48:42 -0700991 if (!ArrayUtils.isEmpty(splitSourceDirs)) {
992 pw.println(prefix + "splitSourceDirs=" + Arrays.toString(splitSourceDirs));
993 }
994 if (!ArrayUtils.isEmpty(splitPublicSourceDirs)
995 && !Arrays.equals(splitSourceDirs, splitPublicSourceDirs)) {
996 pw.println(prefix + "splitPublicSourceDirs=" + Arrays.toString(splitPublicSourceDirs));
997 }
Dianne Hackborn39792d22010-08-19 18:01:52 -0700998 if (resourceDirs != null) {
Andreas Gampee6748ce2015-12-11 18:00:38 -0800999 pw.println(prefix + "resourceDirs=" + Arrays.toString(resourceDirs));
Dianne Hackborn39792d22010-08-19 18:01:52 -07001000 }
Dianne Hackborn6ac42ae2015-12-08 17:22:10 -08001001 if ((flags&DUMP_FLAG_DETAILS) != 0 && seinfo != null) {
Robert Craig0f40dc92013-03-25 06:33:03 -04001002 pw.println(prefix + "seinfo=" + seinfo);
1003 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001004 pw.println(prefix + "dataDir=" + dataDir);
Dianne Hackborn6ac42ae2015-12-08 17:22:10 -08001005 if ((flags&DUMP_FLAG_DETAILS) != 0) {
Jeff Sharkey8a372a02016-03-16 16:25:45 -06001006 pw.println(prefix + "deviceProtectedDataDir=" + deviceProtectedDataDir);
1007 pw.println(prefix + "credentialProtectedDataDir=" + credentialProtectedDataDir);
Dianne Hackborn6ac42ae2015-12-08 17:22:10 -08001008 if (sharedLibraryFiles != null) {
1009 pw.println(prefix + "sharedLibraryFiles=" + Arrays.toString(sharedLibraryFiles));
1010 }
Dianne Hackborn12527f92009-11-11 17:39:50 -08001011 }
Todd Kennedy89d60182016-03-11 11:18:32 -08001012 pw.println(prefix + "enabled=" + enabled
1013 + " minSdkVersion=" + minSdkVersion
1014 + " targetSdkVersion=" + targetSdkVersion
Dianne Hackborn8472e612014-01-23 17:57:20 -08001015 + " versionCode=" + versionCode);
Dianne Hackborn6ac42ae2015-12-08 17:22:10 -08001016 if ((flags&DUMP_FLAG_DETAILS) != 0) {
1017 if (manageSpaceActivityName != null) {
1018 pw.println(prefix + "manageSpaceActivityName=" + manageSpaceActivityName);
1019 }
1020 if (descriptionRes != 0) {
1021 pw.println(prefix + "description=0x" + Integer.toHexString(descriptionRes));
1022 }
1023 if (uiOptions != 0) {
1024 pw.println(prefix + "uiOptions=0x" + Integer.toHexString(uiOptions));
1025 }
1026 pw.println(prefix + "supportsRtl=" + (hasRtlSupport() ? "true" : "false"));
1027 if (fullBackupContent > 0) {
1028 pw.println(prefix + "fullBackupContent=@xml/" + fullBackupContent);
1029 } else {
1030 pw.println(prefix + "fullBackupContent="
1031 + (fullBackupContent < 0 ? "false" : "true"));
1032 }
Chad Brubakerc845b2a2016-05-13 14:09:27 -07001033 if (networkSecurityConfigRes != 0) {
1034 pw.println(prefix + "networkSecurityConfigRes=0x"
1035 + Integer.toHexString(networkSecurityConfigRes));
1036 }
Jeff Sharkey9bc89af2017-01-11 11:25:50 -07001037 if (category != CATEGORY_UNDEFINED) {
1038 pw.println(prefix + "category=" + category);
1039 }
Matthew Williams303650c2015-04-17 18:22:51 -07001040 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001041 super.dumpBack(pw, prefix);
1042 }
Fabrice Di Meglio59dfce82012-04-02 16:17:20 -07001043
1044 /**
1045 * @return true if "supportsRtl" has been set to true in the AndroidManifest
1046 * @hide
1047 */
1048 public boolean hasRtlSupport() {
1049 return (flags & FLAG_SUPPORTS_RTL) == FLAG_SUPPORTS_RTL;
1050 }
Jeff Sharkeyba75a9b2016-01-07 11:51:33 -07001051
1052 /** {@hide} */
1053 public boolean hasCode() {
1054 return (flags & FLAG_HAS_CODE) != 0;
1055 }
1056
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001057 public static class DisplayNameComparator
1058 implements Comparator<ApplicationInfo> {
1059 public DisplayNameComparator(PackageManager pm) {
1060 mPM = pm;
1061 }
1062
1063 public final int compare(ApplicationInfo aa, ApplicationInfo ab) {
1064 CharSequence sa = mPM.getApplicationLabel(aa);
1065 if (sa == null) {
1066 sa = aa.packageName;
1067 }
1068 CharSequence sb = mPM.getApplicationLabel(ab);
1069 if (sb == null) {
1070 sb = ab.packageName;
1071 }
1072
1073 return sCollator.compare(sa.toString(), sb.toString());
1074 }
1075
1076 private final Collator sCollator = Collator.getInstance();
1077 private PackageManager mPM;
1078 }
1079
1080 public ApplicationInfo() {
1081 }
1082
1083 public ApplicationInfo(ApplicationInfo orig) {
1084 super(orig);
1085 taskAffinity = orig.taskAffinity;
1086 permission = orig.permission;
1087 processName = orig.processName;
1088 className = orig.className;
1089 theme = orig.theme;
1090 flags = orig.flags;
Alex Klyubinb9f8a522015-02-03 11:12:59 -08001091 privateFlags = orig.privateFlags;
Dianne Hackborndf6e9802011-05-26 14:20:23 -07001092 requiresSmallestWidthDp = orig.requiresSmallestWidthDp;
1093 compatibleWidthLimitDp = orig.compatibleWidthLimitDp;
Dianne Hackborn2762ff32011-06-01 21:27:05 -07001094 largestWidthLimitDp = orig.largestWidthLimitDp;
Jeff Sharkeyb2b9ab82015-04-05 21:10:42 -07001095 volumeUuid = orig.volumeUuid;
Jeff Sharkey7f1a57a2014-10-08 10:14:53 -07001096 scanSourceDir = orig.scanSourceDir;
1097 scanPublicSourceDir = orig.scanPublicSourceDir;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001098 sourceDir = orig.sourceDir;
1099 publicSourceDir = orig.publicSourceDir;
Adam Lesinski4e862812016-11-21 16:02:24 -08001100 splitNames = orig.splitNames;
Jeff Sharkey8a4c9722014-06-16 13:48:42 -07001101 splitSourceDirs = orig.splitSourceDirs;
1102 splitPublicSourceDirs = orig.splitPublicSourceDirs;
Adam Lesinski4e862812016-11-21 16:02:24 -08001103 splitDependencies = orig.splitDependencies;
Kenny Root85387d72010-08-26 10:13:11 -07001104 nativeLibraryDir = orig.nativeLibraryDir;
Narayan Kamath7dba6eb2014-07-16 08:53:30 +01001105 secondaryNativeLibraryDir = orig.secondaryNativeLibraryDir;
Jeff Sharkey84f12942014-07-10 17:48:11 -07001106 nativeLibraryRootDir = orig.nativeLibraryRootDir;
1107 nativeLibraryRootRequiresIsa = orig.nativeLibraryRootRequiresIsa;
Narayan Kamathff110bd2014-07-04 18:30:45 +01001108 primaryCpuAbi = orig.primaryCpuAbi;
1109 secondaryCpuAbi = orig.secondaryCpuAbi;
Kenny Rootd1ab0162010-01-21 17:27:14 -08001110 resourceDirs = orig.resourceDirs;
Robert Craig0f40dc92013-03-25 06:33:03 -04001111 seinfo = orig.seinfo;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001112 sharedLibraryFiles = orig.sharedLibraryFiles;
1113 dataDir = orig.dataDir;
Jeff Sharkey8a372a02016-03-16 16:25:45 -06001114 deviceEncryptedDataDir = deviceProtectedDataDir = orig.deviceProtectedDataDir;
1115 credentialEncryptedDataDir = credentialProtectedDataDir = orig.credentialProtectedDataDir;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001116 uid = orig.uid;
Todd Kennedy89d60182016-03-11 11:18:32 -08001117 minSdkVersion = orig.minSdkVersion;
Dianne Hackborna96cbb42009-05-13 15:06:13 -07001118 targetSdkVersion = orig.targetSdkVersion;
Dianne Hackborn8472e612014-01-23 17:57:20 -08001119 versionCode = orig.versionCode;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001120 enabled = orig.enabled;
Dianne Hackborn0ac30312011-06-17 14:49:23 -07001121 enabledSetting = orig.enabledSetting;
Dianne Hackborn54e570f2010-10-04 18:32:32 -07001122 installLocation = orig.installLocation;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001123 manageSpaceActivityName = orig.manageSpaceActivityName;
1124 descriptionRes = orig.descriptionRes;
Adam Powell269248d2011-08-02 10:26:54 -07001125 uiOptions = orig.uiOptions;
Christopher Tatebcb02552012-10-16 17:14:34 -07001126 backupAgentName = orig.backupAgentName;
Matthew Williams303650c2015-04-17 18:22:51 -07001127 fullBackupContent = orig.fullBackupContent;
Chad Brubakerc845b2a2016-05-13 14:09:27 -07001128 networkSecurityConfigRes = orig.networkSecurityConfigRes;
Jeff Sharkey9bc89af2017-01-11 11:25:50 -07001129 category = orig.category;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001130 }
1131
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001132 public String toString() {
1133 return "ApplicationInfo{"
1134 + Integer.toHexString(System.identityHashCode(this))
1135 + " " + packageName + "}";
1136 }
1137
1138 public int describeContents() {
1139 return 0;
1140 }
1141
Adam Lesinski4e862812016-11-21 16:02:24 -08001142 @SuppressWarnings("unchecked")
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001143 public void writeToParcel(Parcel dest, int parcelableFlags) {
1144 super.writeToParcel(dest, parcelableFlags);
1145 dest.writeString(taskAffinity);
1146 dest.writeString(permission);
1147 dest.writeString(processName);
1148 dest.writeString(className);
1149 dest.writeInt(theme);
1150 dest.writeInt(flags);
Alex Klyubinb9f8a522015-02-03 11:12:59 -08001151 dest.writeInt(privateFlags);
Dianne Hackborndf6e9802011-05-26 14:20:23 -07001152 dest.writeInt(requiresSmallestWidthDp);
1153 dest.writeInt(compatibleWidthLimitDp);
Dianne Hackborn2762ff32011-06-01 21:27:05 -07001154 dest.writeInt(largestWidthLimitDp);
Jeff Sharkeyb2b9ab82015-04-05 21:10:42 -07001155 dest.writeString(volumeUuid);
Jeff Sharkey7f1a57a2014-10-08 10:14:53 -07001156 dest.writeString(scanSourceDir);
1157 dest.writeString(scanPublicSourceDir);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001158 dest.writeString(sourceDir);
1159 dest.writeString(publicSourceDir);
Adam Lesinski4e862812016-11-21 16:02:24 -08001160 dest.writeStringArray(splitNames);
Jeff Sharkey8a4c9722014-06-16 13:48:42 -07001161 dest.writeStringArray(splitSourceDirs);
1162 dest.writeStringArray(splitPublicSourceDirs);
Adam Lesinski4e862812016-11-21 16:02:24 -08001163 dest.writeSparseIntArray(splitDependencies);
Kenny Root85387d72010-08-26 10:13:11 -07001164 dest.writeString(nativeLibraryDir);
Narayan Kamath7dba6eb2014-07-16 08:53:30 +01001165 dest.writeString(secondaryNativeLibraryDir);
Jeff Sharkey84f12942014-07-10 17:48:11 -07001166 dest.writeString(nativeLibraryRootDir);
1167 dest.writeInt(nativeLibraryRootRequiresIsa ? 1 : 0);
Narayan Kamathff110bd2014-07-04 18:30:45 +01001168 dest.writeString(primaryCpuAbi);
1169 dest.writeString(secondaryCpuAbi);
Kenny Rootd1ab0162010-01-21 17:27:14 -08001170 dest.writeStringArray(resourceDirs);
Robert Craig0f40dc92013-03-25 06:33:03 -04001171 dest.writeString(seinfo);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001172 dest.writeStringArray(sharedLibraryFiles);
1173 dest.writeString(dataDir);
Jeff Sharkey8a372a02016-03-16 16:25:45 -06001174 dest.writeString(deviceProtectedDataDir);
1175 dest.writeString(credentialProtectedDataDir);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001176 dest.writeInt(uid);
Todd Kennedy6e2e7f52016-05-02 14:56:45 -07001177 dest.writeInt(minSdkVersion);
Dianne Hackborna96cbb42009-05-13 15:06:13 -07001178 dest.writeInt(targetSdkVersion);
Dianne Hackborn8472e612014-01-23 17:57:20 -08001179 dest.writeInt(versionCode);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001180 dest.writeInt(enabled ? 1 : 0);
Dianne Hackborn0ac30312011-06-17 14:49:23 -07001181 dest.writeInt(enabledSetting);
Dianne Hackborn54e570f2010-10-04 18:32:32 -07001182 dest.writeInt(installLocation);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001183 dest.writeString(manageSpaceActivityName);
Christopher Tate181fafa2009-05-14 11:12:14 -07001184 dest.writeString(backupAgentName);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001185 dest.writeInt(descriptionRes);
Adam Powell269248d2011-08-02 10:26:54 -07001186 dest.writeInt(uiOptions);
Matthew Williams303650c2015-04-17 18:22:51 -07001187 dest.writeInt(fullBackupContent);
Chad Brubakerc845b2a2016-05-13 14:09:27 -07001188 dest.writeInt(networkSecurityConfigRes);
Jeff Sharkey9bc89af2017-01-11 11:25:50 -07001189 dest.writeInt(category);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001190 }
1191
1192 public static final Parcelable.Creator<ApplicationInfo> CREATOR
1193 = new Parcelable.Creator<ApplicationInfo>() {
1194 public ApplicationInfo createFromParcel(Parcel source) {
1195 return new ApplicationInfo(source);
1196 }
1197 public ApplicationInfo[] newArray(int size) {
1198 return new ApplicationInfo[size];
1199 }
1200 };
1201
Adam Lesinski4e862812016-11-21 16:02:24 -08001202 @SuppressWarnings("unchecked")
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001203 private ApplicationInfo(Parcel source) {
1204 super(source);
1205 taskAffinity = source.readString();
1206 permission = source.readString();
1207 processName = source.readString();
1208 className = source.readString();
1209 theme = source.readInt();
1210 flags = source.readInt();
Alex Klyubinb9f8a522015-02-03 11:12:59 -08001211 privateFlags = source.readInt();
Dianne Hackborndf6e9802011-05-26 14:20:23 -07001212 requiresSmallestWidthDp = source.readInt();
1213 compatibleWidthLimitDp = source.readInt();
Dianne Hackborn2762ff32011-06-01 21:27:05 -07001214 largestWidthLimitDp = source.readInt();
Jeff Sharkeyb2b9ab82015-04-05 21:10:42 -07001215 volumeUuid = source.readString();
Jeff Sharkey7f1a57a2014-10-08 10:14:53 -07001216 scanSourceDir = source.readString();
1217 scanPublicSourceDir = source.readString();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001218 sourceDir = source.readString();
1219 publicSourceDir = source.readString();
Adam Lesinski4e862812016-11-21 16:02:24 -08001220 splitNames = source.readStringArray();
Jeff Sharkey8a4c9722014-06-16 13:48:42 -07001221 splitSourceDirs = source.readStringArray();
1222 splitPublicSourceDirs = source.readStringArray();
Adam Lesinski4e862812016-11-21 16:02:24 -08001223 splitDependencies = source.readSparseIntArray();
Kenny Root85387d72010-08-26 10:13:11 -07001224 nativeLibraryDir = source.readString();
Narayan Kamath7dba6eb2014-07-16 08:53:30 +01001225 secondaryNativeLibraryDir = source.readString();
Jeff Sharkey84f12942014-07-10 17:48:11 -07001226 nativeLibraryRootDir = source.readString();
1227 nativeLibraryRootRequiresIsa = source.readInt() != 0;
Narayan Kamathff110bd2014-07-04 18:30:45 +01001228 primaryCpuAbi = source.readString();
1229 secondaryCpuAbi = source.readString();
Kenny Rootd1ab0162010-01-21 17:27:14 -08001230 resourceDirs = source.readStringArray();
Robert Craig0f40dc92013-03-25 06:33:03 -04001231 seinfo = source.readString();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001232 sharedLibraryFiles = source.readStringArray();
1233 dataDir = source.readString();
Jeff Sharkey8a372a02016-03-16 16:25:45 -06001234 deviceEncryptedDataDir = deviceProtectedDataDir = source.readString();
1235 credentialEncryptedDataDir = credentialProtectedDataDir = source.readString();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001236 uid = source.readInt();
Todd Kennedy6e2e7f52016-05-02 14:56:45 -07001237 minSdkVersion = source.readInt();
Dianne Hackborna96cbb42009-05-13 15:06:13 -07001238 targetSdkVersion = source.readInt();
Dianne Hackborn8472e612014-01-23 17:57:20 -08001239 versionCode = source.readInt();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001240 enabled = source.readInt() != 0;
Dianne Hackborn0ac30312011-06-17 14:49:23 -07001241 enabledSetting = source.readInt();
Dianne Hackborn54e570f2010-10-04 18:32:32 -07001242 installLocation = source.readInt();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001243 manageSpaceActivityName = source.readString();
Christopher Tate181fafa2009-05-14 11:12:14 -07001244 backupAgentName = source.readString();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001245 descriptionRes = source.readInt();
Adam Powell269248d2011-08-02 10:26:54 -07001246 uiOptions = source.readInt();
Matthew Williams303650c2015-04-17 18:22:51 -07001247 fullBackupContent = source.readInt();
Chad Brubakerc845b2a2016-05-13 14:09:27 -07001248 networkSecurityConfigRes = source.readInt();
Jeff Sharkey9bc89af2017-01-11 11:25:50 -07001249 category = source.readInt();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001250 }
Mitsuru Oshima8d112672009-04-27 12:01:23 -07001251
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001252 /**
1253 * Retrieve the textual description of the application. This
1254 * will call back on the given PackageManager to load the description from
1255 * the application.
1256 *
1257 * @param pm A PackageManager from which the label can be loaded; usually
1258 * the PackageManager from which you originally retrieved this item.
1259 *
1260 * @return Returns a CharSequence containing the application's description.
1261 * If there is no description, null is returned.
1262 */
1263 public CharSequence loadDescription(PackageManager pm) {
1264 if (descriptionRes != 0) {
Jeff Brown07330792010-03-30 19:57:08 -07001265 CharSequence label = pm.getText(packageName, descriptionRes, this);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001266 if (label != null) {
1267 return label;
1268 }
1269 }
1270 return null;
1271 }
Mitsuru Oshimae5fb3282009-06-09 21:16:08 -07001272
1273 /**
1274 * Disable compatibility mode
1275 *
1276 * @hide
1277 */
1278 public void disableCompatibilityMode() {
Mitsuru Oshima69fff4a2009-07-21 09:51:05 -07001279 flags |= (FLAG_SUPPORTS_LARGE_SCREENS | FLAG_SUPPORTS_NORMAL_SCREENS |
Dianne Hackborn11b822d2009-07-21 20:03:02 -07001280 FLAG_SUPPORTS_SMALL_SCREENS | FLAG_RESIZEABLE_FOR_SCREENS |
Dianne Hackborn14cee9f2010-04-23 17:51:26 -07001281 FLAG_SUPPORTS_SCREEN_DENSITIES | FLAG_SUPPORTS_XLARGE_SCREENS);
Mitsuru Oshimae5fb3282009-06-09 21:16:08 -07001282 }
Jeff Sharkey15447792015-11-05 16:18:51 -08001283
skuhne@google.com7e85eb02017-01-04 13:49:54 -08001284 /**
1285 * Is using compatibility mode for non densty aware legacy applications.
1286 *
1287 * @hide
1288 */
1289 public boolean usesCompatibilityMode() {
1290 return targetSdkVersion < DONUT ||
1291 (flags & (FLAG_SUPPORTS_LARGE_SCREENS | FLAG_SUPPORTS_NORMAL_SCREENS |
1292 FLAG_SUPPORTS_SMALL_SCREENS | FLAG_RESIZEABLE_FOR_SCREENS |
1293 FLAG_SUPPORTS_SCREEN_DENSITIES | FLAG_SUPPORTS_XLARGE_SCREENS)) == 0;
1294 }
1295
Jeff Sharkey15447792015-11-05 16:18:51 -08001296 /** {@hide} */
1297 public void initForUser(int userId) {
1298 uid = UserHandle.getUid(userId, UserHandle.getAppId(uid));
1299
1300 if ("android".equals(packageName)) {
1301 dataDir = Environment.getDataSystemDirectory().getAbsolutePath();
1302 return;
1303 }
1304
Jeff Sharkey8a372a02016-03-16 16:25:45 -06001305 deviceEncryptedDataDir = deviceProtectedDataDir = Environment
Jeff Sharkey8212ae02016-02-10 14:46:43 -07001306 .getDataUserDePackageDirectory(volumeUuid, userId, packageName)
Jeff Sharkey15447792015-11-05 16:18:51 -08001307 .getAbsolutePath();
Jeff Sharkey8a372a02016-03-16 16:25:45 -06001308 credentialEncryptedDataDir = credentialProtectedDataDir = Environment
Jeff Sharkey8212ae02016-02-10 14:46:43 -07001309 .getDataUserCePackageDirectory(volumeUuid, userId, packageName)
Jeff Sharkey15447792015-11-05 16:18:51 -08001310 .getAbsolutePath();
1311
Jeff Sharkey8a372a02016-03-16 16:25:45 -06001312 if ((privateFlags & PRIVATE_FLAG_DEFAULT_TO_DEVICE_PROTECTED_STORAGE) != 0
1313 && PackageManager.APPLY_DEFAULT_TO_DEVICE_PROTECTED_STORAGE) {
1314 dataDir = deviceProtectedDataDir;
Jeff Sharkey15447792015-11-05 16:18:51 -08001315 } else {
Jeff Sharkey8a372a02016-03-16 16:25:45 -06001316 dataDir = credentialProtectedDataDir;
Jeff Sharkey15447792015-11-05 16:18:51 -08001317 }
1318 }
1319
Jeff Brown07330792010-03-30 19:57:08 -07001320 /**
1321 * @hide
1322 */
Alexandra Gherghinaa7093142014-07-30 13:43:39 +01001323 @Override
1324 public Drawable loadDefaultIcon(PackageManager pm) {
Jeff Brown07330792010-03-30 19:57:08 -07001325 if ((flags & FLAG_EXTERNAL_STORAGE) != 0
1326 && isPackageUnavailable(pm)) {
1327 return Resources.getSystem().getDrawable(
1328 com.android.internal.R.drawable.sym_app_on_sd_unavailable_icon);
1329 }
1330 return pm.getDefaultActivityIcon();
1331 }
1332
1333 private boolean isPackageUnavailable(PackageManager pm) {
1334 try {
1335 return pm.getPackageInfo(packageName, 0) == null;
1336 } catch (NameNotFoundException ex) {
1337 return true;
1338 }
1339 }
Jeff Sharkeyd7460572014-07-06 20:44:55 -07001340
Jeff Brown07330792010-03-30 19:57:08 -07001341 /**
1342 * @hide
1343 */
Fyodor Kupoloveeea67b2015-02-23 17:14:45 -08001344 public boolean isForwardLocked() {
1345 return (privateFlags & ApplicationInfo.PRIVATE_FLAG_FORWARD_LOCK) != 0;
1346 }
1347
1348 /**
1349 * @hide
1350 */
Jeff Sharkeya73b8fd2016-01-06 17:02:08 -07001351 @TestApi
Fyodor Kupolovb94c1652015-03-03 12:25:30 -08001352 public boolean isSystemApp() {
1353 return (flags & ApplicationInfo.FLAG_SYSTEM) != 0;
1354 }
1355
1356 /**
1357 * @hide
1358 */
Jeff Sharkeya73b8fd2016-01-06 17:02:08 -07001359 @TestApi
Svet Ganovadc1cf42015-06-15 16:36:24 -07001360 public boolean isPrivilegedApp() {
1361 return (privateFlags & ApplicationInfo.PRIVATE_FLAG_PRIVILEGED) != 0;
1362 }
1363
1364 /**
1365 * @hide
1366 */
Fyodor Kupolovb94c1652015-03-03 12:25:30 -08001367 public boolean isUpdatedSystemApp() {
1368 return (flags & ApplicationInfo.FLAG_UPDATED_SYSTEM_APP) != 0;
1369 }
1370
Jeff Sharkeye2d45be2015-04-15 17:14:12 -07001371 /** @hide */
1372 public boolean isInternal() {
1373 return (flags & ApplicationInfo.FLAG_EXTERNAL_STORAGE) == 0;
1374 }
1375
1376 /** @hide */
1377 public boolean isExternalAsec() {
1378 return TextUtils.isEmpty(volumeUuid)
1379 && (flags & ApplicationInfo.FLAG_EXTERNAL_STORAGE) != 0;
1380 }
1381
Jeff Sharkeyf9fc6d62015-11-08 16:46:05 -08001382 /** @hide */
Jeff Sharkey8a372a02016-03-16 16:25:45 -06001383 public boolean isDefaultToDeviceProtectedStorage() {
1384 return (privateFlags
1385 & ApplicationInfo.PRIVATE_FLAG_DEFAULT_TO_DEVICE_PROTECTED_STORAGE) != 0;
Jeff Sharkeye4697132016-02-06 19:46:15 -07001386 }
1387
1388 /** @hide */
Jeff Sharkey8a372a02016-03-16 16:25:45 -06001389 public boolean isDirectBootAware() {
1390 return (privateFlags & ApplicationInfo.PRIVATE_FLAG_DIRECT_BOOT_AWARE) != 0;
Jeff Sharkeyf9fc6d62015-11-08 16:46:05 -08001391 }
1392
Jeff Sharkey8924e872015-11-30 12:52:10 -07001393 /** @hide */
Jeff Sharkey8a372a02016-03-16 16:25:45 -06001394 public boolean isPartiallyDirectBootAware() {
1395 return (privateFlags & ApplicationInfo.PRIVATE_FLAG_PARTIALLY_DIRECT_BOOT_AWARE) != 0;
Jeff Sharkey8924e872015-11-30 12:52:10 -07001396 }
1397
Fyodor Kupolovb94c1652015-03-03 12:25:30 -08001398 /**
1399 * @hide
1400 */
Svet Ganov2acf0632015-11-24 19:10:59 -08001401 public boolean isEphemeralApp() {
1402 return (privateFlags & ApplicationInfo.PRIVATE_FLAG_EPHEMERAL) != 0;
1403 }
1404
1405 /**
1406 * @hide
1407 */
Fyodor Kupolovbdbc9692015-12-14 13:11:13 -08001408 public boolean isRequiredForSystemUser() {
1409 return (privateFlags & ApplicationInfo.PRIVATE_FLAG_REQUIRED_FOR_SYSTEM_USER) != 0;
1410 }
1411
1412 /**
Adam Lesinski4e862812016-11-21 16:02:24 -08001413 * Returns true if the app has declared in its manifest that it wants its split APKs to be
1414 * loaded into isolated Contexts, with their own ClassLoaders and Resources objects.
1415 * @hide
1416 */
1417 public boolean requestsIsolatedSplitLoading() {
1418 return (privateFlags & ApplicationInfo.PRIVATE_FLAG_ISOLATED_SPLIT_LOADING) != 0;
1419 }
1420
1421 /**
Fyodor Kupolovbdbc9692015-12-14 13:11:13 -08001422 * @hide
1423 */
Svet Ganov67882122016-12-11 16:36:34 -08001424 public boolean isStaticSharedLibrary() {
1425 return (privateFlags & ApplicationInfo.PRIVATE_FLAG_STATIC_SHARED_LIBRARY) != 0;
1426 }
1427
1428 /**
1429 * @hide
1430 */
Jeff Brown07330792010-03-30 19:57:08 -07001431 @Override protected ApplicationInfo getApplicationInfo() {
1432 return this;
1433 }
Jeff Sharkeyd7460572014-07-06 20:44:55 -07001434
1435 /** {@hide} */ public void setCodePath(String codePath) { scanSourceDir = codePath; }
1436 /** {@hide} */ public void setBaseCodePath(String baseCodePath) { sourceDir = baseCodePath; }
1437 /** {@hide} */ public void setSplitCodePaths(String[] splitCodePaths) { splitSourceDirs = splitCodePaths; }
1438 /** {@hide} */ public void setResourcePath(String resourcePath) { scanPublicSourceDir = resourcePath; }
1439 /** {@hide} */ public void setBaseResourcePath(String baseResourcePath) { publicSourceDir = baseResourcePath; }
1440 /** {@hide} */ public void setSplitResourcePaths(String[] splitResourcePaths) { splitPublicSourceDirs = splitResourcePaths; }
1441
1442 /** {@hide} */ public String getCodePath() { return scanSourceDir; }
1443 /** {@hide} */ public String getBaseCodePath() { return sourceDir; }
1444 /** {@hide} */ public String[] getSplitCodePaths() { return splitSourceDirs; }
1445 /** {@hide} */ public String getResourcePath() { return scanPublicSourceDir; }
1446 /** {@hide} */ public String getBaseResourcePath() { return publicSourceDir; }
Jeff Sharkeya3a43b02016-11-15 17:54:23 -07001447 /** {@hide} */ public String[] getSplitResourcePaths() { return splitPublicSourceDirs; }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001448}