ApplicationInfo.java revision 6afdf91b179afd4e4ae9aa0e520961e57638d637
115a4d2ffd04dc6c70f2cd17dae12ac6bc14c69abKenny Root/*
215a4d2ffd04dc6c70f2cd17dae12ac6bc14c69abKenny Root * Copyright (C) 2007 The Android Open Source Project
315a4d2ffd04dc6c70f2cd17dae12ac6bc14c69abKenny Root *
415a4d2ffd04dc6c70f2cd17dae12ac6bc14c69abKenny Root * Licensed under the Apache License, Version 2.0 (the "License");
515a4d2ffd04dc6c70f2cd17dae12ac6bc14c69abKenny Root * you may not use this file except in compliance with the License.
615a4d2ffd04dc6c70f2cd17dae12ac6bc14c69abKenny Root * You may obtain a copy of the License at
715a4d2ffd04dc6c70f2cd17dae12ac6bc14c69abKenny Root *
815a4d2ffd04dc6c70f2cd17dae12ac6bc14c69abKenny Root *      http://www.apache.org/licenses/LICENSE-2.0
915a4d2ffd04dc6c70f2cd17dae12ac6bc14c69abKenny Root *
1015a4d2ffd04dc6c70f2cd17dae12ac6bc14c69abKenny Root * Unless required by applicable law or agreed to in writing, software
1115a4d2ffd04dc6c70f2cd17dae12ac6bc14c69abKenny Root * distributed under the License is distributed on an "AS IS" BASIS,
1215a4d2ffd04dc6c70f2cd17dae12ac6bc14c69abKenny Root * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1315a4d2ffd04dc6c70f2cd17dae12ac6bc14c69abKenny Root * See the License for the specific language governing permissions and
1415a4d2ffd04dc6c70f2cd17dae12ac6bc14c69abKenny Root * limitations under the License.
1515a4d2ffd04dc6c70f2cd17dae12ac6bc14c69abKenny Root */
1615a4d2ffd04dc6c70f2cd17dae12ac6bc14c69abKenny Root
179066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Projectpackage android.content.pm;
189066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project
19a73b8fd1f4faaad00d8a49d6e496aaf249fa7003Jeff Sharkeyimport android.annotation.TestApi;
2007330791116513710d879c45b2f095cd314cbfd0Jeff Brownimport android.content.pm.PackageManager.NameNotFoundException;
2107330791116513710d879c45b2f095cd314cbfd0Jeff Brownimport android.content.res.Resources;
2207330791116513710d879c45b2f095cd314cbfd0Jeff Brownimport android.graphics.drawable.Drawable;
2315447798a38d2b5acb1998731340255f4203f294Jeff Sharkeyimport android.os.Environment;
249066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Projectimport android.os.Parcel;
259066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Projectimport android.os.Parcelable;
2615447798a38d2b5acb1998731340255f4203f294Jeff Sharkeyimport android.os.UserHandle;
27f9fc6d6cc05595241bc7ced6d4cab97b45f9b901Jeff Sharkeyimport android.os.storage.StorageManager;
28e2d45be4dae116307f8edd85eaa61134221cb8f9Jeff Sharkeyimport android.text.TextUtils;
299066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Projectimport android.util.Printer;
309066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project
318a4c9721a9e09d20c63381c13fa29bd9f7cbc3e3Jeff Sharkeyimport com.android.internal.util.ArrayUtils;
328a4c9721a9e09d20c63381c13fa29bd9f7cbc3e3Jeff Sharkey
339066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Projectimport java.text.Collator;
348a4c9721a9e09d20c63381c13fa29bd9f7cbc3e3Jeff Sharkeyimport java.util.Arrays;
359066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Projectimport java.util.Comparator;
368a4c9721a9e09d20c63381c13fa29bd9f7cbc3e3Jeff Sharkeyimport java.util.Objects;
379066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project
389066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project/**
399066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project * Information you can retrieve about a particular application.  This
409066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project * corresponds to information collected from the AndroidManifest.xml's
419066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project * <application> tag.
429066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project */
439066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Projectpublic class ApplicationInfo extends PackageItemInfo implements Parcelable {
449066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project
459066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    /**
469066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * Default task affinity of all activities in this application. See
479066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * {@link ActivityInfo#taskAffinity} for more information.  This comes
489066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * from the "taskAffinity" attribute.
499066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     */
509066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    public String taskAffinity;
519066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project
529066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    /**
539066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * Optional name of a permission required to be able to access this
549066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * application's components.  From the "permission" attribute.
559066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     */
569066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    public String permission;
579066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project
589066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    /**
599066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * The name of the process this application should run in.  From the
609066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * "process" attribute or, if not set, the same as
619066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * <var>packageName</var>.
629066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     */
639066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    public String processName;
649066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project
659066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    /**
669066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * Class implementing the Application object.  From the "class"
679066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * attribute.
689066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     */
699066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    public String className;
709066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project
719066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    /**
729066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * A style resource identifier (in the package's resources) of the
739066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * description of an application.  From the "description" attribute
749066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * or, if not set, 0.
759066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     */
769066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    public int descriptionRes;
779066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project
789066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    /**
799066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * A style resource identifier (in the package's resources) of the
809066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * default visual theme of the application.  From the "theme" attribute
819066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * or, if not set, 0.
829066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     */
839066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    public int theme;
849066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project
859066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    /**
869066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * Class implementing the Application's manage space
879066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * functionality.  From the "manageSpaceActivity"
889066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * attribute. This is an optional attribute and will be null if
89181fafaf48208978b8ba2022683ffa78aaeddde1Christopher Tate     * applications don't specify it in their manifest
909066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     */
919066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    public String manageSpaceActivityName;
929066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project
939066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    /**
94181fafaf48208978b8ba2022683ffa78aaeddde1Christopher Tate     * Class implementing the Application's backup functionality.  From
95181fafaf48208978b8ba2022683ffa78aaeddde1Christopher Tate     * the "backupAgent" attribute.  This is an optional attribute and
96181fafaf48208978b8ba2022683ffa78aaeddde1Christopher Tate     * will be null if the application does not specify it in its manifest.
97181fafaf48208978b8ba2022683ffa78aaeddde1Christopher Tate     *
98181fafaf48208978b8ba2022683ffa78aaeddde1Christopher Tate     * <p>If android:allowBackup is set to false, this attribute is ignored.
99181fafaf48208978b8ba2022683ffa78aaeddde1Christopher Tate     */
100181fafaf48208978b8ba2022683ffa78aaeddde1Christopher Tate    public String backupAgentName;
1014a627c71ff53a4fca1f961f4b1dcc0461df18a06Christopher Tate
1024a627c71ff53a4fca1f961f4b1dcc0461df18a06Christopher Tate    /**
103303650c9cdb7cec88e7ec20747b161d9fff10719Matthew Williams     * An optional attribute that indicates the app supports automatic backup of app data.
104303650c9cdb7cec88e7ec20747b161d9fff10719Matthew Williams     * <p>0 is the default and means the app's entire data folder + managed external storage will
105303650c9cdb7cec88e7ec20747b161d9fff10719Matthew Williams     * be backed up;
106303650c9cdb7cec88e7ec20747b161d9fff10719Matthew Williams     * Any negative value indicates the app does not support full-data backup, though it may still
107303650c9cdb7cec88e7ec20747b161d9fff10719Matthew Williams     * want to participate via the traditional key/value backup API;
108303650c9cdb7cec88e7ec20747b161d9fff10719Matthew Williams     * A positive number specifies an xml resource in which the application has defined its backup
109303650c9cdb7cec88e7ec20747b161d9fff10719Matthew Williams     * include/exclude criteria.
110303650c9cdb7cec88e7ec20747b161d9fff10719Matthew Williams     * <p>If android:allowBackup is set to false, this attribute is ignored.
111303650c9cdb7cec88e7ec20747b161d9fff10719Matthew Williams     *
112303650c9cdb7cec88e7ec20747b161d9fff10719Matthew Williams     * @see {@link android.content.Context#getNoBackupFilesDir}
113303650c9cdb7cec88e7ec20747b161d9fff10719Matthew Williams     * @see {@link #FLAG_ALLOW_BACKUP}
11498fa656f1636525c27a6d91ad4d7a3385292b99aChristopher Tate     *
11598fa656f1636525c27a6d91ad4d7a3385292b99aChristopher Tate     * @hide
116303650c9cdb7cec88e7ec20747b161d9fff10719Matthew Williams     */
117303650c9cdb7cec88e7ec20747b161d9fff10719Matthew Williams    public int fullBackupContent = 0;
118303650c9cdb7cec88e7ec20747b161d9fff10719Matthew Williams
119303650c9cdb7cec88e7ec20747b161d9fff10719Matthew Williams    /**
120269248d112e35fe8e9f0d5d11c96dcb2ac1118b0Adam Powell     * The default extra UI options for activities in this application.
121269248d112e35fe8e9f0d5d11c96dcb2ac1118b0Adam Powell     * Set from the {@link android.R.attr#uiOptions} attribute in the
122269248d112e35fe8e9f0d5d11c96dcb2ac1118b0Adam Powell     * activity's manifest.
123269248d112e35fe8e9f0d5d11c96dcb2ac1118b0Adam Powell     */
124269248d112e35fe8e9f0d5d11c96dcb2ac1118b0Adam Powell    public int uiOptions = 0;
125269248d112e35fe8e9f0d5d11c96dcb2ac1118b0Adam Powell
126269248d112e35fe8e9f0d5d11c96dcb2ac1118b0Adam Powell    /**
1279066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * Value for {@link #flags}: if set, this application is installed in the
1289066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * device's system image.
1299066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     */
1309066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    public static final int FLAG_SYSTEM = 1<<0;
1319066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project
1329066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    /**
1339066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * Value for {@link #flags}: set to true if this application would like to
1349066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * allow debugging of its
1359066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * code, even when installed on a non-development system.  Comes
1369066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * from {@link android.R.styleable#AndroidManifestApplication_debuggable
1379066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * android:debuggable} of the &lt;application&gt; tag.
1389066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     */
1399066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    public static final int FLAG_DEBUGGABLE = 1<<1;
1409066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project
1419066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    /**
1429066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * Value for {@link #flags}: set to true if this application has code
1439066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * associated with it.  Comes
1449066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * from {@link android.R.styleable#AndroidManifestApplication_hasCode
1459066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * android:hasCode} of the &lt;application&gt; tag.
1469066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     */
1479066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    public static final int FLAG_HAS_CODE = 1<<2;
1489066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project
1499066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    /**
1509066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * Value for {@link #flags}: set to true if this application is persistent.
1519066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * Comes from {@link android.R.styleable#AndroidManifestApplication_persistent
1529066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * android:persistent} of the &lt;application&gt; tag.
1539066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     */
1549066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    public static final int FLAG_PERSISTENT = 1<<3;
1559066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project
1569066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    /**
157181fafaf48208978b8ba2022683ffa78aaeddde1Christopher Tate     * Value for {@link #flags}: set to true if this application holds the
1589066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * {@link android.Manifest.permission#FACTORY_TEST} permission and the
1599066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * device is running in factory test mode.
1609066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     */
1619066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    public static final int FLAG_FACTORY_TEST = 1<<4;
1629066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project
1639066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    /**
1649066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * Value for {@link #flags}: default value for the corresponding ActivityInfo flag.
1659066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * Comes from {@link android.R.styleable#AndroidManifestApplication_allowTaskReparenting
1669066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * android:allowTaskReparenting} of the &lt;application&gt; tag.
1679066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     */
1689066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    public static final int FLAG_ALLOW_TASK_REPARENTING = 1<<5;
1699066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project
1709066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    /**
1719066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * Value for {@link #flags}: default value for the corresponding ActivityInfo flag.
1729066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * Comes from {@link android.R.styleable#AndroidManifestApplication_allowClearUserData
1739066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * android:allowClearUserData} of the &lt;application&gt; tag.
1749066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     */
1759066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    public static final int FLAG_ALLOW_CLEAR_USER_DATA = 1<<6;
1769066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project
1779066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    /**
178851a54143c15a1c33361efae2db3f7f45059b472Dianne Hackborn     * Value for {@link #flags}: this is set if this application has been
1798de29ca4f3ce2be808eb17cd8739bb533d968a37Kweku Adams     * installed as an update to a built-in system application.
1809066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     */
1819066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    public static final int FLAG_UPDATED_SYSTEM_APP = 1<<7;
182851a54143c15a1c33361efae2db3f7f45059b472Dianne Hackborn
183851a54143c15a1c33361efae2db3f7f45059b472Dianne Hackborn    /**
1847f2054392e9957d3ba8579ef08c29cfb27df564eDianne Hackborn     * Value for {@link #flags}: this is set of the application has specified
1857f2054392e9957d3ba8579ef08c29cfb27df564eDianne Hackborn     * {@link android.R.styleable#AndroidManifestApplication_testOnly
1867f2054392e9957d3ba8579ef08c29cfb27df564eDianne Hackborn     * android:testOnly} to be true.
187851a54143c15a1c33361efae2db3f7f45059b472Dianne Hackborn     */
188a96cbb435d7b2197ab2b61fd98d14cbd6e0c5c3dDianne Hackborn    public static final int FLAG_TEST_ONLY = 1<<8;
189ade3ecad94d1f4431576f53bae26c35efbf7a2c9Dianne Hackborn
190ade3ecad94d1f4431576f53bae26c35efbf7a2c9Dianne Hackborn    /**
1915c1e00b14d2ef10ec76abf3e951fa8003a67f558Dianne Hackborn     * Value for {@link #flags}: true when the application's window can be
192723738cfaec3dd7b0fe152c872c41bebf94074c4Dianne Hackborn     * reduced in size for smaller screens.  Corresponds to
193723738cfaec3dd7b0fe152c872c41bebf94074c4Dianne Hackborn     * {@link android.R.styleable#AndroidManifestSupportsScreens_smallScreens
194723738cfaec3dd7b0fe152c872c41bebf94074c4Dianne Hackborn     * android:smallScreens}.
1955c1e00b14d2ef10ec76abf3e951fa8003a67f558Dianne Hackborn     */
196723738cfaec3dd7b0fe152c872c41bebf94074c4Dianne Hackborn    public static final int FLAG_SUPPORTS_SMALL_SCREENS = 1<<9;
197723738cfaec3dd7b0fe152c872c41bebf94074c4Dianne Hackborn
198723738cfaec3dd7b0fe152c872c41bebf94074c4Dianne Hackborn    /**
199723738cfaec3dd7b0fe152c872c41bebf94074c4Dianne Hackborn     * Value for {@link #flags}: true when the application's window can be
200723738cfaec3dd7b0fe152c872c41bebf94074c4Dianne Hackborn     * displayed on normal screens.  Corresponds to
201723738cfaec3dd7b0fe152c872c41bebf94074c4Dianne Hackborn     * {@link android.R.styleable#AndroidManifestSupportsScreens_normalScreens
202723738cfaec3dd7b0fe152c872c41bebf94074c4Dianne Hackborn     * android:normalScreens}.
203723738cfaec3dd7b0fe152c872c41bebf94074c4Dianne Hackborn     */
204723738cfaec3dd7b0fe152c872c41bebf94074c4Dianne Hackborn    public static final int FLAG_SUPPORTS_NORMAL_SCREENS = 1<<10;
205723738cfaec3dd7b0fe152c872c41bebf94074c4Dianne Hackborn
206723738cfaec3dd7b0fe152c872c41bebf94074c4Dianne Hackborn    /**
207723738cfaec3dd7b0fe152c872c41bebf94074c4Dianne Hackborn     * Value for {@link #flags}: true when the application's window can be
208723738cfaec3dd7b0fe152c872c41bebf94074c4Dianne Hackborn     * increased in size for larger screens.  Corresponds to
209723738cfaec3dd7b0fe152c872c41bebf94074c4Dianne Hackborn     * {@link android.R.styleable#AndroidManifestSupportsScreens_largeScreens
21022ec9ab3b881d71866279ba9363c644a9e4e7164Dianne Hackborn     * android:largeScreens}.
211723738cfaec3dd7b0fe152c872c41bebf94074c4Dianne Hackborn     */
212723738cfaec3dd7b0fe152c872c41bebf94074c4Dianne Hackborn    public static final int FLAG_SUPPORTS_LARGE_SCREENS = 1<<11;
2135c1e00b14d2ef10ec76abf3e951fa8003a67f558Dianne Hackborn
2145c1e00b14d2ef10ec76abf3e951fa8003a67f558Dianne Hackborn    /**
215c4db95c077f826585d20be2f3db4043c53d30cf5Dianne Hackborn     * Value for {@link #flags}: true when the application knows how to adjust
216c4db95c077f826585d20be2f3db4043c53d30cf5Dianne Hackborn     * its UI for different screen sizes.  Corresponds to
217c4db95c077f826585d20be2f3db4043c53d30cf5Dianne Hackborn     * {@link android.R.styleable#AndroidManifestSupportsScreens_resizeable
218c4db95c077f826585d20be2f3db4043c53d30cf5Dianne Hackborn     * android:resizeable}.
219c4db95c077f826585d20be2f3db4043c53d30cf5Dianne Hackborn     */
220c4db95c077f826585d20be2f3db4043c53d30cf5Dianne Hackborn    public static final int FLAG_RESIZEABLE_FOR_SCREENS = 1<<12;
221c4db95c077f826585d20be2f3db4043c53d30cf5Dianne Hackborn
222c4db95c077f826585d20be2f3db4043c53d30cf5Dianne Hackborn    /**
22311b822d2a91ea17c34c0cb1c11e80a9a30d72864Dianne Hackborn     * Value for {@link #flags}: true when the application knows how to
22411b822d2a91ea17c34c0cb1c11e80a9a30d72864Dianne Hackborn     * accomodate different screen densities.  Corresponds to
22511b822d2a91ea17c34c0cb1c11e80a9a30d72864Dianne Hackborn     * {@link android.R.styleable#AndroidManifestSupportsScreens_anyDensity
22611b822d2a91ea17c34c0cb1c11e80a9a30d72864Dianne Hackborn     * android:anyDensity}.
22711b822d2a91ea17c34c0cb1c11e80a9a30d72864Dianne Hackborn     */
22811b822d2a91ea17c34c0cb1c11e80a9a30d72864Dianne Hackborn    public static final int FLAG_SUPPORTS_SCREEN_DENSITIES = 1<<13;
22911b822d2a91ea17c34c0cb1c11e80a9a30d72864Dianne Hackborn
23011b822d2a91ea17c34c0cb1c11e80a9a30d72864Dianne Hackborn    /**
23123085b781e145ed684e7270af1d5ced6800b8effBen Cheng     * Value for {@link #flags}: set to true if this application would like to
23223085b781e145ed684e7270af1d5ced6800b8effBen Cheng     * request the VM to operate under the safe mode. Comes from
233ef3f5ddc2137ed99e41f00441b688fb56b855179Ben Cheng     * {@link android.R.styleable#AndroidManifestApplication_vmSafeMode
234ef3f5ddc2137ed99e41f00441b688fb56b855179Ben Cheng     * android:vmSafeMode} of the &lt;application&gt; tag.
23523085b781e145ed684e7270af1d5ced6800b8effBen Cheng     */
23623085b781e145ed684e7270af1d5ced6800b8effBen Cheng    public static final int FLAG_VM_SAFE_MODE = 1<<14;
23723085b781e145ed684e7270af1d5ced6800b8effBen Cheng
23823085b781e145ed684e7270af1d5ced6800b8effBen Cheng    /**
2393de55bcd34afd5871816526294f9514d1adf3fe5Christopher Tate     * Value for {@link #flags}: set to <code>false</code> if the application does not wish
2403de55bcd34afd5871816526294f9514d1adf3fe5Christopher Tate     * to permit any OS-driven backups of its data; <code>true</code> otherwise.
241181fafaf48208978b8ba2022683ffa78aaeddde1Christopher Tate     *
2423de55bcd34afd5871816526294f9514d1adf3fe5Christopher Tate     * <p>Comes from the
2433de55bcd34afd5871816526294f9514d1adf3fe5Christopher Tate     * {@link android.R.styleable#AndroidManifestApplication_allowBackup android:allowBackup}
2443de55bcd34afd5871816526294f9514d1adf3fe5Christopher Tate     * attribute of the &lt;application&gt; tag.
245181fafaf48208978b8ba2022683ffa78aaeddde1Christopher Tate     */
24623085b781e145ed684e7270af1d5ced6800b8effBen Cheng    public static final int FLAG_ALLOW_BACKUP = 1<<15;
2475e1ab335e6e8fbfa19c64d53880a22f472010953Christopher Tate
2485e1ab335e6e8fbfa19c64d53880a22f472010953Christopher Tate    /**
2493de55bcd34afd5871816526294f9514d1adf3fe5Christopher Tate     * Value for {@link #flags}: set to <code>false</code> if the application must be kept
2503de55bcd34afd5871816526294f9514d1adf3fe5Christopher Tate     * in memory following a full-system restore operation; <code>true</code> otherwise.
2513de55bcd34afd5871816526294f9514d1adf3fe5Christopher Tate     * Ordinarily, during a full system restore operation each application is shut down
2523de55bcd34afd5871816526294f9514d1adf3fe5Christopher Tate     * following execution of its agent's onRestore() method.  Setting this attribute to
2533de55bcd34afd5871816526294f9514d1adf3fe5Christopher Tate     * <code>false</code> prevents this.  Most applications will not need to set this attribute.
2545e1ab335e6e8fbfa19c64d53880a22f472010953Christopher Tate     *
2553de55bcd34afd5871816526294f9514d1adf3fe5Christopher Tate     * <p>If
2563de55bcd34afd5871816526294f9514d1adf3fe5Christopher Tate     * {@link android.R.styleable#AndroidManifestApplication_allowBackup android:allowBackup}
2573de55bcd34afd5871816526294f9514d1adf3fe5Christopher Tate     * is set to <code>false</code> or no
2583de55bcd34afd5871816526294f9514d1adf3fe5Christopher Tate     * {@link android.R.styleable#AndroidManifestApplication_backupAgent android:backupAgent}
2595e1ab335e6e8fbfa19c64d53880a22f472010953Christopher Tate     * is specified, this flag will be ignored.
2605e1ab335e6e8fbfa19c64d53880a22f472010953Christopher Tate     *
2613de55bcd34afd5871816526294f9514d1adf3fe5Christopher Tate     * <p>Comes from the
2623de55bcd34afd5871816526294f9514d1adf3fe5Christopher Tate     * {@link android.R.styleable#AndroidManifestApplication_killAfterRestore android:killAfterRestore}
2633de55bcd34afd5871816526294f9514d1adf3fe5Christopher Tate     * attribute of the &lt;application&gt; tag.
2645e1ab335e6e8fbfa19c64d53880a22f472010953Christopher Tate     */
26523085b781e145ed684e7270af1d5ced6800b8effBen Cheng    public static final int FLAG_KILL_AFTER_RESTORE = 1<<16;
2665e1ab335e6e8fbfa19c64d53880a22f472010953Christopher Tate
2675e1ab335e6e8fbfa19c64d53880a22f472010953Christopher Tate    /**
2683de55bcd34afd5871816526294f9514d1adf3fe5Christopher Tate     * Value for {@link #flags}: Set to <code>true</code> if the application's backup
2693de55bcd34afd5871816526294f9514d1adf3fe5Christopher Tate     * agent claims to be able to handle restore data even "from the future,"
2703de55bcd34afd5871816526294f9514d1adf3fe5Christopher Tate     * i.e. from versions of the application with a versionCode greater than
2713de55bcd34afd5871816526294f9514d1adf3fe5Christopher Tate     * the one currently installed on the device.  <i>Use with caution!</i>  By default
2723de55bcd34afd5871816526294f9514d1adf3fe5Christopher Tate     * this attribute is <code>false</code> and the Backup Manager will ensure that data
2733de55bcd34afd5871816526294f9514d1adf3fe5Christopher Tate     * from "future" versions of the application are never supplied during a restore operation.
2745e1ab335e6e8fbfa19c64d53880a22f472010953Christopher Tate     *
2753de55bcd34afd5871816526294f9514d1adf3fe5Christopher Tate     * <p>If
2763de55bcd34afd5871816526294f9514d1adf3fe5Christopher Tate     * {@link android.R.styleable#AndroidManifestApplication_allowBackup android:allowBackup}
2773de55bcd34afd5871816526294f9514d1adf3fe5Christopher Tate     * is set to <code>false</code> or no
2783de55bcd34afd5871816526294f9514d1adf3fe5Christopher Tate     * {@link android.R.styleable#AndroidManifestApplication_backupAgent android:backupAgent}
2795e1ab335e6e8fbfa19c64d53880a22f472010953Christopher Tate     * is specified, this flag will be ignored.
2805e1ab335e6e8fbfa19c64d53880a22f472010953Christopher Tate     *
2813de55bcd34afd5871816526294f9514d1adf3fe5Christopher Tate     * <p>Comes from the
2823de55bcd34afd5871816526294f9514d1adf3fe5Christopher Tate     * {@link android.R.styleable#AndroidManifestApplication_restoreAnyVersion android:restoreAnyVersion}
2833de55bcd34afd5871816526294f9514d1adf3fe5Christopher Tate     * attribute of the &lt;application&gt; tag.
2845e1ab335e6e8fbfa19c64d53880a22f472010953Christopher Tate     */
2853de55bcd34afd5871816526294f9514d1adf3fe5Christopher Tate    public static final int FLAG_RESTORE_ANY_VERSION = 1<<17;
2865e1ab335e6e8fbfa19c64d53880a22f472010953Christopher Tate
287181fafaf48208978b8ba2022683ffa78aaeddde1Christopher Tate    /**
2883202d380226043fa665df3c92252f791f8c52d55Dianne Hackborn     * Value for {@link #flags}: Set to true if the application is
2893202d380226043fa665df3c92252f791f8c52d55Dianne Hackborn     * currently installed on external/removable/unprotected storage.  Such
2903202d380226043fa665df3c92252f791f8c52d55Dianne Hackborn     * applications may not be available if their storage is not currently
2913202d380226043fa665df3c92252f791f8c52d55Dianne Hackborn     * mounted.  When the storage it is on is not available, it will look like
2923202d380226043fa665df3c92252f791f8c52d55Dianne Hackborn     * the application has been uninstalled (its .apk is no longer available)
2933202d380226043fa665df3c92252f791f8c52d55Dianne Hackborn     * but its persistent data is not removed.
294af8e9f4805643f90a9dc0ecfa119e0a860c12f8aSuchi Amalapurapu     */
29594c567e1e344d49168603f5a0560215a4ce735e6Dianne Hackborn    public static final int FLAG_EXTERNAL_STORAGE = 1<<18;
296af8e9f4805643f90a9dc0ecfa119e0a860c12f8aSuchi Amalapurapu
297af8e9f4805643f90a9dc0ecfa119e0a860c12f8aSuchi Amalapurapu    /**
29814cee9f688c32d63d8521188e7422811629bb7c2Dianne Hackborn     * Value for {@link #flags}: true when the application's window can be
29914cee9f688c32d63d8521188e7422811629bb7c2Dianne Hackborn     * increased in size for extra large screens.  Corresponds to
30014cee9f688c32d63d8521188e7422811629bb7c2Dianne Hackborn     * {@link android.R.styleable#AndroidManifestSupportsScreens_xlargeScreens
30122ec9ab3b881d71866279ba9363c644a9e4e7164Dianne Hackborn     * android:xlargeScreens}.
30214cee9f688c32d63d8521188e7422811629bb7c2Dianne Hackborn     */
30314cee9f688c32d63d8521188e7422811629bb7c2Dianne Hackborn    public static final int FLAG_SUPPORTS_XLARGE_SCREENS = 1<<19;
30414cee9f688c32d63d8521188e7422811629bb7c2Dianne Hackborn
30514cee9f688c32d63d8521188e7422811629bb7c2Dianne Hackborn    /**
3063b81bc18bb661c02ad8074c39dab16644c1e65d0Dianne Hackborn     * Value for {@link #flags}: true when the application has requested a
3073b81bc18bb661c02ad8074c39dab16644c1e65d0Dianne Hackborn     * large heap for its processes.  Corresponds to
3083b81bc18bb661c02ad8074c39dab16644c1e65d0Dianne Hackborn     * {@link android.R.styleable#AndroidManifestApplication_largeHeap
3093b81bc18bb661c02ad8074c39dab16644c1e65d0Dianne Hackborn     * android:largeHeap}.
310a3cdaa5337fa573c4c61770195d6232c2e587090Jason parks     */
3113b81bc18bb661c02ad8074c39dab16644c1e65d0Dianne Hackborn    public static final int FLAG_LARGE_HEAP = 1<<20;
312a3cdaa5337fa573c4c61770195d6232c2e587090Jason parks
313a3cdaa5337fa573c4c61770195d6232c2e587090Jason parks    /**
314e7f972122db87dc54e41ed1a6e417534d43bca3aDianne Hackborn     * Value for {@link #flags}: true if this application's package is in
315e7f972122db87dc54e41ed1a6e417534d43bca3aDianne Hackborn     * the stopped state.
316e7f972122db87dc54e41ed1a6e417534d43bca3aDianne Hackborn     */
317e7f972122db87dc54e41ed1a6e417534d43bca3aDianne Hackborn    public static final int FLAG_STOPPED = 1<<21;
318e7f972122db87dc54e41ed1a6e417534d43bca3aDianne Hackborn
319e7f972122db87dc54e41ed1a6e417534d43bca3aDianne Hackborn    /**
32059dfce8bdaf011337530a0dbec7f7280871f9bc9Fabrice Di Meglio     * Value for {@link #flags}: true  when the application is willing to support
32159dfce8bdaf011337530a0dbec7f7280871f9bc9Fabrice Di Meglio     * RTL (right to left). All activities will inherit this value.
32259dfce8bdaf011337530a0dbec7f7280871f9bc9Fabrice Di Meglio     *
32359dfce8bdaf011337530a0dbec7f7280871f9bc9Fabrice Di Meglio     * Set from the {@link android.R.attr#supportsRtl} attribute in the
32459dfce8bdaf011337530a0dbec7f7280871f9bc9Fabrice Di Meglio     * activity's manifest.
32559dfce8bdaf011337530a0dbec7f7280871f9bc9Fabrice Di Meglio     *
32659dfce8bdaf011337530a0dbec7f7280871f9bc9Fabrice Di Meglio     * Default value is false (no support for RTL).
32759dfce8bdaf011337530a0dbec7f7280871f9bc9Fabrice Di Meglio     */
32859dfce8bdaf011337530a0dbec7f7280871f9bc9Fabrice Di Meglio    public static final int FLAG_SUPPORTS_RTL = 1<<22;
32959dfce8bdaf011337530a0dbec7f7280871f9bc9Fabrice Di Meglio
33059dfce8bdaf011337530a0dbec7f7280871f9bc9Fabrice Di Meglio    /**
3317767eac3232ba2fb9828766813cdb481d6a97584Dianne Hackborn     * Value for {@link #flags}: true if the application is currently
3327767eac3232ba2fb9828766813cdb481d6a97584Dianne Hackborn     * installed for the calling user.
3337767eac3232ba2fb9828766813cdb481d6a97584Dianne Hackborn     */
3347767eac3232ba2fb9828766813cdb481d6a97584Dianne Hackborn    public static final int FLAG_INSTALLED = 1<<23;
3357767eac3232ba2fb9828766813cdb481d6a97584Dianne Hackborn
3367767eac3232ba2fb9828766813cdb481d6a97584Dianne Hackborn    /**
3375e03e2ca7d25b899b129baad2dd5eca6bf99d88aDianne Hackborn     * Value for {@link #flags}: true if the application only has its
3385e03e2ca7d25b899b129baad2dd5eca6bf99d88aDianne Hackborn     * data installed; the application package itself does not currently
3395e03e2ca7d25b899b129baad2dd5eca6bf99d88aDianne Hackborn     * exist on the device.
3405e03e2ca7d25b899b129baad2dd5eca6bf99d88aDianne Hackborn     */
3415e03e2ca7d25b899b129baad2dd5eca6bf99d88aDianne Hackborn    public static final int FLAG_IS_DATA_ONLY = 1<<24;
3425e03e2ca7d25b899b129baad2dd5eca6bf99d88aDianne Hackborn
3435e03e2ca7d25b899b129baad2dd5eca6bf99d88aDianne Hackborn    /**
34412d0b4cd960e18493b1dc237adbfabed432c9df5Jose Lima     * Value for {@link #flags}: true if the application was declared to be a game, or
34512d0b4cd960e18493b1dc237adbfabed432c9df5Jose Lima     * false if it is a non-game application.
34612d0b4cd960e18493b1dc237adbfabed432c9df5Jose Lima     */
34712d0b4cd960e18493b1dc237adbfabed432c9df5Jose Lima    public static final int FLAG_IS_GAME = 1<<25;
34812d0b4cd960e18493b1dc237adbfabed432c9df5Jose Lima
34912d0b4cd960e18493b1dc237adbfabed432c9df5Jose Lima    /**
350d1de2567c6758e81a87c0f5eff9ff53ffebab134Christopher Tate     * Value for {@link #flags}: {@code true} if the application asks that only
351d1de2567c6758e81a87c0f5eff9ff53ffebab134Christopher Tate     * full-data streaming backups of its data be performed even though it defines
352d1de2567c6758e81a87c0f5eff9ff53ffebab134Christopher Tate     * a {@link android.app.backup.BackupAgent BackupAgent}, which normally
353d1de2567c6758e81a87c0f5eff9ff53ffebab134Christopher Tate     * indicates that the app will manage its backed-up data via incremental
354d1de2567c6758e81a87c0f5eff9ff53ffebab134Christopher Tate     * key/value updates.
355d1de2567c6758e81a87c0f5eff9ff53ffebab134Christopher Tate     */
356d1de2567c6758e81a87c0f5eff9ff53ffebab134Christopher Tate    public static final int FLAG_FULL_BACKUP_ONLY = 1<<26;
357d1de2567c6758e81a87c0f5eff9ff53ffebab134Christopher Tate
358d1de2567c6758e81a87c0f5eff9ff53ffebab134Christopher Tate    /**
35901a959d60a2c5f04ab240513a853d7845b3a309eAlex Klyubin     * Value for {@link #flags}: {@code true} if the application may use cleartext network traffic
36001a959d60a2c5f04ab240513a853d7845b3a309eAlex Klyubin     * (e.g., HTTP rather than HTTPS; WebSockets rather than WebSockets Secure; XMPP, IMAP, STMP
36101a959d60a2c5f04ab240513a853d7845b3a309eAlex Klyubin     * without STARTTLS or TLS). If {@code false}, the app declares that it does not intend to use
36201a959d60a2c5f04ab240513a853d7845b3a309eAlex Klyubin     * cleartext network traffic, in which case platform components (e.g., HTTP stacks,
363fbf4599a8edfc31585f207c434d35200a03657b4Alex Klyubin     * {@code DownloadManager}, {@code MediaPlayer}) will refuse app's requests to use cleartext
364fbf4599a8edfc31585f207c434d35200a03657b4Alex Klyubin     * traffic. Third-party libraries are encouraged to honor this flag as well.
365fbf4599a8edfc31585f207c434d35200a03657b4Alex Klyubin     *
366fbf4599a8edfc31585f207c434d35200a03657b4Alex Klyubin     * <p>NOTE: {@code WebView} does not honor this flag.
367fbf4599a8edfc31585f207c434d35200a03657b4Alex Klyubin     *
368fbf4599a8edfc31585f207c434d35200a03657b4Alex Klyubin     * <p>This flag comes from
369fbf4599a8edfc31585f207c434d35200a03657b4Alex Klyubin     * {@link android.R.styleable#AndroidManifestApplication_usesCleartextTraffic
370fbf4599a8edfc31585f207c434d35200a03657b4Alex Klyubin     * android:usesCleartextTraffic} of the &lt;application&gt; tag.
37101a959d60a2c5f04ab240513a853d7845b3a309eAlex Klyubin     */
37201a959d60a2c5f04ab240513a853d7845b3a309eAlex Klyubin    public static final int FLAG_USES_CLEARTEXT_TRAFFIC = 1<<27;
37301a959d60a2c5f04ab240513a853d7845b3a309eAlex Klyubin
37401a959d60a2c5f04ab240513a853d7845b3a309eAlex Klyubin    /**
375ff193d642eea7128faad837d19e347cd25212c27Dmitriy Ivanov     * When set installer extracts native libs from .apk files.
376ff193d642eea7128faad837d19e347cd25212c27Dmitriy Ivanov     */
377ff193d642eea7128faad837d19e347cd25212c27Dmitriy Ivanov    public static final int FLAG_EXTRACT_NATIVE_LIBS = 1<<28;
378ff193d642eea7128faad837d19e347cd25212c27Dmitriy Ivanov
379ff193d642eea7128faad837d19e347cd25212c27Dmitriy Ivanov    /**
380d70b9e7aea9c7b0691f3ac1326752f91d5049458Alan Viverette     * Value for {@link #flags}: {@code true} when the application's rendering
381d70b9e7aea9c7b0691f3ac1326752f91d5049458Alan Viverette     * should be hardware accelerated.
382d70b9e7aea9c7b0691f3ac1326752f91d5049458Alan Viverette     */
383d70b9e7aea9c7b0691f3ac1326752f91d5049458Alan Viverette    public static final int FLAG_HARDWARE_ACCELERATED = 1<<29;
384d70b9e7aea9c7b0691f3ac1326752f91d5049458Alan Viverette
385d70b9e7aea9c7b0691f3ac1326752f91d5049458Alan Viverette    /**
3861e2839188fb49575b86646d3aadb355c81ef9cc5Andrei Stingaceanu     * Value for {@link #flags}: true if this application's package is in
3871e2839188fb49575b86646d3aadb355c81ef9cc5Andrei Stingaceanu     * the suspended state.
3881e2839188fb49575b86646d3aadb355c81ef9cc5Andrei Stingaceanu     */
3891e2839188fb49575b86646d3aadb355c81ef9cc5Andrei Stingaceanu    public static final int FLAG_SUSPENDED = 1<<30;
3901e2839188fb49575b86646d3aadb355c81ef9cc5Andrei Stingaceanu
3911e2839188fb49575b86646d3aadb355c81ef9cc5Andrei Stingaceanu    /**
392b9f8a5204a1b0b3919fa921e858d04124c582828Alex Klyubin     * Value for {@link #flags}: true if code from this application will need to be
393b9f8a5204a1b0b3919fa921e858d04124c582828Alex Klyubin     * loaded into other applications' processes. On devices that support multiple
394b9f8a5204a1b0b3919fa921e858d04124c582828Alex Klyubin     * instruction sets, this implies the code might be loaded into a process that's
395b9f8a5204a1b0b3919fa921e858d04124c582828Alex Klyubin     * using any of the devices supported instruction sets.
396b9f8a5204a1b0b3919fa921e858d04124c582828Alex Klyubin     *
397b9f8a5204a1b0b3919fa921e858d04124c582828Alex Klyubin     * <p> The system might treat such applications specially, for eg., by
398b9f8a5204a1b0b3919fa921e858d04124c582828Alex Klyubin     * extracting the application's native libraries for all supported instruction
399b9f8a5204a1b0b3919fa921e858d04124c582828Alex Klyubin     * sets or by compiling the application's dex code for all supported instruction
400b9f8a5204a1b0b3919fa921e858d04124c582828Alex Klyubin     * sets.
401b9f8a5204a1b0b3919fa921e858d04124c582828Alex Klyubin     */
402b9f8a5204a1b0b3919fa921e858d04124c582828Alex Klyubin    public static final int FLAG_MULTIARCH  = 1 << 31;
403b9f8a5204a1b0b3919fa921e858d04124c582828Alex Klyubin
404b9f8a5204a1b0b3919fa921e858d04124c582828Alex Klyubin    /**
405b9f8a5204a1b0b3919fa921e858d04124c582828Alex Klyubin     * Flags associated with the application.  Any combination of
406b9f8a5204a1b0b3919fa921e858d04124c582828Alex Klyubin     * {@link #FLAG_SYSTEM}, {@link #FLAG_DEBUGGABLE}, {@link #FLAG_HAS_CODE},
407b9f8a5204a1b0b3919fa921e858d04124c582828Alex Klyubin     * {@link #FLAG_PERSISTENT}, {@link #FLAG_FACTORY_TEST}, and
408b9f8a5204a1b0b3919fa921e858d04124c582828Alex Klyubin     * {@link #FLAG_ALLOW_TASK_REPARENTING}
409b9f8a5204a1b0b3919fa921e858d04124c582828Alex Klyubin     * {@link #FLAG_ALLOW_CLEAR_USER_DATA}, {@link #FLAG_UPDATED_SYSTEM_APP},
410b9f8a5204a1b0b3919fa921e858d04124c582828Alex Klyubin     * {@link #FLAG_TEST_ONLY}, {@link #FLAG_SUPPORTS_SMALL_SCREENS},
411b9f8a5204a1b0b3919fa921e858d04124c582828Alex Klyubin     * {@link #FLAG_SUPPORTS_NORMAL_SCREENS},
412b9f8a5204a1b0b3919fa921e858d04124c582828Alex Klyubin     * {@link #FLAG_SUPPORTS_LARGE_SCREENS}, {@link #FLAG_SUPPORTS_XLARGE_SCREENS},
413b9f8a5204a1b0b3919fa921e858d04124c582828Alex Klyubin     * {@link #FLAG_RESIZEABLE_FOR_SCREENS},
414b9f8a5204a1b0b3919fa921e858d04124c582828Alex Klyubin     * {@link #FLAG_SUPPORTS_SCREEN_DENSITIES}, {@link #FLAG_VM_SAFE_MODE},
415b9f8a5204a1b0b3919fa921e858d04124c582828Alex Klyubin     * {@link #FLAG_ALLOW_BACKUP}, {@link #FLAG_KILL_AFTER_RESTORE},
416b9f8a5204a1b0b3919fa921e858d04124c582828Alex Klyubin     * {@link #FLAG_RESTORE_ANY_VERSION}, {@link #FLAG_EXTERNAL_STORAGE},
417b9f8a5204a1b0b3919fa921e858d04124c582828Alex Klyubin     * {@link #FLAG_LARGE_HEAP}, {@link #FLAG_STOPPED},
418b9f8a5204a1b0b3919fa921e858d04124c582828Alex Klyubin     * {@link #FLAG_SUPPORTS_RTL}, {@link #FLAG_INSTALLED},
419b9f8a5204a1b0b3919fa921e858d04124c582828Alex Klyubin     * {@link #FLAG_IS_DATA_ONLY}, {@link #FLAG_IS_GAME},
4207cb000ff56babf18d39ab0aa31dfc5dcac0bf11eAlex Klyubin     * {@link #FLAG_FULL_BACKUP_ONLY}, {@link #FLAG_USES_CLEARTEXT_TRAFFIC},
4217cb000ff56babf18d39ab0aa31dfc5dcac0bf11eAlex Klyubin     * {@link #FLAG_MULTIARCH}.
422b9f8a5204a1b0b3919fa921e858d04124c582828Alex Klyubin     */
423b9f8a5204a1b0b3919fa921e858d04124c582828Alex Klyubin    public int flags = 0;
424b9f8a5204a1b0b3919fa921e858d04124c582828Alex Klyubin
425b9f8a5204a1b0b3919fa921e858d04124c582828Alex Klyubin    /**
426b9f8a5204a1b0b3919fa921e858d04124c582828Alex Klyubin     * Value for {@link #privateFlags}: true if the application is hidden via restrictions and for
427589a1bc0b00e570db079b4b157f60229ad8ef8f9Narayan Kamath     * most purposes is considered as not installed.
428589a1bc0b00e570db079b4b157f60229ad8ef8f9Narayan Kamath     * {@hide}
429589a1bc0b00e570db079b4b157f60229ad8ef8f9Narayan Kamath     */
430b9f8a5204a1b0b3919fa921e858d04124c582828Alex Klyubin    public static final int PRIVATE_FLAG_HIDDEN = 1<<0;
431589a1bc0b00e570db079b4b157f60229ad8ef8f9Narayan Kamath
432589a1bc0b00e570db079b4b157f60229ad8ef8f9Narayan Kamath    /**
433b9f8a5204a1b0b3919fa921e858d04124c582828Alex Klyubin     * Value for {@link #privateFlags}: set to <code>true</code> if the application
434589a1bc0b00e570db079b4b157f60229ad8ef8f9Narayan Kamath     * has reported that it is heavy-weight, and thus can not participate in
435589a1bc0b00e570db079b4b157f60229ad8ef8f9Narayan Kamath     * the normal application lifecycle.
436589a1bc0b00e570db079b4b157f60229ad8ef8f9Narayan Kamath     *
437589a1bc0b00e570db079b4b157f60229ad8ef8f9Narayan Kamath     * <p>Comes from the
438589a1bc0b00e570db079b4b157f60229ad8ef8f9Narayan Kamath     * android.R.styleable#AndroidManifestApplication_cantSaveState
439589a1bc0b00e570db079b4b157f60229ad8ef8f9Narayan Kamath     * attribute of the &lt;application&gt; tag.
4404ce55a3987c14b939cd416e24116c6ab3c760b82Christopher Tate     *
4414ce55a3987c14b939cd416e24116c6ab3c760b82Christopher Tate     * {@hide}
4424ce55a3987c14b939cd416e24116c6ab3c760b82Christopher Tate     */
443b9f8a5204a1b0b3919fa921e858d04124c582828Alex Klyubin    public static final int PRIVATE_FLAG_CANT_SAVE_STATE = 1<<1;
4444ce55a3987c14b939cd416e24116c6ab3c760b82Christopher Tate
4454ce55a3987c14b939cd416e24116c6ab3c760b82Christopher Tate    /**
446b9f8a5204a1b0b3919fa921e858d04124c582828Alex Klyubin     * Value for {@link #privateFlags}: Set to true if the application has been
4473202d380226043fa665df3c92252f791f8c52d55Dianne Hackborn     * installed using the forward lock option.
448af8e9f4805643f90a9dc0ecfa119e0a860c12f8aSuchi Amalapurapu     *
44975e616e8203a540c860888ccff73ffaa87498c5eDianne Hackborn     * NOTE: DO NOT CHANGE THIS VALUE!  It is saved in packages.xml.
450b9f8a5204a1b0b3919fa921e858d04124c582828Alex Klyubin     *
451af8e9f4805643f90a9dc0ecfa119e0a860c12f8aSuchi Amalapurapu     * {@hide}
452af8e9f4805643f90a9dc0ecfa119e0a860c12f8aSuchi Amalapurapu     */
453b9f8a5204a1b0b3919fa921e858d04124c582828Alex Klyubin    public static final int PRIVATE_FLAG_FORWARD_LOCK = 1<<2;
454af8e9f4805643f90a9dc0ecfa119e0a860c12f8aSuchi Amalapurapu
455af8e9f4805643f90a9dc0ecfa119e0a860c12f8aSuchi Amalapurapu    /**
456b9f8a5204a1b0b3919fa921e858d04124c582828Alex Klyubin     * Value for {@link #privateFlags}: set to {@code true} if the application
457589a1bc0b00e570db079b4b157f60229ad8ef8f9Narayan Kamath     * is permitted to hold privileged permissions.
45802486b1327e3007c62d253dd89ba9db1852b87f8Dianne Hackborn     *
45902486b1327e3007c62d253dd89ba9db1852b87f8Dianne Hackborn     * {@hide}
46002486b1327e3007c62d253dd89ba9db1852b87f8Dianne Hackborn     */
461b9f8a5204a1b0b3919fa921e858d04124c582828Alex Klyubin    public static final int PRIVATE_FLAG_PRIVILEGED = 1<<3;
46202486b1327e3007c62d253dd89ba9db1852b87f8Dianne Hackborn
46302486b1327e3007c62d253dd89ba9db1852b87f8Dianne Hackborn    /**
4642acf063da08dfff69f184c9a6a90a7a5fe60d818Svet Ganov     * Value for {@link #privateFlags}: {@code true} if the application has any IntentFiler
4652acf063da08dfff69f184c9a6a90a7a5fe60d818Svet Ganov     * with some data URI using HTTP or HTTPS with an associated VIEW action.
466d3d8a32217d5a2d895917cfe7e1645935d228494Fabrice Di Meglio     *
467d3d8a32217d5a2d895917cfe7e1645935d228494Fabrice Di Meglio     * {@hide}
468d3d8a32217d5a2d895917cfe7e1645935d228494Fabrice Di Meglio     */
469d3d8a32217d5a2d895917cfe7e1645935d228494Fabrice Di Meglio    public static final int PRIVATE_FLAG_HAS_DOMAIN_URLS = 1<<4;
470d3d8a32217d5a2d895917cfe7e1645935d228494Fabrice Di Meglio
471d3d8a32217d5a2d895917cfe7e1645935d228494Fabrice Di Meglio    /**
47215447798a38d2b5acb1998731340255f4203f294Jeff Sharkey     * When set, default data storage directory for given app is pointed at
47315447798a38d2b5acb1998731340255f4203f294Jeff Sharkey     * device-encrypted location.
47415447798a38d2b5acb1998731340255f4203f294Jeff Sharkey     *
47515447798a38d2b5acb1998731340255f4203f294Jeff Sharkey     * @hide
47615447798a38d2b5acb1998731340255f4203f294Jeff Sharkey     */
477e17ac1569793c333bb4dce86607a342e7c982ae7Jeff Sharkey    public static final int PRIVATE_FLAG_FORCE_DEVICE_ENCRYPTED = 1 << 5;
47815447798a38d2b5acb1998731340255f4203f294Jeff Sharkey
47915447798a38d2b5acb1998731340255f4203f294Jeff Sharkey    /**
480f9fc6d6cc05595241bc7ced6d4cab97b45f9b901Jeff Sharkey     * When set, assume that all components under the given app are encryption
481f9fc6d6cc05595241bc7ced6d4cab97b45f9b901Jeff Sharkey     * aware, unless otherwise specified.
482f9fc6d6cc05595241bc7ced6d4cab97b45f9b901Jeff Sharkey     *
483f9fc6d6cc05595241bc7ced6d4cab97b45f9b901Jeff Sharkey     * @hide
484f9fc6d6cc05595241bc7ced6d4cab97b45f9b901Jeff Sharkey     */
485f9fc6d6cc05595241bc7ced6d4cab97b45f9b901Jeff Sharkey    public static final int PRIVATE_FLAG_ENCRYPTION_AWARE = 1 << 6;
486f9fc6d6cc05595241bc7ced6d4cab97b45f9b901Jeff Sharkey
487f9fc6d6cc05595241bc7ced6d4cab97b45f9b901Jeff Sharkey    /**
488a4407bfceef1bdb7eb4d83990722a61082d926c9Jeff Vander Stoep     * Value for {@link #privateFlags}: set to {@code true} if the application
489a4407bfceef1bdb7eb4d83990722a61082d926c9Jeff Vander Stoep     * is AutoPlay.
490a4407bfceef1bdb7eb4d83990722a61082d926c9Jeff Vander Stoep     *
491a4407bfceef1bdb7eb4d83990722a61082d926c9Jeff Vander Stoep     * {@hide}
492a4407bfceef1bdb7eb4d83990722a61082d926c9Jeff Vander Stoep     */
4939edb7bf4c6f9c59d0c469798d5936019e8199043Jeff Vander Stoep    public static final int PRIVATE_FLAG_AUTOPLAY = 1 << 7;
494a4407bfceef1bdb7eb4d83990722a61082d926c9Jeff Vander Stoep
495a4407bfceef1bdb7eb4d83990722a61082d926c9Jeff Vander Stoep    /**
4968924e8759f9a8cffb5ad538ca40a7826793aac07Jeff Sharkey     * When set, at least one component inside this application is encryption aware.
4978924e8759f9a8cffb5ad538ca40a7826793aac07Jeff Sharkey     *
4988924e8759f9a8cffb5ad538ca40a7826793aac07Jeff Sharkey     * @hide
4998924e8759f9a8cffb5ad538ca40a7826793aac07Jeff Sharkey     */
5008924e8759f9a8cffb5ad538ca40a7826793aac07Jeff Sharkey    public static final int PRIVATE_FLAG_PARTIALLY_ENCRYPTION_AWARE = 1 << 8;
5018924e8759f9a8cffb5ad538ca40a7826793aac07Jeff Sharkey
5028924e8759f9a8cffb5ad538ca40a7826793aac07Jeff Sharkey    /**
503f99104dadddb8d7587aaa607821d284e214eb997Fyodor Kupolov     * Value for {@link #flags}: {@code true} if the application is blocked via restrictions
504f99104dadddb8d7587aaa607821d284e214eb997Fyodor Kupolov     * and for most purposes is considered as not installed.
505f99104dadddb8d7587aaa607821d284e214eb997Fyodor Kupolov     * {@hide}
506f99104dadddb8d7587aaa607821d284e214eb997Fyodor Kupolov     */
507f99104dadddb8d7587aaa607821d284e214eb997Fyodor Kupolov    public static final int PRIVATE_FLAG_EPHEMERAL = 1 << 9;
508f99104dadddb8d7587aaa607821d284e214eb997Fyodor Kupolov
509f99104dadddb8d7587aaa607821d284e214eb997Fyodor Kupolov    /**
510bdbc9692c7cb365d9d3f239baa2377724a6f7bc8Fyodor Kupolov     * When set, signals that the application is required for the system user and should not be
511bdbc9692c7cb365d9d3f239baa2377724a6f7bc8Fyodor Kupolov     * uninstalled.
512bdbc9692c7cb365d9d3f239baa2377724a6f7bc8Fyodor Kupolov     *
513bdbc9692c7cb365d9d3f239baa2377724a6f7bc8Fyodor Kupolov     * @hide
514bdbc9692c7cb365d9d3f239baa2377724a6f7bc8Fyodor Kupolov     */
515bdbc9692c7cb365d9d3f239baa2377724a6f7bc8Fyodor Kupolov    public static final int PRIVATE_FLAG_REQUIRED_FOR_SYSTEM_USER = 1 << 10;
516bdbc9692c7cb365d9d3f239baa2377724a6f7bc8Fyodor Kupolov
517bdbc9692c7cb365d9d3f239baa2377724a6f7bc8Fyodor Kupolov    /**
5186afdf91b179afd4e4ae9aa0e520961e57638d637Wale Ogunwale     * When set, the activities associated with this application are resizeable by default.
5196afdf91b179afd4e4ae9aa0e520961e57638d637Wale Ogunwale     * @see android.R.styleable#AndroidManifestActivity_resizeableActivity
5206afdf91b179afd4e4ae9aa0e520961e57638d637Wale Ogunwale     *
5216afdf91b179afd4e4ae9aa0e520961e57638d637Wale Ogunwale     * @hide
5226afdf91b179afd4e4ae9aa0e520961e57638d637Wale Ogunwale     */
5236afdf91b179afd4e4ae9aa0e520961e57638d637Wale Ogunwale    public static final int PRIVATE_FLAG_RESIZEABLE_ACTIVITIES = 1 << 11;
5246afdf91b179afd4e4ae9aa0e520961e57638d637Wale Ogunwale
5256afdf91b179afd4e4ae9aa0e520961e57638d637Wale Ogunwale    /**
526b9f8a5204a1b0b3919fa921e858d04124c582828Alex Klyubin     * Private/hidden flags. See {@code PRIVATE_FLAG_...} constants.
527b9f8a5204a1b0b3919fa921e858d04124c582828Alex Klyubin     * {@hide}
5289066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     */
529b9f8a5204a1b0b3919fa921e858d04124c582828Alex Klyubin    public int privateFlags;
530655d0e2029e6ae77a47e922dce4c4989818b8dd1Amith Yamasani
5319066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    /**
532df6e980e3f63eb0f6f9eb437fa925d5009cd9c44Dianne Hackborn     * The required smallest screen width the application can run on.  If 0,
533df6e980e3f63eb0f6f9eb437fa925d5009cd9c44Dianne Hackborn     * nothing has been specified.  Comes from
534df6e980e3f63eb0f6f9eb437fa925d5009cd9c44Dianne Hackborn     * {@link android.R.styleable#AndroidManifestSupportsScreens_requiresSmallestWidthDp
535df6e980e3f63eb0f6f9eb437fa925d5009cd9c44Dianne Hackborn     * android:requiresSmallestWidthDp} attribute of the &lt;supports-screens&gt; tag.
536df6e980e3f63eb0f6f9eb437fa925d5009cd9c44Dianne Hackborn     */
537df6e980e3f63eb0f6f9eb437fa925d5009cd9c44Dianne Hackborn    public int requiresSmallestWidthDp = 0;
538df6e980e3f63eb0f6f9eb437fa925d5009cd9c44Dianne Hackborn
539df6e980e3f63eb0f6f9eb437fa925d5009cd9c44Dianne Hackborn    /**
540df6e980e3f63eb0f6f9eb437fa925d5009cd9c44Dianne Hackborn     * The maximum smallest screen width the application is designed for.  If 0,
541df6e980e3f63eb0f6f9eb437fa925d5009cd9c44Dianne Hackborn     * nothing has been specified.  Comes from
542df6e980e3f63eb0f6f9eb437fa925d5009cd9c44Dianne Hackborn     * {@link android.R.styleable#AndroidManifestSupportsScreens_compatibleWidthLimitDp
543df6e980e3f63eb0f6f9eb437fa925d5009cd9c44Dianne Hackborn     * android:compatibleWidthLimitDp} attribute of the &lt;supports-screens&gt; tag.
544df6e980e3f63eb0f6f9eb437fa925d5009cd9c44Dianne Hackborn     */
545df6e980e3f63eb0f6f9eb437fa925d5009cd9c44Dianne Hackborn    public int compatibleWidthLimitDp = 0;
546df6e980e3f63eb0f6f9eb437fa925d5009cd9c44Dianne Hackborn
547df6e980e3f63eb0f6f9eb437fa925d5009cd9c44Dianne Hackborn    /**
5482762ff3dc864018352362f6d103de471f9529ba6Dianne Hackborn     * The maximum smallest screen width the application will work on.  If 0,
5492762ff3dc864018352362f6d103de471f9529ba6Dianne Hackborn     * nothing has been specified.  Comes from
5502762ff3dc864018352362f6d103de471f9529ba6Dianne Hackborn     * {@link android.R.styleable#AndroidManifestSupportsScreens_largestWidthLimitDp
5512762ff3dc864018352362f6d103de471f9529ba6Dianne Hackborn     * android:largestWidthLimitDp} attribute of the &lt;supports-screens&gt; tag.
5522762ff3dc864018352362f6d103de471f9529ba6Dianne Hackborn     */
5532762ff3dc864018352362f6d103de471f9529ba6Dianne Hackborn    public int largestWidthLimitDp = 0;
5542762ff3dc864018352362f6d103de471f9529ba6Dianne Hackborn
555d746057f2414cba2bdc69257cc5be8cb681bb592Jeff Sharkey    /** {@hide} */
556b2b9ab8354da1485178cd8d8e9d89ac915b3f269Jeff Sharkey    public String volumeUuid;
557b2b9ab8354da1485178cd8d8e9d89ac915b3f269Jeff Sharkey    /** {@hide} */
558d746057f2414cba2bdc69257cc5be8cb681bb592Jeff Sharkey    public String scanSourceDir;
559d746057f2414cba2bdc69257cc5be8cb681bb592Jeff Sharkey    /** {@hide} */
560d746057f2414cba2bdc69257cc5be8cb681bb592Jeff Sharkey    public String scanPublicSourceDir;
561d746057f2414cba2bdc69257cc5be8cb681bb592Jeff Sharkey
5622762ff3dc864018352362f6d103de471f9529ba6Dianne Hackborn    /**
5638a4c9721a9e09d20c63381c13fa29bd9f7cbc3e3Jeff Sharkey     * Full path to the base APK for this application.
5649066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     */
5659066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    public String sourceDir;
5669066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project
5679066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    /**
5688a4c9721a9e09d20c63381c13fa29bd9f7cbc3e3Jeff Sharkey     * Full path to the publicly available parts of {@link #sourceDir},
5698a4c9721a9e09d20c63381c13fa29bd9f7cbc3e3Jeff Sharkey     * including resources and manifest. This may be different from
5708a4c9721a9e09d20c63381c13fa29bd9f7cbc3e3Jeff Sharkey     * {@link #sourceDir} if an application is forward locked.
5719066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     */
5729066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    public String publicSourceDir;
5738a4c9721a9e09d20c63381c13fa29bd9f7cbc3e3Jeff Sharkey
5748a4c9721a9e09d20c63381c13fa29bd9f7cbc3e3Jeff Sharkey    /**
5758a4c9721a9e09d20c63381c13fa29bd9f7cbc3e3Jeff Sharkey     * Full paths to zero or more split APKs that, when combined with the base
5768a4c9721a9e09d20c63381c13fa29bd9f7cbc3e3Jeff Sharkey     * APK defined in {@link #sourceDir}, form a complete application.
5778a4c9721a9e09d20c63381c13fa29bd9f7cbc3e3Jeff Sharkey     */
5788a4c9721a9e09d20c63381c13fa29bd9f7cbc3e3Jeff Sharkey    public String[] splitSourceDirs;
5798a4c9721a9e09d20c63381c13fa29bd9f7cbc3e3Jeff Sharkey
5808a4c9721a9e09d20c63381c13fa29bd9f7cbc3e3Jeff Sharkey    /**
5818a4c9721a9e09d20c63381c13fa29bd9f7cbc3e3Jeff Sharkey     * Full path to the publicly available parts of {@link #splitSourceDirs},
5828a4c9721a9e09d20c63381c13fa29bd9f7cbc3e3Jeff Sharkey     * including resources and manifest. This may be different from
5838a4c9721a9e09d20c63381c13fa29bd9f7cbc3e3Jeff Sharkey     * {@link #splitSourceDirs} if an application is forward locked.
5848a4c9721a9e09d20c63381c13fa29bd9f7cbc3e3Jeff Sharkey     */
5858a4c9721a9e09d20c63381c13fa29bd9f7cbc3e3Jeff Sharkey    public String[] splitPublicSourceDirs;
5868a4c9721a9e09d20c63381c13fa29bd9f7cbc3e3Jeff Sharkey
5879066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    /**
588d1ab01682b136b586aac94334f976f03c762b3c7Kenny Root     * Full paths to the locations of extra resource packages this application
589d1ab01682b136b586aac94334f976f03c762b3c7Kenny Root     * uses. This field is only used if there are extra resource packages,
590d1ab01682b136b586aac94334f976f03c762b3c7Kenny Root     * otherwise it is null.
591ace5a3fbfbf1b41905410925f1ea007040a7a675Kenny Root     *
592ace5a3fbfbf1b41905410925f1ea007040a7a675Kenny Root     * {@hide}
593d1ab01682b136b586aac94334f976f03c762b3c7Kenny Root     */
594d1ab01682b136b586aac94334f976f03c762b3c7Kenny Root    public String[] resourceDirs;
595d1ab01682b136b586aac94334f976f03c762b3c7Kenny Root
596d1ab01682b136b586aac94334f976f03c762b3c7Kenny Root    /**
5970f40dc923c67e8822f9157aec4f786f73848af07Robert Craig     * String retrieved from the seinfo tag found in selinux policy. This value
5985e16bc5a143b46bbe9a4873adceed85a6241d1d0Robert Craig     * can be overridden with a value set through the mac_permissions.xml policy
5995e16bc5a143b46bbe9a4873adceed85a6241d1d0Robert Craig     * construct. This value is useful in setting an SELinux security context on
6005e16bc5a143b46bbe9a4873adceed85a6241d1d0Robert Craig     * the process as well as its data directory. The String default is being used
6015e16bc5a143b46bbe9a4873adceed85a6241d1d0Robert Craig     * here to represent a catchall label when no policy matches.
6020f40dc923c67e8822f9157aec4f786f73848af07Robert Craig     *
6030f40dc923c67e8822f9157aec4f786f73848af07Robert Craig     * {@hide}
6040f40dc923c67e8822f9157aec4f786f73848af07Robert Craig     */
6055e16bc5a143b46bbe9a4873adceed85a6241d1d0Robert Craig    public String seinfo = "default";
6060f40dc923c67e8822f9157aec4f786f73848af07Robert Craig
6070f40dc923c67e8822f9157aec4f786f73848af07Robert Craig    /**
6089066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * Paths to all shared libraries this application is linked against.  This
6099066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * field is only set if the {@link PackageManager#GET_SHARED_LIBRARY_FILES
6109066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * PackageManager.GET_SHARED_LIBRARY_FILES} flag was used when retrieving
6119066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * the structure.
6129066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     */
6139066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    public String[] sharedLibraryFiles;
6149066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project
6159066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    /**
6167a30a30ebece75f4a73fa604d4c7721d28eecc16Jeff Sharkey     * Full path to the default directory assigned to the package for its
6177a30a30ebece75f4a73fa604d4c7721d28eecc16Jeff Sharkey     * persistent data.
6189066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     */
6199066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    public String dataDir;
62085387d7ba36e56b291cbde87acb5a5b2200fe01cKenny Root
6217a30a30ebece75f4a73fa604d4c7721d28eecc16Jeff Sharkey    /**
6227a30a30ebece75f4a73fa604d4c7721d28eecc16Jeff Sharkey     * Full path to the device-encrypted directory assigned to the package for
6237a30a30ebece75f4a73fa604d4c7721d28eecc16Jeff Sharkey     * its persistent data.
6247a30a30ebece75f4a73fa604d4c7721d28eecc16Jeff Sharkey     */
62515447798a38d2b5acb1998731340255f4203f294Jeff Sharkey    public String deviceEncryptedDataDir;
6267a30a30ebece75f4a73fa604d4c7721d28eecc16Jeff Sharkey
6277a30a30ebece75f4a73fa604d4c7721d28eecc16Jeff Sharkey    /**
6287a30a30ebece75f4a73fa604d4c7721d28eecc16Jeff Sharkey     * Full path to the credential-encrypted directory assigned to the package
6297a30a30ebece75f4a73fa604d4c7721d28eecc16Jeff Sharkey     * for its persistent data.
6307a30a30ebece75f4a73fa604d4c7721d28eecc16Jeff Sharkey     */
63115447798a38d2b5acb1998731340255f4203f294Jeff Sharkey    public String credentialEncryptedDataDir;
63215447798a38d2b5acb1998731340255f4203f294Jeff Sharkey
63385387d7ba36e56b291cbde87acb5a5b2200fe01cKenny Root    /**
63485387d7ba36e56b291cbde87acb5a5b2200fe01cKenny Root     * Full path to the directory where native JNI libraries are stored.
63585387d7ba36e56b291cbde87acb5a5b2200fe01cKenny Root     */
63685387d7ba36e56b291cbde87acb5a5b2200fe01cKenny Root    public String nativeLibraryDir;
63785387d7ba36e56b291cbde87acb5a5b2200fe01cKenny Root
6389066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    /**
6397dba6eb3ac4fd6c8195cb0d0425866de50a9e114Narayan Kamath     * Full path where unpacked native libraries for {@link #secondaryCpuAbi}
6407dba6eb3ac4fd6c8195cb0d0425866de50a9e114Narayan Kamath     * are stored, if present.
6417dba6eb3ac4fd6c8195cb0d0425866de50a9e114Narayan Kamath     *
6427dba6eb3ac4fd6c8195cb0d0425866de50a9e114Narayan Kamath     * The main reason this exists is for bundled multi-arch apps, where
6437dba6eb3ac4fd6c8195cb0d0425866de50a9e114Narayan Kamath     * it's not trivial to calculate the location of libs for the secondary abi
6447dba6eb3ac4fd6c8195cb0d0425866de50a9e114Narayan Kamath     * given the location of the primary.
6457dba6eb3ac4fd6c8195cb0d0425866de50a9e114Narayan Kamath     *
6467dba6eb3ac4fd6c8195cb0d0425866de50a9e114Narayan Kamath     * TODO: Change the layout of bundled installs so that we can use
6477dba6eb3ac4fd6c8195cb0d0425866de50a9e114Narayan Kamath     * nativeLibraryRootDir & nativeLibraryRootRequiresIsa there as well.
6487dba6eb3ac4fd6c8195cb0d0425866de50a9e114Narayan Kamath     * (e.g {@code [ "/system/app-lib/Foo/arm", "/system/app-lib/Foo/arm64" ]}
6497dba6eb3ac4fd6c8195cb0d0425866de50a9e114Narayan Kamath     * instead of {@code [ "/system/lib/Foo", "/system/lib64/Foo" ]}.
6507dba6eb3ac4fd6c8195cb0d0425866de50a9e114Narayan Kamath     *
6517dba6eb3ac4fd6c8195cb0d0425866de50a9e114Narayan Kamath     * @hide
6527dba6eb3ac4fd6c8195cb0d0425866de50a9e114Narayan Kamath     */
6537dba6eb3ac4fd6c8195cb0d0425866de50a9e114Narayan Kamath    public String secondaryNativeLibraryDir;
6547dba6eb3ac4fd6c8195cb0d0425866de50a9e114Narayan Kamath
6557dba6eb3ac4fd6c8195cb0d0425866de50a9e114Narayan Kamath    /**
65684f1294a958b42000755dc6570e3eda72ab42140Jeff Sharkey     * The root path where unpacked native libraries are stored.
65784f1294a958b42000755dc6570e3eda72ab42140Jeff Sharkey     * <p>
65884f1294a958b42000755dc6570e3eda72ab42140Jeff Sharkey     * When {@link #nativeLibraryRootRequiresIsa} is set, the libraries are
65984f1294a958b42000755dc6570e3eda72ab42140Jeff Sharkey     * placed in ISA-specific subdirectories under this path, otherwise the
66084f1294a958b42000755dc6570e3eda72ab42140Jeff Sharkey     * libraries are placed directly at this path.
661ff110bd61a69f7ed8602ae14b27f7befec76b2e7Narayan Kamath     *
66284f1294a958b42000755dc6570e3eda72ab42140Jeff Sharkey     * @hide
66384f1294a958b42000755dc6570e3eda72ab42140Jeff Sharkey     */
66484f1294a958b42000755dc6570e3eda72ab42140Jeff Sharkey    public String nativeLibraryRootDir;
66584f1294a958b42000755dc6570e3eda72ab42140Jeff Sharkey
66684f1294a958b42000755dc6570e3eda72ab42140Jeff Sharkey    /**
66784f1294a958b42000755dc6570e3eda72ab42140Jeff Sharkey     * Flag indicating that ISA must be appended to
66884f1294a958b42000755dc6570e3eda72ab42140Jeff Sharkey     * {@link #nativeLibraryRootDir} to be useful.
669ff110bd61a69f7ed8602ae14b27f7befec76b2e7Narayan Kamath     *
67084f1294a958b42000755dc6570e3eda72ab42140Jeff Sharkey     * @hide
671ff110bd61a69f7ed8602ae14b27f7befec76b2e7Narayan Kamath     */
67284f1294a958b42000755dc6570e3eda72ab42140Jeff Sharkey    public boolean nativeLibraryRootRequiresIsa;
673ff110bd61a69f7ed8602ae14b27f7befec76b2e7Narayan Kamath
674ff110bd61a69f7ed8602ae14b27f7befec76b2e7Narayan Kamath    /**
675ff110bd61a69f7ed8602ae14b27f7befec76b2e7Narayan Kamath     * The primary ABI that this application requires, This is inferred from the ABIs
676ff0c470833b2cb4130a30895093630242d5f238dRamin Zaghi     * of the native JNI libraries the application bundles. Will be {@code null}
677ff0c470833b2cb4130a30895093630242d5f238dRamin Zaghi     * if this application does not require any particular ABI.
678ff0c470833b2cb4130a30895093630242d5f238dRamin Zaghi     *
679ff110bd61a69f7ed8602ae14b27f7befec76b2e7Narayan Kamath     * If non-null, the application will always be launched with this ABI.
680ff110bd61a69f7ed8602ae14b27f7befec76b2e7Narayan Kamath     *
681ff110bd61a69f7ed8602ae14b27f7befec76b2e7Narayan Kamath     * {@hide}
682ff110bd61a69f7ed8602ae14b27f7befec76b2e7Narayan Kamath     */
683ff110bd61a69f7ed8602ae14b27f7befec76b2e7Narayan Kamath    public String primaryCpuAbi;
684ff110bd61a69f7ed8602ae14b27f7befec76b2e7Narayan Kamath
685ff110bd61a69f7ed8602ae14b27f7befec76b2e7Narayan Kamath    /**
686ff110bd61a69f7ed8602ae14b27f7befec76b2e7Narayan Kamath     * The secondary ABI for this application. Might be non-null for multi-arch
687ff110bd61a69f7ed8602ae14b27f7befec76b2e7Narayan Kamath     * installs. The application itself never uses this ABI, but other applications that
688ff110bd61a69f7ed8602ae14b27f7befec76b2e7Narayan Kamath     * use its code might.
689ff110bd61a69f7ed8602ae14b27f7befec76b2e7Narayan Kamath     *
690ff110bd61a69f7ed8602ae14b27f7befec76b2e7Narayan Kamath     * {@hide}
691ff110bd61a69f7ed8602ae14b27f7befec76b2e7Narayan Kamath     */
692ff110bd61a69f7ed8602ae14b27f7befec76b2e7Narayan Kamath    public String secondaryCpuAbi;
693ff110bd61a69f7ed8602ae14b27f7befec76b2e7Narayan Kamath
694ff110bd61a69f7ed8602ae14b27f7befec76b2e7Narayan Kamath    /**
6959066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * The kernel user-ID that has been assigned to this application;
6969066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * currently this is not a unique ID (multiple applications can have
6979066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * the same uid).
6989066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     */
6999066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    public int uid;
7009066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project
7018d112675879a2b83197d3b4ae4fb623abd1a1ec3Mitsuru Oshima    /**
7023b3e145d3c41fd68974e08f799b1fd1f8f060cf0Dianne Hackborn     * The minimum SDK version this application targets.  It may run on earlier
703a96cbb435d7b2197ab2b61fd98d14cbd6e0c5c3dDianne Hackborn     * versions, but it knows how to work with any new behavior added at this
704a96cbb435d7b2197ab2b61fd98d14cbd6e0c5c3dDianne Hackborn     * version.  Will be {@link android.os.Build.VERSION_CODES#CUR_DEVELOPMENT}
705a96cbb435d7b2197ab2b61fd98d14cbd6e0c5c3dDianne Hackborn     * if this is a development build and the app is targeting that.  You should
706a96cbb435d7b2197ab2b61fd98d14cbd6e0c5c3dDianne Hackborn     * compare that this number is >= the SDK version number at which your
707a96cbb435d7b2197ab2b61fd98d14cbd6e0c5c3dDianne Hackborn     * behavior was introduced.
708a96cbb435d7b2197ab2b61fd98d14cbd6e0c5c3dDianne Hackborn     */
709a96cbb435d7b2197ab2b61fd98d14cbd6e0c5c3dDianne Hackborn    public int targetSdkVersion;
7108472e6189cd4e0520c047bdb28457abc728b373fDianne Hackborn
7118472e6189cd4e0520c047bdb28457abc728b373fDianne Hackborn    /**
7128472e6189cd4e0520c047bdb28457abc728b373fDianne Hackborn     * The app's declared version code.
7138472e6189cd4e0520c047bdb28457abc728b373fDianne Hackborn     * @hide
7148472e6189cd4e0520c047bdb28457abc728b373fDianne Hackborn     */
7158472e6189cd4e0520c047bdb28457abc728b373fDianne Hackborn    public int versionCode;
7168472e6189cd4e0520c047bdb28457abc728b373fDianne Hackborn
717a96cbb435d7b2197ab2b61fd98d14cbd6e0c5c3dDianne Hackborn    /**
7189066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * When false, indicates that all components within this application are
7199066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * considered disabled, regardless of their individually set enabled status.
7209066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     */
7219066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    public boolean enabled = true;
7229066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project
72354e570f78b45d6c47578a4a2513097b590b6d43fDianne Hackborn    /**
7240ac3031c159a0904e73eb4439cdc724d8df4a6e6Dianne Hackborn     * For convenient access to the current enabled setting of this app.
7250ac3031c159a0904e73eb4439cdc724d8df4a6e6Dianne Hackborn     * @hide
7260ac3031c159a0904e73eb4439cdc724d8df4a6e6Dianne Hackborn     */
7270ac3031c159a0904e73eb4439cdc724d8df4a6e6Dianne Hackborn    public int enabledSetting = PackageManager.COMPONENT_ENABLED_STATE_DEFAULT;
7280ac3031c159a0904e73eb4439cdc724d8df4a6e6Dianne Hackborn
7290ac3031c159a0904e73eb4439cdc724d8df4a6e6Dianne Hackborn    /**
73054e570f78b45d6c47578a4a2513097b590b6d43fDianne Hackborn     * For convenient access to package's install location.
73154e570f78b45d6c47578a4a2513097b590b6d43fDianne Hackborn     * @hide
73254e570f78b45d6c47578a4a2513097b590b6d43fDianne Hackborn     */
73354e570f78b45d6c47578a4a2513097b590b6d43fDianne Hackborn    public int installLocation = PackageInfo.INSTALL_LOCATION_UNSPECIFIED;
73412d0b4cd960e18493b1dc237adbfabed432c9df5Jose Lima
7359066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    public void dump(Printer pw, String prefix) {
7366ac42aeed905181b484f97a53db57a17134ef7a8Dianne Hackborn        dump(pw, prefix, DUMP_FLAG_ALL);
7376ac42aeed905181b484f97a53db57a17134ef7a8Dianne Hackborn    }
7386ac42aeed905181b484f97a53db57a17134ef7a8Dianne Hackborn
7396ac42aeed905181b484f97a53db57a17134ef7a8Dianne Hackborn    /** @hide */
7406ac42aeed905181b484f97a53db57a17134ef7a8Dianne Hackborn    public void dump(Printer pw, String prefix, int flags) {
7419066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        super.dumpFront(pw, prefix);
7426ac42aeed905181b484f97a53db57a17134ef7a8Dianne Hackborn        if ((flags&DUMP_FLAG_DETAILS) != 0 && className != null) {
74312527f9fb1cb0a1ad3be8149c1c88a0e731cb4d6Dianne Hackborn            pw.println(prefix + "className=" + className);
74412527f9fb1cb0a1ad3be8149c1c88a0e731cb4d6Dianne Hackborn        }
74512527f9fb1cb0a1ad3be8149c1c88a0e731cb4d6Dianne Hackborn        if (permission != null) {
74612527f9fb1cb0a1ad3be8149c1c88a0e731cb4d6Dianne Hackborn            pw.println(prefix + "permission=" + permission);
74712527f9fb1cb0a1ad3be8149c1c88a0e731cb4d6Dianne Hackborn        }
74839792d2262352ae775091876d5488d2412a2ff92Dianne Hackborn        pw.println(prefix + "processName=" + processName);
7496ac42aeed905181b484f97a53db57a17134ef7a8Dianne Hackborn        if ((flags&DUMP_FLAG_DETAILS) != 0) {
7506ac42aeed905181b484f97a53db57a17134ef7a8Dianne Hackborn            pw.println(prefix + "taskAffinity=" + taskAffinity);
7516ac42aeed905181b484f97a53db57a17134ef7a8Dianne Hackborn        }
75239792d2262352ae775091876d5488d2412a2ff92Dianne Hackborn        pw.println(prefix + "uid=" + uid + " flags=0x" + Integer.toHexString(flags)
753b9f8a5204a1b0b3919fa921e858d04124c582828Alex Klyubin                + " privateFlags=0x" + Integer.toHexString(privateFlags)
75439792d2262352ae775091876d5488d2412a2ff92Dianne Hackborn                + " theme=0x" + Integer.toHexString(theme));
7556ac42aeed905181b484f97a53db57a17134ef7a8Dianne Hackborn        if ((flags&DUMP_FLAG_DETAILS) != 0) {
7566ac42aeed905181b484f97a53db57a17134ef7a8Dianne Hackborn            pw.println(prefix + "requiresSmallestWidthDp=" + requiresSmallestWidthDp
7576ac42aeed905181b484f97a53db57a17134ef7a8Dianne Hackborn                    + " compatibleWidthLimitDp=" + compatibleWidthLimitDp
7586ac42aeed905181b484f97a53db57a17134ef7a8Dianne Hackborn                    + " largestWidthLimitDp=" + largestWidthLimitDp);
7596ac42aeed905181b484f97a53db57a17134ef7a8Dianne Hackborn        }
7609066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        pw.println(prefix + "sourceDir=" + sourceDir);
7618a4c9721a9e09d20c63381c13fa29bd9f7cbc3e3Jeff Sharkey        if (!Objects.equals(sourceDir, publicSourceDir)) {
76239792d2262352ae775091876d5488d2412a2ff92Dianne Hackborn            pw.println(prefix + "publicSourceDir=" + publicSourceDir);
76339792d2262352ae775091876d5488d2412a2ff92Dianne Hackborn        }
7648a4c9721a9e09d20c63381c13fa29bd9f7cbc3e3Jeff Sharkey        if (!ArrayUtils.isEmpty(splitSourceDirs)) {
7658a4c9721a9e09d20c63381c13fa29bd9f7cbc3e3Jeff Sharkey            pw.println(prefix + "splitSourceDirs=" + Arrays.toString(splitSourceDirs));
7668a4c9721a9e09d20c63381c13fa29bd9f7cbc3e3Jeff Sharkey        }
7678a4c9721a9e09d20c63381c13fa29bd9f7cbc3e3Jeff Sharkey        if (!ArrayUtils.isEmpty(splitPublicSourceDirs)
7688a4c9721a9e09d20c63381c13fa29bd9f7cbc3e3Jeff Sharkey                && !Arrays.equals(splitSourceDirs, splitPublicSourceDirs)) {
7698a4c9721a9e09d20c63381c13fa29bd9f7cbc3e3Jeff Sharkey            pw.println(prefix + "splitPublicSourceDirs=" + Arrays.toString(splitPublicSourceDirs));
7708a4c9721a9e09d20c63381c13fa29bd9f7cbc3e3Jeff Sharkey        }
77139792d2262352ae775091876d5488d2412a2ff92Dianne Hackborn        if (resourceDirs != null) {
772e6748ce31f18782b7a47a5b2eb251efd83e7b609Andreas Gampe            pw.println(prefix + "resourceDirs=" + Arrays.toString(resourceDirs));
77339792d2262352ae775091876d5488d2412a2ff92Dianne Hackborn        }
7746ac42aeed905181b484f97a53db57a17134ef7a8Dianne Hackborn        if ((flags&DUMP_FLAG_DETAILS) != 0 && seinfo != null) {
7750f40dc923c67e8822f9157aec4f786f73848af07Robert Craig            pw.println(prefix + "seinfo=" + seinfo);
7760f40dc923c67e8822f9157aec4f786f73848af07Robert Craig        }
7779066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        pw.println(prefix + "dataDir=" + dataDir);
7786ac42aeed905181b484f97a53db57a17134ef7a8Dianne Hackborn        if ((flags&DUMP_FLAG_DETAILS) != 0) {
7796ac42aeed905181b484f97a53db57a17134ef7a8Dianne Hackborn            pw.println(prefix + "deviceEncryptedDataDir=" + deviceEncryptedDataDir);
7806ac42aeed905181b484f97a53db57a17134ef7a8Dianne Hackborn            pw.println(prefix + "credentialEncryptedDataDir=" + credentialEncryptedDataDir);
7816ac42aeed905181b484f97a53db57a17134ef7a8Dianne Hackborn            if (sharedLibraryFiles != null) {
7826ac42aeed905181b484f97a53db57a17134ef7a8Dianne Hackborn                pw.println(prefix + "sharedLibraryFiles=" + Arrays.toString(sharedLibraryFiles));
7836ac42aeed905181b484f97a53db57a17134ef7a8Dianne Hackborn            }
78412527f9fb1cb0a1ad3be8149c1c88a0e731cb4d6Dianne Hackborn        }
7858472e6189cd4e0520c047bdb28457abc728b373fDianne Hackborn        pw.println(prefix + "enabled=" + enabled + " targetSdkVersion=" + targetSdkVersion
7868472e6189cd4e0520c047bdb28457abc728b373fDianne Hackborn                + " versionCode=" + versionCode);
7876ac42aeed905181b484f97a53db57a17134ef7a8Dianne Hackborn        if ((flags&DUMP_FLAG_DETAILS) != 0) {
7886ac42aeed905181b484f97a53db57a17134ef7a8Dianne Hackborn            if (manageSpaceActivityName != null) {
7896ac42aeed905181b484f97a53db57a17134ef7a8Dianne Hackborn                pw.println(prefix + "manageSpaceActivityName=" + manageSpaceActivityName);
7906ac42aeed905181b484f97a53db57a17134ef7a8Dianne Hackborn            }
7916ac42aeed905181b484f97a53db57a17134ef7a8Dianne Hackborn            if (descriptionRes != 0) {
7926ac42aeed905181b484f97a53db57a17134ef7a8Dianne Hackborn                pw.println(prefix + "description=0x" + Integer.toHexString(descriptionRes));
7936ac42aeed905181b484f97a53db57a17134ef7a8Dianne Hackborn            }
7946ac42aeed905181b484f97a53db57a17134ef7a8Dianne Hackborn            if (uiOptions != 0) {
7956ac42aeed905181b484f97a53db57a17134ef7a8Dianne Hackborn                pw.println(prefix + "uiOptions=0x" + Integer.toHexString(uiOptions));
7966ac42aeed905181b484f97a53db57a17134ef7a8Dianne Hackborn            }
7976ac42aeed905181b484f97a53db57a17134ef7a8Dianne Hackborn            pw.println(prefix + "supportsRtl=" + (hasRtlSupport() ? "true" : "false"));
7986ac42aeed905181b484f97a53db57a17134ef7a8Dianne Hackborn            if (fullBackupContent > 0) {
7996ac42aeed905181b484f97a53db57a17134ef7a8Dianne Hackborn                pw.println(prefix + "fullBackupContent=@xml/" + fullBackupContent);
8006ac42aeed905181b484f97a53db57a17134ef7a8Dianne Hackborn            } else {
8016ac42aeed905181b484f97a53db57a17134ef7a8Dianne Hackborn                pw.println(prefix + "fullBackupContent="
8026ac42aeed905181b484f97a53db57a17134ef7a8Dianne Hackborn                        + (fullBackupContent < 0 ? "false" : "true"));
8036ac42aeed905181b484f97a53db57a17134ef7a8Dianne Hackborn            }
804303650c9cdb7cec88e7ec20747b161d9fff10719Matthew Williams        }
8059066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        super.dumpBack(pw, prefix);
8069066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    }
80759dfce8bdaf011337530a0dbec7f7280871f9bc9Fabrice Di Meglio
80859dfce8bdaf011337530a0dbec7f7280871f9bc9Fabrice Di Meglio    /**
80959dfce8bdaf011337530a0dbec7f7280871f9bc9Fabrice Di Meglio     * @return true if "supportsRtl" has been set to true in the AndroidManifest
81059dfce8bdaf011337530a0dbec7f7280871f9bc9Fabrice Di Meglio     * @hide
81159dfce8bdaf011337530a0dbec7f7280871f9bc9Fabrice Di Meglio     */
81259dfce8bdaf011337530a0dbec7f7280871f9bc9Fabrice Di Meglio    public boolean hasRtlSupport() {
81359dfce8bdaf011337530a0dbec7f7280871f9bc9Fabrice Di Meglio        return (flags & FLAG_SUPPORTS_RTL) == FLAG_SUPPORTS_RTL;
81459dfce8bdaf011337530a0dbec7f7280871f9bc9Fabrice Di Meglio    }
815ba75a9b6bab16114a8206015a4d2c7ce3bd70f2aJeff Sharkey
816ba75a9b6bab16114a8206015a4d2c7ce3bd70f2aJeff Sharkey    /** {@hide} */
817ba75a9b6bab16114a8206015a4d2c7ce3bd70f2aJeff Sharkey    public boolean hasCode() {
818ba75a9b6bab16114a8206015a4d2c7ce3bd70f2aJeff Sharkey        return (flags & FLAG_HAS_CODE) != 0;
819ba75a9b6bab16114a8206015a4d2c7ce3bd70f2aJeff Sharkey    }
820ba75a9b6bab16114a8206015a4d2c7ce3bd70f2aJeff Sharkey
8219066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    public static class DisplayNameComparator
8229066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project            implements Comparator<ApplicationInfo> {
8239066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        public DisplayNameComparator(PackageManager pm) {
8249066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project            mPM = pm;
8259066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        }
8269066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project
8279066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        public final int compare(ApplicationInfo aa, ApplicationInfo ab) {
8289066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project            CharSequence  sa = mPM.getApplicationLabel(aa);
8299066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project            if (sa == null) {
8309066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project                sa = aa.packageName;
8319066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project            }
8329066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project            CharSequence  sb = mPM.getApplicationLabel(ab);
8339066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project            if (sb == null) {
8349066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project                sb = ab.packageName;
8359066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project            }
8369066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project
8379066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project            return sCollator.compare(sa.toString(), sb.toString());
8389066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        }
8399066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project
8409066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        private final Collator   sCollator = Collator.getInstance();
8419066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        private PackageManager   mPM;
8429066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    }
8439066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project
8449066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    public ApplicationInfo() {
8459066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    }
8469066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project
8479066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    public ApplicationInfo(ApplicationInfo orig) {
8489066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        super(orig);
8499066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        taskAffinity = orig.taskAffinity;
8509066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        permission = orig.permission;
8519066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        processName = orig.processName;
8529066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        className = orig.className;
8539066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        theme = orig.theme;
8549066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        flags = orig.flags;
855b9f8a5204a1b0b3919fa921e858d04124c582828Alex Klyubin        privateFlags = orig.privateFlags;
856df6e980e3f63eb0f6f9eb437fa925d5009cd9c44Dianne Hackborn        requiresSmallestWidthDp = orig.requiresSmallestWidthDp;
857df6e980e3f63eb0f6f9eb437fa925d5009cd9c44Dianne Hackborn        compatibleWidthLimitDp = orig.compatibleWidthLimitDp;
8582762ff3dc864018352362f6d103de471f9529ba6Dianne Hackborn        largestWidthLimitDp = orig.largestWidthLimitDp;
859b2b9ab8354da1485178cd8d8e9d89ac915b3f269Jeff Sharkey        volumeUuid = orig.volumeUuid;
8607f1a57a3e709b9e1fdb03a7a8af5f13859f7f1adJeff Sharkey        scanSourceDir = orig.scanSourceDir;
8617f1a57a3e709b9e1fdb03a7a8af5f13859f7f1adJeff Sharkey        scanPublicSourceDir = orig.scanPublicSourceDir;
8629066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        sourceDir = orig.sourceDir;
8639066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        publicSourceDir = orig.publicSourceDir;
8648a4c9721a9e09d20c63381c13fa29bd9f7cbc3e3Jeff Sharkey        splitSourceDirs = orig.splitSourceDirs;
8658a4c9721a9e09d20c63381c13fa29bd9f7cbc3e3Jeff Sharkey        splitPublicSourceDirs = orig.splitPublicSourceDirs;
86685387d7ba36e56b291cbde87acb5a5b2200fe01cKenny Root        nativeLibraryDir = orig.nativeLibraryDir;
8677dba6eb3ac4fd6c8195cb0d0425866de50a9e114Narayan Kamath        secondaryNativeLibraryDir = orig.secondaryNativeLibraryDir;
86884f1294a958b42000755dc6570e3eda72ab42140Jeff Sharkey        nativeLibraryRootDir = orig.nativeLibraryRootDir;
86984f1294a958b42000755dc6570e3eda72ab42140Jeff Sharkey        nativeLibraryRootRequiresIsa = orig.nativeLibraryRootRequiresIsa;
870ff110bd61a69f7ed8602ae14b27f7befec76b2e7Narayan Kamath        primaryCpuAbi = orig.primaryCpuAbi;
871ff110bd61a69f7ed8602ae14b27f7befec76b2e7Narayan Kamath        secondaryCpuAbi = orig.secondaryCpuAbi;
872d1ab01682b136b586aac94334f976f03c762b3c7Kenny Root        resourceDirs = orig.resourceDirs;
8730f40dc923c67e8822f9157aec4f786f73848af07Robert Craig        seinfo = orig.seinfo;
8749066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        sharedLibraryFiles = orig.sharedLibraryFiles;
8759066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        dataDir = orig.dataDir;
87615447798a38d2b5acb1998731340255f4203f294Jeff Sharkey        deviceEncryptedDataDir = orig.deviceEncryptedDataDir;
87715447798a38d2b5acb1998731340255f4203f294Jeff Sharkey        credentialEncryptedDataDir = orig.credentialEncryptedDataDir;
8789066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        uid = orig.uid;
879a96cbb435d7b2197ab2b61fd98d14cbd6e0c5c3dDianne Hackborn        targetSdkVersion = orig.targetSdkVersion;
8808472e6189cd4e0520c047bdb28457abc728b373fDianne Hackborn        versionCode = orig.versionCode;
8819066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        enabled = orig.enabled;
8820ac3031c159a0904e73eb4439cdc724d8df4a6e6Dianne Hackborn        enabledSetting = orig.enabledSetting;
88354e570f78b45d6c47578a4a2513097b590b6d43fDianne Hackborn        installLocation = orig.installLocation;
8849066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        manageSpaceActivityName = orig.manageSpaceActivityName;
8859066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        descriptionRes = orig.descriptionRes;
886269248d112e35fe8e9f0d5d11c96dcb2ac1118b0Adam Powell        uiOptions = orig.uiOptions;
887bcb0255770caa6b053da100de13beb840da71b21Christopher Tate        backupAgentName = orig.backupAgentName;
888303650c9cdb7cec88e7ec20747b161d9fff10719Matthew Williams        fullBackupContent = orig.fullBackupContent;
8899066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    }
8909066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project
8919066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    public String toString() {
8929066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        return "ApplicationInfo{"
8939066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project            + Integer.toHexString(System.identityHashCode(this))
8949066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project            + " " + packageName + "}";
8959066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    }
8969066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project
8979066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    public int describeContents() {
8989066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        return 0;
8999066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    }
9009066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project
9019066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    public void writeToParcel(Parcel dest, int parcelableFlags) {
9029066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        super.writeToParcel(dest, parcelableFlags);
9039066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        dest.writeString(taskAffinity);
9049066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        dest.writeString(permission);
9059066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        dest.writeString(processName);
9069066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        dest.writeString(className);
9079066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        dest.writeInt(theme);
9089066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        dest.writeInt(flags);
909b9f8a5204a1b0b3919fa921e858d04124c582828Alex Klyubin        dest.writeInt(privateFlags);
910df6e980e3f63eb0f6f9eb437fa925d5009cd9c44Dianne Hackborn        dest.writeInt(requiresSmallestWidthDp);
911df6e980e3f63eb0f6f9eb437fa925d5009cd9c44Dianne Hackborn        dest.writeInt(compatibleWidthLimitDp);
9122762ff3dc864018352362f6d103de471f9529ba6Dianne Hackborn        dest.writeInt(largestWidthLimitDp);
913b2b9ab8354da1485178cd8d8e9d89ac915b3f269Jeff Sharkey        dest.writeString(volumeUuid);
9147f1a57a3e709b9e1fdb03a7a8af5f13859f7f1adJeff Sharkey        dest.writeString(scanSourceDir);
9157f1a57a3e709b9e1fdb03a7a8af5f13859f7f1adJeff Sharkey        dest.writeString(scanPublicSourceDir);
9169066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        dest.writeString(sourceDir);
9179066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        dest.writeString(publicSourceDir);
9188a4c9721a9e09d20c63381c13fa29bd9f7cbc3e3Jeff Sharkey        dest.writeStringArray(splitSourceDirs);
9198a4c9721a9e09d20c63381c13fa29bd9f7cbc3e3Jeff Sharkey        dest.writeStringArray(splitPublicSourceDirs);
92085387d7ba36e56b291cbde87acb5a5b2200fe01cKenny Root        dest.writeString(nativeLibraryDir);
9217dba6eb3ac4fd6c8195cb0d0425866de50a9e114Narayan Kamath        dest.writeString(secondaryNativeLibraryDir);
92284f1294a958b42000755dc6570e3eda72ab42140Jeff Sharkey        dest.writeString(nativeLibraryRootDir);
92384f1294a958b42000755dc6570e3eda72ab42140Jeff Sharkey        dest.writeInt(nativeLibraryRootRequiresIsa ? 1 : 0);
924ff110bd61a69f7ed8602ae14b27f7befec76b2e7Narayan Kamath        dest.writeString(primaryCpuAbi);
925ff110bd61a69f7ed8602ae14b27f7befec76b2e7Narayan Kamath        dest.writeString(secondaryCpuAbi);
926d1ab01682b136b586aac94334f976f03c762b3c7Kenny Root        dest.writeStringArray(resourceDirs);
9270f40dc923c67e8822f9157aec4f786f73848af07Robert Craig        dest.writeString(seinfo);
9289066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        dest.writeStringArray(sharedLibraryFiles);
9299066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        dest.writeString(dataDir);
93015447798a38d2b5acb1998731340255f4203f294Jeff Sharkey        dest.writeString(deviceEncryptedDataDir);
93115447798a38d2b5acb1998731340255f4203f294Jeff Sharkey        dest.writeString(credentialEncryptedDataDir);
9329066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        dest.writeInt(uid);
933a96cbb435d7b2197ab2b61fd98d14cbd6e0c5c3dDianne Hackborn        dest.writeInt(targetSdkVersion);
9348472e6189cd4e0520c047bdb28457abc728b373fDianne Hackborn        dest.writeInt(versionCode);
9359066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        dest.writeInt(enabled ? 1 : 0);
9360ac3031c159a0904e73eb4439cdc724d8df4a6e6Dianne Hackborn        dest.writeInt(enabledSetting);
93754e570f78b45d6c47578a4a2513097b590b6d43fDianne Hackborn        dest.writeInt(installLocation);
9389066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        dest.writeString(manageSpaceActivityName);
939181fafaf48208978b8ba2022683ffa78aaeddde1Christopher Tate        dest.writeString(backupAgentName);
9409066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        dest.writeInt(descriptionRes);
941269248d112e35fe8e9f0d5d11c96dcb2ac1118b0Adam Powell        dest.writeInt(uiOptions);
942303650c9cdb7cec88e7ec20747b161d9fff10719Matthew Williams        dest.writeInt(fullBackupContent);
9439066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    }
9449066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project
9459066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    public static final Parcelable.Creator<ApplicationInfo> CREATOR
9469066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project            = new Parcelable.Creator<ApplicationInfo>() {
9479066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        public ApplicationInfo createFromParcel(Parcel source) {
9489066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project            return new ApplicationInfo(source);
9499066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        }
9509066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        public ApplicationInfo[] newArray(int size) {
9519066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project            return new ApplicationInfo[size];
9529066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        }
9539066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    };
9549066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project
9559066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    private ApplicationInfo(Parcel source) {
9569066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        super(source);
9579066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        taskAffinity = source.readString();
9589066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        permission = source.readString();
9599066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        processName = source.readString();
9609066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        className = source.readString();
9619066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        theme = source.readInt();
9629066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        flags = source.readInt();
963b9f8a5204a1b0b3919fa921e858d04124c582828Alex Klyubin        privateFlags = source.readInt();
964df6e980e3f63eb0f6f9eb437fa925d5009cd9c44Dianne Hackborn        requiresSmallestWidthDp = source.readInt();
965df6e980e3f63eb0f6f9eb437fa925d5009cd9c44Dianne Hackborn        compatibleWidthLimitDp = source.readInt();
9662762ff3dc864018352362f6d103de471f9529ba6Dianne Hackborn        largestWidthLimitDp = source.readInt();
967b2b9ab8354da1485178cd8d8e9d89ac915b3f269Jeff Sharkey        volumeUuid = source.readString();
9687f1a57a3e709b9e1fdb03a7a8af5f13859f7f1adJeff Sharkey        scanSourceDir = source.readString();
9697f1a57a3e709b9e1fdb03a7a8af5f13859f7f1adJeff Sharkey        scanPublicSourceDir = source.readString();
9709066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        sourceDir = source.readString();
9719066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        publicSourceDir = source.readString();
9728a4c9721a9e09d20c63381c13fa29bd9f7cbc3e3Jeff Sharkey        splitSourceDirs = source.readStringArray();
9738a4c9721a9e09d20c63381c13fa29bd9f7cbc3e3Jeff Sharkey        splitPublicSourceDirs = source.readStringArray();
97485387d7ba36e56b291cbde87acb5a5b2200fe01cKenny Root        nativeLibraryDir = source.readString();
9757dba6eb3ac4fd6c8195cb0d0425866de50a9e114Narayan Kamath        secondaryNativeLibraryDir = source.readString();
97684f1294a958b42000755dc6570e3eda72ab42140Jeff Sharkey        nativeLibraryRootDir = source.readString();
97784f1294a958b42000755dc6570e3eda72ab42140Jeff Sharkey        nativeLibraryRootRequiresIsa = source.readInt() != 0;
978ff110bd61a69f7ed8602ae14b27f7befec76b2e7Narayan Kamath        primaryCpuAbi = source.readString();
979ff110bd61a69f7ed8602ae14b27f7befec76b2e7Narayan Kamath        secondaryCpuAbi = source.readString();
980d1ab01682b136b586aac94334f976f03c762b3c7Kenny Root        resourceDirs = source.readStringArray();
9810f40dc923c67e8822f9157aec4f786f73848af07Robert Craig        seinfo = source.readString();
9829066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        sharedLibraryFiles = source.readStringArray();
9839066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        dataDir = source.readString();
98415447798a38d2b5acb1998731340255f4203f294Jeff Sharkey        deviceEncryptedDataDir = source.readString();
98515447798a38d2b5acb1998731340255f4203f294Jeff Sharkey        credentialEncryptedDataDir = source.readString();
9869066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        uid = source.readInt();
987a96cbb435d7b2197ab2b61fd98d14cbd6e0c5c3dDianne Hackborn        targetSdkVersion = source.readInt();
9888472e6189cd4e0520c047bdb28457abc728b373fDianne Hackborn        versionCode = source.readInt();
9899066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        enabled = source.readInt() != 0;
9900ac3031c159a0904e73eb4439cdc724d8df4a6e6Dianne Hackborn        enabledSetting = source.readInt();
99154e570f78b45d6c47578a4a2513097b590b6d43fDianne Hackborn        installLocation = source.readInt();
9929066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        manageSpaceActivityName = source.readString();
993181fafaf48208978b8ba2022683ffa78aaeddde1Christopher Tate        backupAgentName = source.readString();
9949066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        descriptionRes = source.readInt();
995269248d112e35fe8e9f0d5d11c96dcb2ac1118b0Adam Powell        uiOptions = source.readInt();
996303650c9cdb7cec88e7ec20747b161d9fff10719Matthew Williams        fullBackupContent = source.readInt();
9979066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    }
9988d112675879a2b83197d3b4ae4fb623abd1a1ec3Mitsuru Oshima
9999066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    /**
10009066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * Retrieve the textual description of the application.  This
10019066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * will call back on the given PackageManager to load the description from
10029066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * the application.
10039066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     *
10049066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * @param pm A PackageManager from which the label can be loaded; usually
10059066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * the PackageManager from which you originally retrieved this item.
10069066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     *
10079066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * @return Returns a CharSequence containing the application's description.
10089066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * If there is no description, null is returned.
10099066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     */
10109066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    public CharSequence loadDescription(PackageManager pm) {
10119066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        if (descriptionRes != 0) {
101207330791116513710d879c45b2f095cd314cbfd0Jeff Brown            CharSequence label = pm.getText(packageName, descriptionRes, this);
10139066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project            if (label != null) {
10149066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project                return label;
10159066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project            }
10169066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        }
10179066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        return null;
10189066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    }
1019e5fb328825995aa33b5b7ecf8b5bee2b17f81715Mitsuru Oshima
1020e5fb328825995aa33b5b7ecf8b5bee2b17f81715Mitsuru Oshima    /**
1021e5fb328825995aa33b5b7ecf8b5bee2b17f81715Mitsuru Oshima     * Disable compatibility mode
1022e5fb328825995aa33b5b7ecf8b5bee2b17f81715Mitsuru Oshima     *
1023e5fb328825995aa33b5b7ecf8b5bee2b17f81715Mitsuru Oshima     * @hide
1024e5fb328825995aa33b5b7ecf8b5bee2b17f81715Mitsuru Oshima     */
1025e5fb328825995aa33b5b7ecf8b5bee2b17f81715Mitsuru Oshima    public void disableCompatibilityMode() {
102669fff4a72d4dfc9208db79d773ef3ca23350287eMitsuru Oshima        flags |= (FLAG_SUPPORTS_LARGE_SCREENS | FLAG_SUPPORTS_NORMAL_SCREENS |
102711b822d2a91ea17c34c0cb1c11e80a9a30d72864Dianne Hackborn                FLAG_SUPPORTS_SMALL_SCREENS | FLAG_RESIZEABLE_FOR_SCREENS |
102814cee9f688c32d63d8521188e7422811629bb7c2Dianne Hackborn                FLAG_SUPPORTS_SCREEN_DENSITIES | FLAG_SUPPORTS_XLARGE_SCREENS);
1029e5fb328825995aa33b5b7ecf8b5bee2b17f81715Mitsuru Oshima    }
103015447798a38d2b5acb1998731340255f4203f294Jeff Sharkey
103115447798a38d2b5acb1998731340255f4203f294Jeff Sharkey    /** {@hide} */
103215447798a38d2b5acb1998731340255f4203f294Jeff Sharkey    public void initForUser(int userId) {
103315447798a38d2b5acb1998731340255f4203f294Jeff Sharkey        uid = UserHandle.getUid(userId, UserHandle.getAppId(uid));
103415447798a38d2b5acb1998731340255f4203f294Jeff Sharkey
103515447798a38d2b5acb1998731340255f4203f294Jeff Sharkey        if ("android".equals(packageName)) {
103615447798a38d2b5acb1998731340255f4203f294Jeff Sharkey            dataDir = Environment.getDataSystemDirectory().getAbsolutePath();
103715447798a38d2b5acb1998731340255f4203f294Jeff Sharkey            return;
103815447798a38d2b5acb1998731340255f4203f294Jeff Sharkey        }
103915447798a38d2b5acb1998731340255f4203f294Jeff Sharkey
104015447798a38d2b5acb1998731340255f4203f294Jeff Sharkey        deviceEncryptedDataDir = Environment
104115447798a38d2b5acb1998731340255f4203f294Jeff Sharkey                .getDataUserDeviceEncryptedPackageDirectory(volumeUuid, userId, packageName)
104215447798a38d2b5acb1998731340255f4203f294Jeff Sharkey                .getAbsolutePath();
104315447798a38d2b5acb1998731340255f4203f294Jeff Sharkey        credentialEncryptedDataDir = Environment
104415447798a38d2b5acb1998731340255f4203f294Jeff Sharkey                .getDataUserCredentialEncryptedPackageDirectory(volumeUuid, userId, packageName)
104515447798a38d2b5acb1998731340255f4203f294Jeff Sharkey                .getAbsolutePath();
104615447798a38d2b5acb1998731340255f4203f294Jeff Sharkey
1047f9fc6d6cc05595241bc7ced6d4cab97b45f9b901Jeff Sharkey        if ((privateFlags & PRIVATE_FLAG_FORCE_DEVICE_ENCRYPTED) != 0
1048ba51235ef5c598d845b77fcf14491329493da34fJeff Sharkey                && StorageManager.isFileBasedEncryptionEnabled()) {
104915447798a38d2b5acb1998731340255f4203f294Jeff Sharkey            dataDir = deviceEncryptedDataDir;
105015447798a38d2b5acb1998731340255f4203f294Jeff Sharkey        } else {
105115447798a38d2b5acb1998731340255f4203f294Jeff Sharkey            dataDir = credentialEncryptedDataDir;
105215447798a38d2b5acb1998731340255f4203f294Jeff Sharkey        }
105315447798a38d2b5acb1998731340255f4203f294Jeff Sharkey    }
105415447798a38d2b5acb1998731340255f4203f294Jeff Sharkey
105507330791116513710d879c45b2f095cd314cbfd0Jeff Brown    /**
105607330791116513710d879c45b2f095cd314cbfd0Jeff Brown     * @hide
105707330791116513710d879c45b2f095cd314cbfd0Jeff Brown     */
1058a709314537164d959a18ee78768c69c4a9cb33c7Alexandra Gherghina    @Override
1059a709314537164d959a18ee78768c69c4a9cb33c7Alexandra Gherghina    public Drawable loadDefaultIcon(PackageManager pm) {
106007330791116513710d879c45b2f095cd314cbfd0Jeff Brown        if ((flags & FLAG_EXTERNAL_STORAGE) != 0
106107330791116513710d879c45b2f095cd314cbfd0Jeff Brown                && isPackageUnavailable(pm)) {
106207330791116513710d879c45b2f095cd314cbfd0Jeff Brown            return Resources.getSystem().getDrawable(
106307330791116513710d879c45b2f095cd314cbfd0Jeff Brown                    com.android.internal.R.drawable.sym_app_on_sd_unavailable_icon);
106407330791116513710d879c45b2f095cd314cbfd0Jeff Brown        }
106507330791116513710d879c45b2f095cd314cbfd0Jeff Brown        return pm.getDefaultActivityIcon();
106607330791116513710d879c45b2f095cd314cbfd0Jeff Brown    }
106707330791116513710d879c45b2f095cd314cbfd0Jeff Brown
106807330791116513710d879c45b2f095cd314cbfd0Jeff Brown    private boolean isPackageUnavailable(PackageManager pm) {
106907330791116513710d879c45b2f095cd314cbfd0Jeff Brown        try {
107007330791116513710d879c45b2f095cd314cbfd0Jeff Brown            return pm.getPackageInfo(packageName, 0) == null;
107107330791116513710d879c45b2f095cd314cbfd0Jeff Brown        } catch (NameNotFoundException ex) {
107207330791116513710d879c45b2f095cd314cbfd0Jeff Brown            return true;
107307330791116513710d879c45b2f095cd314cbfd0Jeff Brown        }
107407330791116513710d879c45b2f095cd314cbfd0Jeff Brown    }
1075d746057f2414cba2bdc69257cc5be8cb681bb592Jeff Sharkey
107607330791116513710d879c45b2f095cd314cbfd0Jeff Brown    /**
107707330791116513710d879c45b2f095cd314cbfd0Jeff Brown     * @hide
107807330791116513710d879c45b2f095cd314cbfd0Jeff Brown     */
1079eeea67b8c3678d882d3774edc41242c63daa60faFyodor Kupolov    public boolean isForwardLocked() {
1080eeea67b8c3678d882d3774edc41242c63daa60faFyodor Kupolov        return (privateFlags & ApplicationInfo.PRIVATE_FLAG_FORWARD_LOCK) != 0;
1081eeea67b8c3678d882d3774edc41242c63daa60faFyodor Kupolov    }
1082eeea67b8c3678d882d3774edc41242c63daa60faFyodor Kupolov
1083eeea67b8c3678d882d3774edc41242c63daa60faFyodor Kupolov    /**
1084eeea67b8c3678d882d3774edc41242c63daa60faFyodor Kupolov     * @hide
1085eeea67b8c3678d882d3774edc41242c63daa60faFyodor Kupolov     */
1086a73b8fd1f4faaad00d8a49d6e496aaf249fa7003Jeff Sharkey    @TestApi
1087b94c1657eb0140f7b91f5372a9f76de5a3d87e36Fyodor Kupolov    public boolean isSystemApp() {
1088b94c1657eb0140f7b91f5372a9f76de5a3d87e36Fyodor Kupolov        return (flags & ApplicationInfo.FLAG_SYSTEM) != 0;
1089b94c1657eb0140f7b91f5372a9f76de5a3d87e36Fyodor Kupolov    }
1090b94c1657eb0140f7b91f5372a9f76de5a3d87e36Fyodor Kupolov
1091b94c1657eb0140f7b91f5372a9f76de5a3d87e36Fyodor Kupolov    /**
1092b94c1657eb0140f7b91f5372a9f76de5a3d87e36Fyodor Kupolov     * @hide
1093b94c1657eb0140f7b91f5372a9f76de5a3d87e36Fyodor Kupolov     */
1094a73b8fd1f4faaad00d8a49d6e496aaf249fa7003Jeff Sharkey    @TestApi
1095adc1cf46045ae756d3a9ccbccf6b0f894e4c1eddSvet Ganov    public boolean isPrivilegedApp() {
1096adc1cf46045ae756d3a9ccbccf6b0f894e4c1eddSvet Ganov        return (privateFlags & ApplicationInfo.PRIVATE_FLAG_PRIVILEGED) != 0;
1097adc1cf46045ae756d3a9ccbccf6b0f894e4c1eddSvet Ganov    }
1098adc1cf46045ae756d3a9ccbccf6b0f894e4c1eddSvet Ganov
1099adc1cf46045ae756d3a9ccbccf6b0f894e4c1eddSvet Ganov    /**
1100adc1cf46045ae756d3a9ccbccf6b0f894e4c1eddSvet Ganov     * @hide
1101adc1cf46045ae756d3a9ccbccf6b0f894e4c1eddSvet Ganov     */
1102b94c1657eb0140f7b91f5372a9f76de5a3d87e36Fyodor Kupolov    public boolean isUpdatedSystemApp() {
1103b94c1657eb0140f7b91f5372a9f76de5a3d87e36Fyodor Kupolov        return (flags & ApplicationInfo.FLAG_UPDATED_SYSTEM_APP) != 0;
1104b94c1657eb0140f7b91f5372a9f76de5a3d87e36Fyodor Kupolov    }
1105b94c1657eb0140f7b91f5372a9f76de5a3d87e36Fyodor Kupolov
1106e2d45be4dae116307f8edd85eaa61134221cb8f9Jeff Sharkey    /** @hide */
1107e2d45be4dae116307f8edd85eaa61134221cb8f9Jeff Sharkey    public boolean isInternal() {
1108e2d45be4dae116307f8edd85eaa61134221cb8f9Jeff Sharkey        return (flags & ApplicationInfo.FLAG_EXTERNAL_STORAGE) == 0;
1109e2d45be4dae116307f8edd85eaa61134221cb8f9Jeff Sharkey    }
1110e2d45be4dae116307f8edd85eaa61134221cb8f9Jeff Sharkey
1111e2d45be4dae116307f8edd85eaa61134221cb8f9Jeff Sharkey    /** @hide */
1112e2d45be4dae116307f8edd85eaa61134221cb8f9Jeff Sharkey    public boolean isExternalAsec() {
1113e2d45be4dae116307f8edd85eaa61134221cb8f9Jeff Sharkey        return TextUtils.isEmpty(volumeUuid)
1114e2d45be4dae116307f8edd85eaa61134221cb8f9Jeff Sharkey                && (flags & ApplicationInfo.FLAG_EXTERNAL_STORAGE) != 0;
1115e2d45be4dae116307f8edd85eaa61134221cb8f9Jeff Sharkey    }
1116e2d45be4dae116307f8edd85eaa61134221cb8f9Jeff Sharkey
1117f9fc6d6cc05595241bc7ced6d4cab97b45f9b901Jeff Sharkey    /** @hide */
1118f9fc6d6cc05595241bc7ced6d4cab97b45f9b901Jeff Sharkey    public boolean isEncryptionAware() {
1119f9fc6d6cc05595241bc7ced6d4cab97b45f9b901Jeff Sharkey        return (privateFlags & ApplicationInfo.PRIVATE_FLAG_ENCRYPTION_AWARE) != 0;
1120f9fc6d6cc05595241bc7ced6d4cab97b45f9b901Jeff Sharkey    }
1121f9fc6d6cc05595241bc7ced6d4cab97b45f9b901Jeff Sharkey
11228924e8759f9a8cffb5ad538ca40a7826793aac07Jeff Sharkey    /** @hide */
11238924e8759f9a8cffb5ad538ca40a7826793aac07Jeff Sharkey    public boolean isPartiallyEncryptionAware() {
11248924e8759f9a8cffb5ad538ca40a7826793aac07Jeff Sharkey        return (privateFlags & ApplicationInfo.PRIVATE_FLAG_PARTIALLY_ENCRYPTION_AWARE) != 0;
11258924e8759f9a8cffb5ad538ca40a7826793aac07Jeff Sharkey    }
11268924e8759f9a8cffb5ad538ca40a7826793aac07Jeff Sharkey
1127b94c1657eb0140f7b91f5372a9f76de5a3d87e36Fyodor Kupolov    /**
1128b94c1657eb0140f7b91f5372a9f76de5a3d87e36Fyodor Kupolov     * @hide
1129b94c1657eb0140f7b91f5372a9f76de5a3d87e36Fyodor Kupolov     */
1130a4407bfceef1bdb7eb4d83990722a61082d926c9Jeff Vander Stoep    public boolean isAutoPlayApp() {
1131a4407bfceef1bdb7eb4d83990722a61082d926c9Jeff Vander Stoep        return (privateFlags & ApplicationInfo.PRIVATE_FLAG_AUTOPLAY) != 0;
1132a4407bfceef1bdb7eb4d83990722a61082d926c9Jeff Vander Stoep    }
1133a4407bfceef1bdb7eb4d83990722a61082d926c9Jeff Vander Stoep
1134a4407bfceef1bdb7eb4d83990722a61082d926c9Jeff Vander Stoep    /**
1135a4407bfceef1bdb7eb4d83990722a61082d926c9Jeff Vander Stoep     * @hide
1136a4407bfceef1bdb7eb4d83990722a61082d926c9Jeff Vander Stoep     */
11372acf063da08dfff69f184c9a6a90a7a5fe60d818Svet Ganov    public boolean isEphemeralApp() {
11382acf063da08dfff69f184c9a6a90a7a5fe60d818Svet Ganov        return (privateFlags & ApplicationInfo.PRIVATE_FLAG_EPHEMERAL) != 0;
11392acf063da08dfff69f184c9a6a90a7a5fe60d818Svet Ganov    }
11402acf063da08dfff69f184c9a6a90a7a5fe60d818Svet Ganov
11412acf063da08dfff69f184c9a6a90a7a5fe60d818Svet Ganov    /**
11422acf063da08dfff69f184c9a6a90a7a5fe60d818Svet Ganov     * @hide
11432acf063da08dfff69f184c9a6a90a7a5fe60d818Svet Ganov     */
1144bdbc9692c7cb365d9d3f239baa2377724a6f7bc8Fyodor Kupolov    public boolean isRequiredForSystemUser() {
1145bdbc9692c7cb365d9d3f239baa2377724a6f7bc8Fyodor Kupolov        return (privateFlags & ApplicationInfo.PRIVATE_FLAG_REQUIRED_FOR_SYSTEM_USER) != 0;
1146bdbc9692c7cb365d9d3f239baa2377724a6f7bc8Fyodor Kupolov    }
1147bdbc9692c7cb365d9d3f239baa2377724a6f7bc8Fyodor Kupolov
1148bdbc9692c7cb365d9d3f239baa2377724a6f7bc8Fyodor Kupolov    /**
1149bdbc9692c7cb365d9d3f239baa2377724a6f7bc8Fyodor Kupolov     * @hide
1150bdbc9692c7cb365d9d3f239baa2377724a6f7bc8Fyodor Kupolov     */
115107330791116513710d879c45b2f095cd314cbfd0Jeff Brown    @Override protected ApplicationInfo getApplicationInfo() {
115207330791116513710d879c45b2f095cd314cbfd0Jeff Brown        return this;
115307330791116513710d879c45b2f095cd314cbfd0Jeff Brown    }
1154d746057f2414cba2bdc69257cc5be8cb681bb592Jeff Sharkey
1155d746057f2414cba2bdc69257cc5be8cb681bb592Jeff Sharkey    /** {@hide} */ public void setCodePath(String codePath) { scanSourceDir = codePath; }
1156d746057f2414cba2bdc69257cc5be8cb681bb592Jeff Sharkey    /** {@hide} */ public void setBaseCodePath(String baseCodePath) { sourceDir = baseCodePath; }
1157d746057f2414cba2bdc69257cc5be8cb681bb592Jeff Sharkey    /** {@hide} */ public void setSplitCodePaths(String[] splitCodePaths) { splitSourceDirs = splitCodePaths; }
1158d746057f2414cba2bdc69257cc5be8cb681bb592Jeff Sharkey    /** {@hide} */ public void setResourcePath(String resourcePath) { scanPublicSourceDir = resourcePath; }
1159d746057f2414cba2bdc69257cc5be8cb681bb592Jeff Sharkey    /** {@hide} */ public void setBaseResourcePath(String baseResourcePath) { publicSourceDir = baseResourcePath; }
1160d746057f2414cba2bdc69257cc5be8cb681bb592Jeff Sharkey    /** {@hide} */ public void setSplitResourcePaths(String[] splitResourcePaths) { splitPublicSourceDirs = splitResourcePaths; }
1161d746057f2414cba2bdc69257cc5be8cb681bb592Jeff Sharkey
1162d746057f2414cba2bdc69257cc5be8cb681bb592Jeff Sharkey    /** {@hide} */ public String getCodePath() { return scanSourceDir; }
1163d746057f2414cba2bdc69257cc5be8cb681bb592Jeff Sharkey    /** {@hide} */ public String getBaseCodePath() { return sourceDir; }
1164d746057f2414cba2bdc69257cc5be8cb681bb592Jeff Sharkey    /** {@hide} */ public String[] getSplitCodePaths() { return splitSourceDirs; }
1165d746057f2414cba2bdc69257cc5be8cb681bb592Jeff Sharkey    /** {@hide} */ public String getResourcePath() { return scanPublicSourceDir; }
1166d746057f2414cba2bdc69257cc5be8cb681bb592Jeff Sharkey    /** {@hide} */ public String getBaseResourcePath() { return publicSourceDir; }
1167d746057f2414cba2bdc69257cc5be8cb681bb592Jeff Sharkey    /** {@hide} */ public String[] getSplitResourcePaths() { return splitSourceDirs; }
11689066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project}
1169