ApplicationInfo.java revision 4ce55a3987c14b939cd416e24116c6ab3c760b82
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
1907330791116513710d879c45b2f095cd314cbfd0Jeff Brownimport android.content.pm.PackageManager.NameNotFoundException;
2007330791116513710d879c45b2f095cd314cbfd0Jeff Brownimport android.content.res.Resources;
2107330791116513710d879c45b2f095cd314cbfd0Jeff Brownimport android.graphics.drawable.Drawable;
229066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Projectimport android.os.Parcel;
239066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Projectimport android.os.Parcelable;
249066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Projectimport android.util.Printer;
259066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project
269066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Projectimport java.text.Collator;
279066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Projectimport java.util.Comparator;
289066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project
299066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project/**
309066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project * Information you can retrieve about a particular application.  This
319066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project * corresponds to information collected from the AndroidManifest.xml's
329066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project * <application> tag.
339066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project */
349066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Projectpublic class ApplicationInfo extends PackageItemInfo implements Parcelable {
359066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project
369066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    /**
379066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * Default task affinity of all activities in this application. See
389066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * {@link ActivityInfo#taskAffinity} for more information.  This comes
399066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * from the "taskAffinity" attribute.
409066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     */
419066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    public String taskAffinity;
429066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project
439066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    /**
449066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * Optional name of a permission required to be able to access this
459066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * application's components.  From the "permission" attribute.
469066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     */
479066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    public String permission;
489066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project
499066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    /**
509066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * The name of the process this application should run in.  From the
519066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * "process" attribute or, if not set, the same as
529066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * <var>packageName</var>.
539066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     */
549066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    public String processName;
559066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project
569066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    /**
579066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * Class implementing the Application object.  From the "class"
589066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * attribute.
599066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     */
609066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    public String className;
619066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project
629066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    /**
639066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * A style resource identifier (in the package's resources) of the
649066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * description of an application.  From the "description" attribute
659066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * or, if not set, 0.
669066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     */
679066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    public int descriptionRes;
689066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project
699066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    /**
709066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * A style resource identifier (in the package's resources) of the
719066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * default visual theme of the application.  From the "theme" attribute
729066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * or, if not set, 0.
739066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     */
749066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    public int theme;
759066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project
769066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    /**
779066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * Class implementing the Application's manage space
789066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * functionality.  From the "manageSpaceActivity"
799066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * attribute. This is an optional attribute and will be null if
80181fafaf48208978b8ba2022683ffa78aaeddde1Christopher Tate     * applications don't specify it in their manifest
819066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     */
829066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    public String manageSpaceActivityName;
839066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project
849066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    /**
85181fafaf48208978b8ba2022683ffa78aaeddde1Christopher Tate     * Class implementing the Application's backup functionality.  From
86181fafaf48208978b8ba2022683ffa78aaeddde1Christopher Tate     * the "backupAgent" attribute.  This is an optional attribute and
87181fafaf48208978b8ba2022683ffa78aaeddde1Christopher Tate     * will be null if the application does not specify it in its manifest.
88181fafaf48208978b8ba2022683ffa78aaeddde1Christopher Tate     *
89181fafaf48208978b8ba2022683ffa78aaeddde1Christopher Tate     * <p>If android:allowBackup is set to false, this attribute is ignored.
90181fafaf48208978b8ba2022683ffa78aaeddde1Christopher Tate     */
91181fafaf48208978b8ba2022683ffa78aaeddde1Christopher Tate    public String backupAgentName;
924a627c71ff53a4fca1f961f4b1dcc0461df18a06Christopher Tate
934a627c71ff53a4fca1f961f4b1dcc0461df18a06Christopher Tate    /**
94269248d112e35fe8e9f0d5d11c96dcb2ac1118b0Adam Powell     * The default extra UI options for activities in this application.
95269248d112e35fe8e9f0d5d11c96dcb2ac1118b0Adam Powell     * Set from the {@link android.R.attr#uiOptions} attribute in the
96269248d112e35fe8e9f0d5d11c96dcb2ac1118b0Adam Powell     * activity's manifest.
97269248d112e35fe8e9f0d5d11c96dcb2ac1118b0Adam Powell     */
98269248d112e35fe8e9f0d5d11c96dcb2ac1118b0Adam Powell    public int uiOptions = 0;
99269248d112e35fe8e9f0d5d11c96dcb2ac1118b0Adam Powell
100269248d112e35fe8e9f0d5d11c96dcb2ac1118b0Adam Powell    /**
1019066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * Value for {@link #flags}: if set, this application is installed in the
1029066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * device's system image.
1039066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     */
1049066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    public static final int FLAG_SYSTEM = 1<<0;
1059066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project
1069066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    /**
1079066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * Value for {@link #flags}: set to true if this application would like to
1089066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * allow debugging of its
1099066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * code, even when installed on a non-development system.  Comes
1109066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * from {@link android.R.styleable#AndroidManifestApplication_debuggable
1119066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * android:debuggable} of the &lt;application&gt; tag.
1129066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     */
1139066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    public static final int FLAG_DEBUGGABLE = 1<<1;
1149066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project
1159066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    /**
1169066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * Value for {@link #flags}: set to true if this application has code
1179066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * associated with it.  Comes
1189066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * from {@link android.R.styleable#AndroidManifestApplication_hasCode
1199066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * android:hasCode} of the &lt;application&gt; tag.
1209066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     */
1219066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    public static final int FLAG_HAS_CODE = 1<<2;
1229066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project
1239066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    /**
1249066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * Value for {@link #flags}: set to true if this application is persistent.
1259066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * Comes from {@link android.R.styleable#AndroidManifestApplication_persistent
1269066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * android:persistent} of the &lt;application&gt; tag.
1279066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     */
1289066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    public static final int FLAG_PERSISTENT = 1<<3;
1299066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project
1309066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    /**
131181fafaf48208978b8ba2022683ffa78aaeddde1Christopher Tate     * Value for {@link #flags}: set to true if this application holds the
1329066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * {@link android.Manifest.permission#FACTORY_TEST} permission and the
1339066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * device is running in factory test mode.
1349066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     */
1359066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    public static final int FLAG_FACTORY_TEST = 1<<4;
1369066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project
1379066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    /**
1389066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * Value for {@link #flags}: default value for the corresponding ActivityInfo flag.
1399066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * Comes from {@link android.R.styleable#AndroidManifestApplication_allowTaskReparenting
1409066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * android:allowTaskReparenting} of the &lt;application&gt; tag.
1419066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     */
1429066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    public static final int FLAG_ALLOW_TASK_REPARENTING = 1<<5;
1439066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project
1449066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    /**
1459066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * Value for {@link #flags}: default value for the corresponding ActivityInfo flag.
1469066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * Comes from {@link android.R.styleable#AndroidManifestApplication_allowClearUserData
1479066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * android:allowClearUserData} of the &lt;application&gt; tag.
1489066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     */
1499066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    public static final int FLAG_ALLOW_CLEAR_USER_DATA = 1<<6;
1509066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project
1519066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    /**
152851a54143c15a1c33361efae2db3f7f45059b472Dianne Hackborn     * Value for {@link #flags}: this is set if this application has been
153851a54143c15a1c33361efae2db3f7f45059b472Dianne Hackborn     * install as an update to a built-in system application.
1549066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     */
1559066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    public static final int FLAG_UPDATED_SYSTEM_APP = 1<<7;
156851a54143c15a1c33361efae2db3f7f45059b472Dianne Hackborn
157851a54143c15a1c33361efae2db3f7f45059b472Dianne Hackborn    /**
1587f2054392e9957d3ba8579ef08c29cfb27df564eDianne Hackborn     * Value for {@link #flags}: this is set of the application has specified
1597f2054392e9957d3ba8579ef08c29cfb27df564eDianne Hackborn     * {@link android.R.styleable#AndroidManifestApplication_testOnly
1607f2054392e9957d3ba8579ef08c29cfb27df564eDianne Hackborn     * android:testOnly} to be true.
161851a54143c15a1c33361efae2db3f7f45059b472Dianne Hackborn     */
162a96cbb435d7b2197ab2b61fd98d14cbd6e0c5c3dDianne Hackborn    public static final int FLAG_TEST_ONLY = 1<<8;
163ade3ecad94d1f4431576f53bae26c35efbf7a2c9Dianne Hackborn
164ade3ecad94d1f4431576f53bae26c35efbf7a2c9Dianne Hackborn    /**
1655c1e00b14d2ef10ec76abf3e951fa8003a67f558Dianne Hackborn     * Value for {@link #flags}: true when the application's window can be
166723738cfaec3dd7b0fe152c872c41bebf94074c4Dianne Hackborn     * reduced in size for smaller screens.  Corresponds to
167723738cfaec3dd7b0fe152c872c41bebf94074c4Dianne Hackborn     * {@link android.R.styleable#AndroidManifestSupportsScreens_smallScreens
168723738cfaec3dd7b0fe152c872c41bebf94074c4Dianne Hackborn     * android:smallScreens}.
1695c1e00b14d2ef10ec76abf3e951fa8003a67f558Dianne Hackborn     */
170723738cfaec3dd7b0fe152c872c41bebf94074c4Dianne Hackborn    public static final int FLAG_SUPPORTS_SMALL_SCREENS = 1<<9;
171723738cfaec3dd7b0fe152c872c41bebf94074c4Dianne Hackborn
172723738cfaec3dd7b0fe152c872c41bebf94074c4Dianne Hackborn    /**
173723738cfaec3dd7b0fe152c872c41bebf94074c4Dianne Hackborn     * Value for {@link #flags}: true when the application's window can be
174723738cfaec3dd7b0fe152c872c41bebf94074c4Dianne Hackborn     * displayed on normal screens.  Corresponds to
175723738cfaec3dd7b0fe152c872c41bebf94074c4Dianne Hackborn     * {@link android.R.styleable#AndroidManifestSupportsScreens_normalScreens
176723738cfaec3dd7b0fe152c872c41bebf94074c4Dianne Hackborn     * android:normalScreens}.
177723738cfaec3dd7b0fe152c872c41bebf94074c4Dianne Hackborn     */
178723738cfaec3dd7b0fe152c872c41bebf94074c4Dianne Hackborn    public static final int FLAG_SUPPORTS_NORMAL_SCREENS = 1<<10;
179723738cfaec3dd7b0fe152c872c41bebf94074c4Dianne Hackborn
180723738cfaec3dd7b0fe152c872c41bebf94074c4Dianne Hackborn    /**
181723738cfaec3dd7b0fe152c872c41bebf94074c4Dianne Hackborn     * Value for {@link #flags}: true when the application's window can be
182723738cfaec3dd7b0fe152c872c41bebf94074c4Dianne Hackborn     * increased in size for larger screens.  Corresponds to
183723738cfaec3dd7b0fe152c872c41bebf94074c4Dianne Hackborn     * {@link android.R.styleable#AndroidManifestSupportsScreens_largeScreens
18422ec9ab3b881d71866279ba9363c644a9e4e7164Dianne Hackborn     * android:largeScreens}.
185723738cfaec3dd7b0fe152c872c41bebf94074c4Dianne Hackborn     */
186723738cfaec3dd7b0fe152c872c41bebf94074c4Dianne Hackborn    public static final int FLAG_SUPPORTS_LARGE_SCREENS = 1<<11;
1875c1e00b14d2ef10ec76abf3e951fa8003a67f558Dianne Hackborn
1885c1e00b14d2ef10ec76abf3e951fa8003a67f558Dianne Hackborn    /**
189c4db95c077f826585d20be2f3db4043c53d30cf5Dianne Hackborn     * Value for {@link #flags}: true when the application knows how to adjust
190c4db95c077f826585d20be2f3db4043c53d30cf5Dianne Hackborn     * its UI for different screen sizes.  Corresponds to
191c4db95c077f826585d20be2f3db4043c53d30cf5Dianne Hackborn     * {@link android.R.styleable#AndroidManifestSupportsScreens_resizeable
192c4db95c077f826585d20be2f3db4043c53d30cf5Dianne Hackborn     * android:resizeable}.
193c4db95c077f826585d20be2f3db4043c53d30cf5Dianne Hackborn     */
194c4db95c077f826585d20be2f3db4043c53d30cf5Dianne Hackborn    public static final int FLAG_RESIZEABLE_FOR_SCREENS = 1<<12;
195c4db95c077f826585d20be2f3db4043c53d30cf5Dianne Hackborn
196c4db95c077f826585d20be2f3db4043c53d30cf5Dianne Hackborn    /**
19711b822d2a91ea17c34c0cb1c11e80a9a30d72864Dianne Hackborn     * Value for {@link #flags}: true when the application knows how to
19811b822d2a91ea17c34c0cb1c11e80a9a30d72864Dianne Hackborn     * accomodate different screen densities.  Corresponds to
19911b822d2a91ea17c34c0cb1c11e80a9a30d72864Dianne Hackborn     * {@link android.R.styleable#AndroidManifestSupportsScreens_anyDensity
20011b822d2a91ea17c34c0cb1c11e80a9a30d72864Dianne Hackborn     * android:anyDensity}.
20111b822d2a91ea17c34c0cb1c11e80a9a30d72864Dianne Hackborn     */
20211b822d2a91ea17c34c0cb1c11e80a9a30d72864Dianne Hackborn    public static final int FLAG_SUPPORTS_SCREEN_DENSITIES = 1<<13;
20311b822d2a91ea17c34c0cb1c11e80a9a30d72864Dianne Hackborn
20411b822d2a91ea17c34c0cb1c11e80a9a30d72864Dianne Hackborn    /**
20523085b781e145ed684e7270af1d5ced6800b8effBen Cheng     * Value for {@link #flags}: set to true if this application would like to
20623085b781e145ed684e7270af1d5ced6800b8effBen Cheng     * request the VM to operate under the safe mode. Comes from
207ef3f5ddc2137ed99e41f00441b688fb56b855179Ben Cheng     * {@link android.R.styleable#AndroidManifestApplication_vmSafeMode
208ef3f5ddc2137ed99e41f00441b688fb56b855179Ben Cheng     * android:vmSafeMode} of the &lt;application&gt; tag.
20923085b781e145ed684e7270af1d5ced6800b8effBen Cheng     */
21023085b781e145ed684e7270af1d5ced6800b8effBen Cheng    public static final int FLAG_VM_SAFE_MODE = 1<<14;
21123085b781e145ed684e7270af1d5ced6800b8effBen Cheng
21223085b781e145ed684e7270af1d5ced6800b8effBen Cheng    /**
2133de55bcd34afd5871816526294f9514d1adf3fe5Christopher Tate     * Value for {@link #flags}: set to <code>false</code> if the application does not wish
2143de55bcd34afd5871816526294f9514d1adf3fe5Christopher Tate     * to permit any OS-driven backups of its data; <code>true</code> otherwise.
215181fafaf48208978b8ba2022683ffa78aaeddde1Christopher Tate     *
2163de55bcd34afd5871816526294f9514d1adf3fe5Christopher Tate     * <p>Comes from the
2173de55bcd34afd5871816526294f9514d1adf3fe5Christopher Tate     * {@link android.R.styleable#AndroidManifestApplication_allowBackup android:allowBackup}
2183de55bcd34afd5871816526294f9514d1adf3fe5Christopher Tate     * attribute of the &lt;application&gt; tag.
219181fafaf48208978b8ba2022683ffa78aaeddde1Christopher Tate     */
22023085b781e145ed684e7270af1d5ced6800b8effBen Cheng    public static final int FLAG_ALLOW_BACKUP = 1<<15;
2215e1ab335e6e8fbfa19c64d53880a22f472010953Christopher Tate
2225e1ab335e6e8fbfa19c64d53880a22f472010953Christopher Tate    /**
2233de55bcd34afd5871816526294f9514d1adf3fe5Christopher Tate     * Value for {@link #flags}: set to <code>false</code> if the application must be kept
2243de55bcd34afd5871816526294f9514d1adf3fe5Christopher Tate     * in memory following a full-system restore operation; <code>true</code> otherwise.
2253de55bcd34afd5871816526294f9514d1adf3fe5Christopher Tate     * Ordinarily, during a full system restore operation each application is shut down
2263de55bcd34afd5871816526294f9514d1adf3fe5Christopher Tate     * following execution of its agent's onRestore() method.  Setting this attribute to
2273de55bcd34afd5871816526294f9514d1adf3fe5Christopher Tate     * <code>false</code> prevents this.  Most applications will not need to set this attribute.
2285e1ab335e6e8fbfa19c64d53880a22f472010953Christopher Tate     *
2293de55bcd34afd5871816526294f9514d1adf3fe5Christopher Tate     * <p>If
2303de55bcd34afd5871816526294f9514d1adf3fe5Christopher Tate     * {@link android.R.styleable#AndroidManifestApplication_allowBackup android:allowBackup}
2313de55bcd34afd5871816526294f9514d1adf3fe5Christopher Tate     * is set to <code>false</code> or no
2323de55bcd34afd5871816526294f9514d1adf3fe5Christopher Tate     * {@link android.R.styleable#AndroidManifestApplication_backupAgent android:backupAgent}
2335e1ab335e6e8fbfa19c64d53880a22f472010953Christopher Tate     * is specified, this flag will be ignored.
2345e1ab335e6e8fbfa19c64d53880a22f472010953Christopher Tate     *
2353de55bcd34afd5871816526294f9514d1adf3fe5Christopher Tate     * <p>Comes from the
2363de55bcd34afd5871816526294f9514d1adf3fe5Christopher Tate     * {@link android.R.styleable#AndroidManifestApplication_killAfterRestore android:killAfterRestore}
2373de55bcd34afd5871816526294f9514d1adf3fe5Christopher Tate     * attribute of the &lt;application&gt; tag.
2385e1ab335e6e8fbfa19c64d53880a22f472010953Christopher Tate     */
23923085b781e145ed684e7270af1d5ced6800b8effBen Cheng    public static final int FLAG_KILL_AFTER_RESTORE = 1<<16;
2405e1ab335e6e8fbfa19c64d53880a22f472010953Christopher Tate
2415e1ab335e6e8fbfa19c64d53880a22f472010953Christopher Tate    /**
2423de55bcd34afd5871816526294f9514d1adf3fe5Christopher Tate     * Value for {@link #flags}: Set to <code>true</code> if the application's backup
2433de55bcd34afd5871816526294f9514d1adf3fe5Christopher Tate     * agent claims to be able to handle restore data even "from the future,"
2443de55bcd34afd5871816526294f9514d1adf3fe5Christopher Tate     * i.e. from versions of the application with a versionCode greater than
2453de55bcd34afd5871816526294f9514d1adf3fe5Christopher Tate     * the one currently installed on the device.  <i>Use with caution!</i>  By default
2463de55bcd34afd5871816526294f9514d1adf3fe5Christopher Tate     * this attribute is <code>false</code> and the Backup Manager will ensure that data
2473de55bcd34afd5871816526294f9514d1adf3fe5Christopher Tate     * from "future" versions of the application are never supplied during a restore operation.
2485e1ab335e6e8fbfa19c64d53880a22f472010953Christopher Tate     *
2493de55bcd34afd5871816526294f9514d1adf3fe5Christopher Tate     * <p>If
2503de55bcd34afd5871816526294f9514d1adf3fe5Christopher Tate     * {@link android.R.styleable#AndroidManifestApplication_allowBackup android:allowBackup}
2513de55bcd34afd5871816526294f9514d1adf3fe5Christopher Tate     * is set to <code>false</code> or no
2523de55bcd34afd5871816526294f9514d1adf3fe5Christopher Tate     * {@link android.R.styleable#AndroidManifestApplication_backupAgent android:backupAgent}
2535e1ab335e6e8fbfa19c64d53880a22f472010953Christopher Tate     * is specified, this flag will be ignored.
2545e1ab335e6e8fbfa19c64d53880a22f472010953Christopher Tate     *
2553de55bcd34afd5871816526294f9514d1adf3fe5Christopher Tate     * <p>Comes from the
2563de55bcd34afd5871816526294f9514d1adf3fe5Christopher Tate     * {@link android.R.styleable#AndroidManifestApplication_restoreAnyVersion android:restoreAnyVersion}
2573de55bcd34afd5871816526294f9514d1adf3fe5Christopher Tate     * attribute of the &lt;application&gt; tag.
2585e1ab335e6e8fbfa19c64d53880a22f472010953Christopher Tate     */
2593de55bcd34afd5871816526294f9514d1adf3fe5Christopher Tate    public static final int FLAG_RESTORE_ANY_VERSION = 1<<17;
2605e1ab335e6e8fbfa19c64d53880a22f472010953Christopher Tate
261181fafaf48208978b8ba2022683ffa78aaeddde1Christopher Tate    /**
2623202d380226043fa665df3c92252f791f8c52d55Dianne Hackborn     * Value for {@link #flags}: Set to true if the application is
2633202d380226043fa665df3c92252f791f8c52d55Dianne Hackborn     * currently installed on external/removable/unprotected storage.  Such
2643202d380226043fa665df3c92252f791f8c52d55Dianne Hackborn     * applications may not be available if their storage is not currently
2653202d380226043fa665df3c92252f791f8c52d55Dianne Hackborn     * mounted.  When the storage it is on is not available, it will look like
2663202d380226043fa665df3c92252f791f8c52d55Dianne Hackborn     * the application has been uninstalled (its .apk is no longer available)
2673202d380226043fa665df3c92252f791f8c52d55Dianne Hackborn     * but its persistent data is not removed.
268af8e9f4805643f90a9dc0ecfa119e0a860c12f8aSuchi Amalapurapu     */
26994c567e1e344d49168603f5a0560215a4ce735e6Dianne Hackborn    public static final int FLAG_EXTERNAL_STORAGE = 1<<18;
270af8e9f4805643f90a9dc0ecfa119e0a860c12f8aSuchi Amalapurapu
271af8e9f4805643f90a9dc0ecfa119e0a860c12f8aSuchi Amalapurapu    /**
27214cee9f688c32d63d8521188e7422811629bb7c2Dianne Hackborn     * Value for {@link #flags}: true when the application's window can be
27314cee9f688c32d63d8521188e7422811629bb7c2Dianne Hackborn     * increased in size for extra large screens.  Corresponds to
27414cee9f688c32d63d8521188e7422811629bb7c2Dianne Hackborn     * {@link android.R.styleable#AndroidManifestSupportsScreens_xlargeScreens
27522ec9ab3b881d71866279ba9363c644a9e4e7164Dianne Hackborn     * android:xlargeScreens}.
27614cee9f688c32d63d8521188e7422811629bb7c2Dianne Hackborn     */
27714cee9f688c32d63d8521188e7422811629bb7c2Dianne Hackborn    public static final int FLAG_SUPPORTS_XLARGE_SCREENS = 1<<19;
27814cee9f688c32d63d8521188e7422811629bb7c2Dianne Hackborn
27914cee9f688c32d63d8521188e7422811629bb7c2Dianne Hackborn    /**
2803b81bc18bb661c02ad8074c39dab16644c1e65d0Dianne Hackborn     * Value for {@link #flags}: true when the application has requested a
2813b81bc18bb661c02ad8074c39dab16644c1e65d0Dianne Hackborn     * large heap for its processes.  Corresponds to
2823b81bc18bb661c02ad8074c39dab16644c1e65d0Dianne Hackborn     * {@link android.R.styleable#AndroidManifestApplication_largeHeap
2833b81bc18bb661c02ad8074c39dab16644c1e65d0Dianne Hackborn     * android:largeHeap}.
284a3cdaa5337fa573c4c61770195d6232c2e587090Jason parks     */
2853b81bc18bb661c02ad8074c39dab16644c1e65d0Dianne Hackborn    public static final int FLAG_LARGE_HEAP = 1<<20;
286a3cdaa5337fa573c4c61770195d6232c2e587090Jason parks
287a3cdaa5337fa573c4c61770195d6232c2e587090Jason parks    /**
288e7f972122db87dc54e41ed1a6e417534d43bca3aDianne Hackborn     * Value for {@link #flags}: true if this application's package is in
289e7f972122db87dc54e41ed1a6e417534d43bca3aDianne Hackborn     * the stopped state.
290e7f972122db87dc54e41ed1a6e417534d43bca3aDianne Hackborn     */
291e7f972122db87dc54e41ed1a6e417534d43bca3aDianne Hackborn    public static final int FLAG_STOPPED = 1<<21;
292e7f972122db87dc54e41ed1a6e417534d43bca3aDianne Hackborn
293e7f972122db87dc54e41ed1a6e417534d43bca3aDianne Hackborn    /**
29459dfce8bdaf011337530a0dbec7f7280871f9bc9Fabrice Di Meglio     * Value for {@link #flags}: true  when the application is willing to support
29559dfce8bdaf011337530a0dbec7f7280871f9bc9Fabrice Di Meglio     * RTL (right to left). All activities will inherit this value.
29659dfce8bdaf011337530a0dbec7f7280871f9bc9Fabrice Di Meglio     *
29759dfce8bdaf011337530a0dbec7f7280871f9bc9Fabrice Di Meglio     * Set from the {@link android.R.attr#supportsRtl} attribute in the
29859dfce8bdaf011337530a0dbec7f7280871f9bc9Fabrice Di Meglio     * activity's manifest.
29959dfce8bdaf011337530a0dbec7f7280871f9bc9Fabrice Di Meglio     *
30059dfce8bdaf011337530a0dbec7f7280871f9bc9Fabrice Di Meglio     * Default value is false (no support for RTL).
30159dfce8bdaf011337530a0dbec7f7280871f9bc9Fabrice Di Meglio     */
30259dfce8bdaf011337530a0dbec7f7280871f9bc9Fabrice Di Meglio    public static final int FLAG_SUPPORTS_RTL = 1<<22;
30359dfce8bdaf011337530a0dbec7f7280871f9bc9Fabrice Di Meglio
30459dfce8bdaf011337530a0dbec7f7280871f9bc9Fabrice Di Meglio    /**
3057767eac3232ba2fb9828766813cdb481d6a97584Dianne Hackborn     * Value for {@link #flags}: true if the application is currently
3067767eac3232ba2fb9828766813cdb481d6a97584Dianne Hackborn     * installed for the calling user.
3077767eac3232ba2fb9828766813cdb481d6a97584Dianne Hackborn     */
3087767eac3232ba2fb9828766813cdb481d6a97584Dianne Hackborn    public static final int FLAG_INSTALLED = 1<<23;
3097767eac3232ba2fb9828766813cdb481d6a97584Dianne Hackborn
3107767eac3232ba2fb9828766813cdb481d6a97584Dianne Hackborn    /**
3115e03e2ca7d25b899b129baad2dd5eca6bf99d88aDianne Hackborn     * Value for {@link #flags}: true if the application only has its
3125e03e2ca7d25b899b129baad2dd5eca6bf99d88aDianne Hackborn     * data installed; the application package itself does not currently
3135e03e2ca7d25b899b129baad2dd5eca6bf99d88aDianne Hackborn     * exist on the device.
3145e03e2ca7d25b899b129baad2dd5eca6bf99d88aDianne Hackborn     */
3155e03e2ca7d25b899b129baad2dd5eca6bf99d88aDianne Hackborn    public static final int FLAG_IS_DATA_ONLY = 1<<24;
3165e03e2ca7d25b899b129baad2dd5eca6bf99d88aDianne Hackborn
3175e03e2ca7d25b899b129baad2dd5eca6bf99d88aDianne Hackborn    /**
3184ce55a3987c14b939cd416e24116c6ab3c760b82Christopher Tate     * Value for {@link #flags}: set to {@code true} if the application
3194ce55a3987c14b939cd416e24116c6ab3c760b82Christopher Tate     * is permitted to hold privileged permissions.
3204ce55a3987c14b939cd416e24116c6ab3c760b82Christopher Tate     *
3214ce55a3987c14b939cd416e24116c6ab3c760b82Christopher Tate     * {@hide}
3224ce55a3987c14b939cd416e24116c6ab3c760b82Christopher Tate     */
3234ce55a3987c14b939cd416e24116c6ab3c760b82Christopher Tate    public static final int FLAG_PRIVILEGED = 1<<30;
3244ce55a3987c14b939cd416e24116c6ab3c760b82Christopher Tate
3254ce55a3987c14b939cd416e24116c6ab3c760b82Christopher Tate    /**
3263202d380226043fa665df3c92252f791f8c52d55Dianne Hackborn     * Value for {@link #flags}: Set to true if the application has been
3273202d380226043fa665df3c92252f791f8c52d55Dianne Hackborn     * installed using the forward lock option.
328af8e9f4805643f90a9dc0ecfa119e0a860c12f8aSuchi Amalapurapu     *
32975e616e8203a540c860888ccff73ffaa87498c5eDianne Hackborn     * NOTE: DO NOT CHANGE THIS VALUE!  It is saved in packages.xml.
33075e616e8203a540c860888ccff73ffaa87498c5eDianne Hackborn     *
331af8e9f4805643f90a9dc0ecfa119e0a860c12f8aSuchi Amalapurapu     * {@hide}
332af8e9f4805643f90a9dc0ecfa119e0a860c12f8aSuchi Amalapurapu     */
33375e616e8203a540c860888ccff73ffaa87498c5eDianne Hackborn    public static final int FLAG_FORWARD_LOCK = 1<<29;
334af8e9f4805643f90a9dc0ecfa119e0a860c12f8aSuchi Amalapurapu
335af8e9f4805643f90a9dc0ecfa119e0a860c12f8aSuchi Amalapurapu    /**
33602486b1327e3007c62d253dd89ba9db1852b87f8Dianne Hackborn     * Value for {@link #flags}: set to <code>true</code> if the application
33702486b1327e3007c62d253dd89ba9db1852b87f8Dianne Hackborn     * has reported that it is heavy-weight, and thus can not participate in
33802486b1327e3007c62d253dd89ba9db1852b87f8Dianne Hackborn     * the normal application lifecycle.
33902486b1327e3007c62d253dd89ba9db1852b87f8Dianne Hackborn     *
34002486b1327e3007c62d253dd89ba9db1852b87f8Dianne Hackborn     * <p>Comes from the
34154e570f78b45d6c47578a4a2513097b590b6d43fDianne Hackborn     * {@link android.R.styleable#AndroidManifestApplication_cantSaveState android:cantSaveState}
34202486b1327e3007c62d253dd89ba9db1852b87f8Dianne Hackborn     * attribute of the &lt;application&gt; tag.
34302486b1327e3007c62d253dd89ba9db1852b87f8Dianne Hackborn     *
34402486b1327e3007c62d253dd89ba9db1852b87f8Dianne Hackborn     * {@hide}
34502486b1327e3007c62d253dd89ba9db1852b87f8Dianne Hackborn     */
34675e616e8203a540c860888ccff73ffaa87498c5eDianne Hackborn    public static final int FLAG_CANT_SAVE_STATE = 1<<28;
34702486b1327e3007c62d253dd89ba9db1852b87f8Dianne Hackborn
34802486b1327e3007c62d253dd89ba9db1852b87f8Dianne Hackborn    /**
3499066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * Flags associated with the application.  Any combination of
3509066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * {@link #FLAG_SYSTEM}, {@link #FLAG_DEBUGGABLE}, {@link #FLAG_HAS_CODE},
3519066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * {@link #FLAG_PERSISTENT}, {@link #FLAG_FACTORY_TEST}, and
3529066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * {@link #FLAG_ALLOW_TASK_REPARENTING}
353851a54143c15a1c33361efae2db3f7f45059b472Dianne Hackborn     * {@link #FLAG_ALLOW_CLEAR_USER_DATA}, {@link #FLAG_UPDATED_SYSTEM_APP},
354723738cfaec3dd7b0fe152c872c41bebf94074c4Dianne Hackborn     * {@link #FLAG_TEST_ONLY}, {@link #FLAG_SUPPORTS_SMALL_SCREENS},
355723738cfaec3dd7b0fe152c872c41bebf94074c4Dianne Hackborn     * {@link #FLAG_SUPPORTS_NORMAL_SCREENS},
35614cee9f688c32d63d8521188e7422811629bb7c2Dianne Hackborn     * {@link #FLAG_SUPPORTS_LARGE_SCREENS}, {@link #FLAG_SUPPORTS_XLARGE_SCREENS},
35714cee9f688c32d63d8521188e7422811629bb7c2Dianne Hackborn     * {@link #FLAG_RESIZEABLE_FOR_SCREENS},
3587767eac3232ba2fb9828766813cdb481d6a97584Dianne Hackborn     * {@link #FLAG_SUPPORTS_SCREEN_DENSITIES}, {@link #FLAG_VM_SAFE_MODE},
3597767eac3232ba2fb9828766813cdb481d6a97584Dianne Hackborn     * {@link #FLAG_INSTALLED}.
3609066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     */
3619066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    public int flags = 0;
3629066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project
3639066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    /**
364df6e980e3f63eb0f6f9eb437fa925d5009cd9c44Dianne Hackborn     * The required smallest screen width the application can run on.  If 0,
365df6e980e3f63eb0f6f9eb437fa925d5009cd9c44Dianne Hackborn     * nothing has been specified.  Comes from
366df6e980e3f63eb0f6f9eb437fa925d5009cd9c44Dianne Hackborn     * {@link android.R.styleable#AndroidManifestSupportsScreens_requiresSmallestWidthDp
367df6e980e3f63eb0f6f9eb437fa925d5009cd9c44Dianne Hackborn     * android:requiresSmallestWidthDp} attribute of the &lt;supports-screens&gt; tag.
368df6e980e3f63eb0f6f9eb437fa925d5009cd9c44Dianne Hackborn     */
369df6e980e3f63eb0f6f9eb437fa925d5009cd9c44Dianne Hackborn    public int requiresSmallestWidthDp = 0;
370df6e980e3f63eb0f6f9eb437fa925d5009cd9c44Dianne Hackborn
371df6e980e3f63eb0f6f9eb437fa925d5009cd9c44Dianne Hackborn    /**
372df6e980e3f63eb0f6f9eb437fa925d5009cd9c44Dianne Hackborn     * The maximum smallest screen width the application is designed for.  If 0,
373df6e980e3f63eb0f6f9eb437fa925d5009cd9c44Dianne Hackborn     * nothing has been specified.  Comes from
374df6e980e3f63eb0f6f9eb437fa925d5009cd9c44Dianne Hackborn     * {@link android.R.styleable#AndroidManifestSupportsScreens_compatibleWidthLimitDp
375df6e980e3f63eb0f6f9eb437fa925d5009cd9c44Dianne Hackborn     * android:compatibleWidthLimitDp} attribute of the &lt;supports-screens&gt; tag.
376df6e980e3f63eb0f6f9eb437fa925d5009cd9c44Dianne Hackborn     */
377df6e980e3f63eb0f6f9eb437fa925d5009cd9c44Dianne Hackborn    public int compatibleWidthLimitDp = 0;
378df6e980e3f63eb0f6f9eb437fa925d5009cd9c44Dianne Hackborn
379df6e980e3f63eb0f6f9eb437fa925d5009cd9c44Dianne Hackborn    /**
3802762ff3dc864018352362f6d103de471f9529ba6Dianne Hackborn     * The maximum smallest screen width the application will work on.  If 0,
3812762ff3dc864018352362f6d103de471f9529ba6Dianne Hackborn     * nothing has been specified.  Comes from
3822762ff3dc864018352362f6d103de471f9529ba6Dianne Hackborn     * {@link android.R.styleable#AndroidManifestSupportsScreens_largestWidthLimitDp
3832762ff3dc864018352362f6d103de471f9529ba6Dianne Hackborn     * android:largestWidthLimitDp} attribute of the &lt;supports-screens&gt; tag.
3842762ff3dc864018352362f6d103de471f9529ba6Dianne Hackborn     */
3852762ff3dc864018352362f6d103de471f9529ba6Dianne Hackborn    public int largestWidthLimitDp = 0;
3862762ff3dc864018352362f6d103de471f9529ba6Dianne Hackborn
3872762ff3dc864018352362f6d103de471f9529ba6Dianne Hackborn    /**
3889066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * Full path to the location of this package.
3899066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     */
3909066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    public String sourceDir;
3919066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project
3929066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    /**
393d1ab01682b136b586aac94334f976f03c762b3c7Kenny Root     * Full path to the location of the publicly available parts of this
394d1ab01682b136b586aac94334f976f03c762b3c7Kenny Root     * package (i.e. the primary resource package and manifest).  For
395d1ab01682b136b586aac94334f976f03c762b3c7Kenny Root     * non-forward-locked apps this will be the same as {@link #sourceDir).
3969066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     */
3979066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    public String publicSourceDir;
3989066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project
3999066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    /**
400d1ab01682b136b586aac94334f976f03c762b3c7Kenny Root     * Full paths to the locations of extra resource packages this application
401d1ab01682b136b586aac94334f976f03c762b3c7Kenny Root     * uses. This field is only used if there are extra resource packages,
402d1ab01682b136b586aac94334f976f03c762b3c7Kenny Root     * otherwise it is null.
403ace5a3fbfbf1b41905410925f1ea007040a7a675Kenny Root     *
404ace5a3fbfbf1b41905410925f1ea007040a7a675Kenny Root     * {@hide}
405d1ab01682b136b586aac94334f976f03c762b3c7Kenny Root     */
406d1ab01682b136b586aac94334f976f03c762b3c7Kenny Root    public String[] resourceDirs;
407d1ab01682b136b586aac94334f976f03c762b3c7Kenny Root
408d1ab01682b136b586aac94334f976f03c762b3c7Kenny Root    /**
4090f40dc923c67e8822f9157aec4f786f73848af07Robert Craig     * String retrieved from the seinfo tag found in selinux policy. This value
4100f40dc923c67e8822f9157aec4f786f73848af07Robert Craig     * is useful in setting an SELinux security context on the process as well
4110f40dc923c67e8822f9157aec4f786f73848af07Robert Craig     * as its data directory.
4120f40dc923c67e8822f9157aec4f786f73848af07Robert Craig     *
4130f40dc923c67e8822f9157aec4f786f73848af07Robert Craig     * {@hide}
4140f40dc923c67e8822f9157aec4f786f73848af07Robert Craig     */
4150f40dc923c67e8822f9157aec4f786f73848af07Robert Craig    public String seinfo;
4160f40dc923c67e8822f9157aec4f786f73848af07Robert Craig
4170f40dc923c67e8822f9157aec4f786f73848af07Robert Craig    /**
4189066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * Paths to all shared libraries this application is linked against.  This
4199066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * field is only set if the {@link PackageManager#GET_SHARED_LIBRARY_FILES
4209066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * PackageManager.GET_SHARED_LIBRARY_FILES} flag was used when retrieving
4219066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * the structure.
4229066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     */
4239066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    public String[] sharedLibraryFiles;
4249066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project
4259066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    /**
4269066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * Full path to a directory assigned to the package for its persistent
4279066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * data.
4289066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     */
4299066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    public String dataDir;
43085387d7ba36e56b291cbde87acb5a5b2200fe01cKenny Root
43185387d7ba36e56b291cbde87acb5a5b2200fe01cKenny Root    /**
43285387d7ba36e56b291cbde87acb5a5b2200fe01cKenny Root     * Full path to the directory where native JNI libraries are stored.
43385387d7ba36e56b291cbde87acb5a5b2200fe01cKenny Root     */
43485387d7ba36e56b291cbde87acb5a5b2200fe01cKenny Root    public String nativeLibraryDir;
43585387d7ba36e56b291cbde87acb5a5b2200fe01cKenny Root
4369066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    /**
4379066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * The kernel user-ID that has been assigned to this application;
4389066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * currently this is not a unique ID (multiple applications can have
4399066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * the same uid).
4409066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     */
4419066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    public int uid;
4429066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project
4438d112675879a2b83197d3b4ae4fb623abd1a1ec3Mitsuru Oshima    /**
4443b3e145d3c41fd68974e08f799b1fd1f8f060cf0Dianne Hackborn     * The minimum SDK version this application targets.  It may run on earlier
445a96cbb435d7b2197ab2b61fd98d14cbd6e0c5c3dDianne Hackborn     * versions, but it knows how to work with any new behavior added at this
446a96cbb435d7b2197ab2b61fd98d14cbd6e0c5c3dDianne Hackborn     * version.  Will be {@link android.os.Build.VERSION_CODES#CUR_DEVELOPMENT}
447a96cbb435d7b2197ab2b61fd98d14cbd6e0c5c3dDianne Hackborn     * if this is a development build and the app is targeting that.  You should
448a96cbb435d7b2197ab2b61fd98d14cbd6e0c5c3dDianne Hackborn     * compare that this number is >= the SDK version number at which your
449a96cbb435d7b2197ab2b61fd98d14cbd6e0c5c3dDianne Hackborn     * behavior was introduced.
450a96cbb435d7b2197ab2b61fd98d14cbd6e0c5c3dDianne Hackborn     */
451a96cbb435d7b2197ab2b61fd98d14cbd6e0c5c3dDianne Hackborn    public int targetSdkVersion;
452a96cbb435d7b2197ab2b61fd98d14cbd6e0c5c3dDianne Hackborn
453a96cbb435d7b2197ab2b61fd98d14cbd6e0c5c3dDianne Hackborn    /**
4549066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * When false, indicates that all components within this application are
4559066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * considered disabled, regardless of their individually set enabled status.
4569066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     */
4579066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    public boolean enabled = true;
4589066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project
45954e570f78b45d6c47578a4a2513097b590b6d43fDianne Hackborn    /**
4600ac3031c159a0904e73eb4439cdc724d8df4a6e6Dianne Hackborn     * For convenient access to the current enabled setting of this app.
4610ac3031c159a0904e73eb4439cdc724d8df4a6e6Dianne Hackborn     * @hide
4620ac3031c159a0904e73eb4439cdc724d8df4a6e6Dianne Hackborn     */
4630ac3031c159a0904e73eb4439cdc724d8df4a6e6Dianne Hackborn    public int enabledSetting = PackageManager.COMPONENT_ENABLED_STATE_DEFAULT;
4640ac3031c159a0904e73eb4439cdc724d8df4a6e6Dianne Hackborn
4650ac3031c159a0904e73eb4439cdc724d8df4a6e6Dianne Hackborn    /**
46654e570f78b45d6c47578a4a2513097b590b6d43fDianne Hackborn     * For convenient access to package's install location.
46754e570f78b45d6c47578a4a2513097b590b6d43fDianne Hackborn     * @hide
46854e570f78b45d6c47578a4a2513097b590b6d43fDianne Hackborn     */
46954e570f78b45d6c47578a4a2513097b590b6d43fDianne Hackborn    public int installLocation = PackageInfo.INSTALL_LOCATION_UNSPECIFIED;
47054e570f78b45d6c47578a4a2513097b590b6d43fDianne Hackborn
4719066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    public void dump(Printer pw, String prefix) {
4729066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        super.dumpFront(pw, prefix);
47312527f9fb1cb0a1ad3be8149c1c88a0e731cb4d6Dianne Hackborn        if (className != null) {
47412527f9fb1cb0a1ad3be8149c1c88a0e731cb4d6Dianne Hackborn            pw.println(prefix + "className=" + className);
47512527f9fb1cb0a1ad3be8149c1c88a0e731cb4d6Dianne Hackborn        }
47612527f9fb1cb0a1ad3be8149c1c88a0e731cb4d6Dianne Hackborn        if (permission != null) {
47712527f9fb1cb0a1ad3be8149c1c88a0e731cb4d6Dianne Hackborn            pw.println(prefix + "permission=" + permission);
47812527f9fb1cb0a1ad3be8149c1c88a0e731cb4d6Dianne Hackborn        }
47939792d2262352ae775091876d5488d2412a2ff92Dianne Hackborn        pw.println(prefix + "processName=" + processName);
48039792d2262352ae775091876d5488d2412a2ff92Dianne Hackborn        pw.println(prefix + "taskAffinity=" + taskAffinity);
48139792d2262352ae775091876d5488d2412a2ff92Dianne Hackborn        pw.println(prefix + "uid=" + uid + " flags=0x" + Integer.toHexString(flags)
48239792d2262352ae775091876d5488d2412a2ff92Dianne Hackborn                + " theme=0x" + Integer.toHexString(theme));
483df6e980e3f63eb0f6f9eb437fa925d5009cd9c44Dianne Hackborn        pw.println(prefix + "requiresSmallestWidthDp=" + requiresSmallestWidthDp
4842762ff3dc864018352362f6d103de471f9529ba6Dianne Hackborn                + " compatibleWidthLimitDp=" + compatibleWidthLimitDp
4852762ff3dc864018352362f6d103de471f9529ba6Dianne Hackborn                + " largestWidthLimitDp=" + largestWidthLimitDp);
4869066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        pw.println(prefix + "sourceDir=" + sourceDir);
487817c24752cf1d70bcd53a038a0d06abbb1ec6aadDianne Hackborn        if (sourceDir == null) {
488817c24752cf1d70bcd53a038a0d06abbb1ec6aadDianne Hackborn            if (publicSourceDir != null) {
489817c24752cf1d70bcd53a038a0d06abbb1ec6aadDianne Hackborn                pw.println(prefix + "publicSourceDir=" + publicSourceDir);
490817c24752cf1d70bcd53a038a0d06abbb1ec6aadDianne Hackborn            }
491817c24752cf1d70bcd53a038a0d06abbb1ec6aadDianne Hackborn        } else if (!sourceDir.equals(publicSourceDir)) {
49239792d2262352ae775091876d5488d2412a2ff92Dianne Hackborn            pw.println(prefix + "publicSourceDir=" + publicSourceDir);
49339792d2262352ae775091876d5488d2412a2ff92Dianne Hackborn        }
49439792d2262352ae775091876d5488d2412a2ff92Dianne Hackborn        if (resourceDirs != null) {
49539792d2262352ae775091876d5488d2412a2ff92Dianne Hackborn            pw.println(prefix + "resourceDirs=" + resourceDirs);
49639792d2262352ae775091876d5488d2412a2ff92Dianne Hackborn        }
4970f40dc923c67e8822f9157aec4f786f73848af07Robert Craig        if (seinfo != null) {
4980f40dc923c67e8822f9157aec4f786f73848af07Robert Craig            pw.println(prefix + "seinfo=" + seinfo);
4990f40dc923c67e8822f9157aec4f786f73848af07Robert Craig        }
5009066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        pw.println(prefix + "dataDir=" + dataDir);
50112527f9fb1cb0a1ad3be8149c1c88a0e731cb4d6Dianne Hackborn        if (sharedLibraryFiles != null) {
50212527f9fb1cb0a1ad3be8149c1c88a0e731cb4d6Dianne Hackborn            pw.println(prefix + "sharedLibraryFiles=" + sharedLibraryFiles);
50312527f9fb1cb0a1ad3be8149c1c88a0e731cb4d6Dianne Hackborn        }
50412527f9fb1cb0a1ad3be8149c1c88a0e731cb4d6Dianne Hackborn        pw.println(prefix + "enabled=" + enabled + " targetSdkVersion=" + targetSdkVersion);
50512527f9fb1cb0a1ad3be8149c1c88a0e731cb4d6Dianne Hackborn        if (manageSpaceActivityName != null) {
50612527f9fb1cb0a1ad3be8149c1c88a0e731cb4d6Dianne Hackborn            pw.println(prefix + "manageSpaceActivityName="+manageSpaceActivityName);
50712527f9fb1cb0a1ad3be8149c1c88a0e731cb4d6Dianne Hackborn        }
50812527f9fb1cb0a1ad3be8149c1c88a0e731cb4d6Dianne Hackborn        if (descriptionRes != 0) {
50912527f9fb1cb0a1ad3be8149c1c88a0e731cb4d6Dianne Hackborn            pw.println(prefix + "description=0x"+Integer.toHexString(descriptionRes));
51012527f9fb1cb0a1ad3be8149c1c88a0e731cb4d6Dianne Hackborn        }
511269248d112e35fe8e9f0d5d11c96dcb2ac1118b0Adam Powell        if (uiOptions != 0) {
512269248d112e35fe8e9f0d5d11c96dcb2ac1118b0Adam Powell            pw.println(prefix + "uiOptions=0x" + Integer.toHexString(uiOptions));
513269248d112e35fe8e9f0d5d11c96dcb2ac1118b0Adam Powell        }
51459dfce8bdaf011337530a0dbec7f7280871f9bc9Fabrice Di Meglio        pw.println(prefix + "supportsRtl=" + (hasRtlSupport() ? "true" : "false"));
5159066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        super.dumpBack(pw, prefix);
5169066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    }
51759dfce8bdaf011337530a0dbec7f7280871f9bc9Fabrice Di Meglio
51859dfce8bdaf011337530a0dbec7f7280871f9bc9Fabrice Di Meglio    /**
51959dfce8bdaf011337530a0dbec7f7280871f9bc9Fabrice Di Meglio     * @return true if "supportsRtl" has been set to true in the AndroidManifest
52059dfce8bdaf011337530a0dbec7f7280871f9bc9Fabrice Di Meglio     * @hide
52159dfce8bdaf011337530a0dbec7f7280871f9bc9Fabrice Di Meglio     */
52259dfce8bdaf011337530a0dbec7f7280871f9bc9Fabrice Di Meglio    public boolean hasRtlSupport() {
52359dfce8bdaf011337530a0dbec7f7280871f9bc9Fabrice Di Meglio        return (flags & FLAG_SUPPORTS_RTL) == FLAG_SUPPORTS_RTL;
52459dfce8bdaf011337530a0dbec7f7280871f9bc9Fabrice Di Meglio    }
5259066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project
5269066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    public static class DisplayNameComparator
5279066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project            implements Comparator<ApplicationInfo> {
5289066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        public DisplayNameComparator(PackageManager pm) {
5299066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project            mPM = pm;
5309066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        }
5319066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project
5329066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        public final int compare(ApplicationInfo aa, ApplicationInfo ab) {
5339066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project            CharSequence  sa = mPM.getApplicationLabel(aa);
5349066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project            if (sa == null) {
5359066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project                sa = aa.packageName;
5369066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project            }
5379066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project            CharSequence  sb = mPM.getApplicationLabel(ab);
5389066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project            if (sb == null) {
5399066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project                sb = ab.packageName;
5409066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project            }
5419066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project
5429066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project            return sCollator.compare(sa.toString(), sb.toString());
5439066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        }
5449066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project
5459066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        private final Collator   sCollator = Collator.getInstance();
5469066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        private PackageManager   mPM;
5479066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    }
5489066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project
5499066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    public ApplicationInfo() {
5509066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    }
5519066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project
5529066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    public ApplicationInfo(ApplicationInfo orig) {
5539066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        super(orig);
5549066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        taskAffinity = orig.taskAffinity;
5559066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        permission = orig.permission;
5569066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        processName = orig.processName;
5579066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        className = orig.className;
5589066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        theme = orig.theme;
5599066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        flags = orig.flags;
560df6e980e3f63eb0f6f9eb437fa925d5009cd9c44Dianne Hackborn        requiresSmallestWidthDp = orig.requiresSmallestWidthDp;
561df6e980e3f63eb0f6f9eb437fa925d5009cd9c44Dianne Hackborn        compatibleWidthLimitDp = orig.compatibleWidthLimitDp;
5622762ff3dc864018352362f6d103de471f9529ba6Dianne Hackborn        largestWidthLimitDp = orig.largestWidthLimitDp;
5639066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        sourceDir = orig.sourceDir;
5649066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        publicSourceDir = orig.publicSourceDir;
56585387d7ba36e56b291cbde87acb5a5b2200fe01cKenny Root        nativeLibraryDir = orig.nativeLibraryDir;
566d1ab01682b136b586aac94334f976f03c762b3c7Kenny Root        resourceDirs = orig.resourceDirs;
5670f40dc923c67e8822f9157aec4f786f73848af07Robert Craig        seinfo = orig.seinfo;
5689066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        sharedLibraryFiles = orig.sharedLibraryFiles;
5699066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        dataDir = orig.dataDir;
5709066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        uid = orig.uid;
571a96cbb435d7b2197ab2b61fd98d14cbd6e0c5c3dDianne Hackborn        targetSdkVersion = orig.targetSdkVersion;
5729066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        enabled = orig.enabled;
5730ac3031c159a0904e73eb4439cdc724d8df4a6e6Dianne Hackborn        enabledSetting = orig.enabledSetting;
57454e570f78b45d6c47578a4a2513097b590b6d43fDianne Hackborn        installLocation = orig.installLocation;
5759066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        manageSpaceActivityName = orig.manageSpaceActivityName;
5769066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        descriptionRes = orig.descriptionRes;
577269248d112e35fe8e9f0d5d11c96dcb2ac1118b0Adam Powell        uiOptions = orig.uiOptions;
578bcb0255770caa6b053da100de13beb840da71b21Christopher Tate        backupAgentName = orig.backupAgentName;
5799066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    }
5809066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project
5819066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project
5829066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    public String toString() {
5839066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        return "ApplicationInfo{"
5849066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project            + Integer.toHexString(System.identityHashCode(this))
5859066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project            + " " + packageName + "}";
5869066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    }
5879066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project
5889066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    public int describeContents() {
5899066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        return 0;
5909066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    }
5919066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project
5929066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    public void writeToParcel(Parcel dest, int parcelableFlags) {
5939066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        super.writeToParcel(dest, parcelableFlags);
5949066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        dest.writeString(taskAffinity);
5959066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        dest.writeString(permission);
5969066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        dest.writeString(processName);
5979066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        dest.writeString(className);
5989066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        dest.writeInt(theme);
5999066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        dest.writeInt(flags);
600df6e980e3f63eb0f6f9eb437fa925d5009cd9c44Dianne Hackborn        dest.writeInt(requiresSmallestWidthDp);
601df6e980e3f63eb0f6f9eb437fa925d5009cd9c44Dianne Hackborn        dest.writeInt(compatibleWidthLimitDp);
6022762ff3dc864018352362f6d103de471f9529ba6Dianne Hackborn        dest.writeInt(largestWidthLimitDp);
6039066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        dest.writeString(sourceDir);
6049066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        dest.writeString(publicSourceDir);
60585387d7ba36e56b291cbde87acb5a5b2200fe01cKenny Root        dest.writeString(nativeLibraryDir);
606d1ab01682b136b586aac94334f976f03c762b3c7Kenny Root        dest.writeStringArray(resourceDirs);
6070f40dc923c67e8822f9157aec4f786f73848af07Robert Craig        dest.writeString(seinfo);
6089066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        dest.writeStringArray(sharedLibraryFiles);
6099066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        dest.writeString(dataDir);
6109066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        dest.writeInt(uid);
611a96cbb435d7b2197ab2b61fd98d14cbd6e0c5c3dDianne Hackborn        dest.writeInt(targetSdkVersion);
6129066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        dest.writeInt(enabled ? 1 : 0);
6130ac3031c159a0904e73eb4439cdc724d8df4a6e6Dianne Hackborn        dest.writeInt(enabledSetting);
61454e570f78b45d6c47578a4a2513097b590b6d43fDianne Hackborn        dest.writeInt(installLocation);
6159066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        dest.writeString(manageSpaceActivityName);
616181fafaf48208978b8ba2022683ffa78aaeddde1Christopher Tate        dest.writeString(backupAgentName);
6179066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        dest.writeInt(descriptionRes);
618269248d112e35fe8e9f0d5d11c96dcb2ac1118b0Adam Powell        dest.writeInt(uiOptions);
6199066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    }
6209066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project
6219066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    public static final Parcelable.Creator<ApplicationInfo> CREATOR
6229066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project            = new Parcelable.Creator<ApplicationInfo>() {
6239066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        public ApplicationInfo createFromParcel(Parcel source) {
6249066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project            return new ApplicationInfo(source);
6259066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        }
6269066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        public ApplicationInfo[] newArray(int size) {
6279066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project            return new ApplicationInfo[size];
6289066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        }
6299066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    };
6309066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project
6319066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    private ApplicationInfo(Parcel source) {
6329066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        super(source);
6339066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        taskAffinity = source.readString();
6349066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        permission = source.readString();
6359066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        processName = source.readString();
6369066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        className = source.readString();
6379066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        theme = source.readInt();
6389066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        flags = source.readInt();
639df6e980e3f63eb0f6f9eb437fa925d5009cd9c44Dianne Hackborn        requiresSmallestWidthDp = source.readInt();
640df6e980e3f63eb0f6f9eb437fa925d5009cd9c44Dianne Hackborn        compatibleWidthLimitDp = source.readInt();
6412762ff3dc864018352362f6d103de471f9529ba6Dianne Hackborn        largestWidthLimitDp = source.readInt();
6429066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        sourceDir = source.readString();
6439066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        publicSourceDir = source.readString();
64485387d7ba36e56b291cbde87acb5a5b2200fe01cKenny Root        nativeLibraryDir = source.readString();
645d1ab01682b136b586aac94334f976f03c762b3c7Kenny Root        resourceDirs = source.readStringArray();
6460f40dc923c67e8822f9157aec4f786f73848af07Robert Craig        seinfo = source.readString();
6479066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        sharedLibraryFiles = source.readStringArray();
6489066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        dataDir = source.readString();
6499066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        uid = source.readInt();
650a96cbb435d7b2197ab2b61fd98d14cbd6e0c5c3dDianne Hackborn        targetSdkVersion = source.readInt();
6519066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        enabled = source.readInt() != 0;
6520ac3031c159a0904e73eb4439cdc724d8df4a6e6Dianne Hackborn        enabledSetting = source.readInt();
65354e570f78b45d6c47578a4a2513097b590b6d43fDianne Hackborn        installLocation = source.readInt();
6549066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        manageSpaceActivityName = source.readString();
655181fafaf48208978b8ba2022683ffa78aaeddde1Christopher Tate        backupAgentName = source.readString();
6569066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        descriptionRes = source.readInt();
657269248d112e35fe8e9f0d5d11c96dcb2ac1118b0Adam Powell        uiOptions = source.readInt();
6589066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    }
6598d112675879a2b83197d3b4ae4fb623abd1a1ec3Mitsuru Oshima
6609066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    /**
6619066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * Retrieve the textual description of the application.  This
6629066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * will call back on the given PackageManager to load the description from
6639066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * the application.
6649066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     *
6659066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * @param pm A PackageManager from which the label can be loaded; usually
6669066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * the PackageManager from which you originally retrieved this item.
6679066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     *
6689066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * @return Returns a CharSequence containing the application's description.
6699066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * If there is no description, null is returned.
6709066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     */
6719066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    public CharSequence loadDescription(PackageManager pm) {
6729066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        if (descriptionRes != 0) {
67307330791116513710d879c45b2f095cd314cbfd0Jeff Brown            CharSequence label = pm.getText(packageName, descriptionRes, this);
6749066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project            if (label != null) {
6759066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project                return label;
6769066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project            }
6779066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        }
6789066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        return null;
6799066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    }
680e5fb328825995aa33b5b7ecf8b5bee2b17f81715Mitsuru Oshima
681e5fb328825995aa33b5b7ecf8b5bee2b17f81715Mitsuru Oshima    /**
682e5fb328825995aa33b5b7ecf8b5bee2b17f81715Mitsuru Oshima     * Disable compatibility mode
683e5fb328825995aa33b5b7ecf8b5bee2b17f81715Mitsuru Oshima     *
684e5fb328825995aa33b5b7ecf8b5bee2b17f81715Mitsuru Oshima     * @hide
685e5fb328825995aa33b5b7ecf8b5bee2b17f81715Mitsuru Oshima     */
686e5fb328825995aa33b5b7ecf8b5bee2b17f81715Mitsuru Oshima    public void disableCompatibilityMode() {
68769fff4a72d4dfc9208db79d773ef3ca23350287eMitsuru Oshima        flags |= (FLAG_SUPPORTS_LARGE_SCREENS | FLAG_SUPPORTS_NORMAL_SCREENS |
68811b822d2a91ea17c34c0cb1c11e80a9a30d72864Dianne Hackborn                FLAG_SUPPORTS_SMALL_SCREENS | FLAG_RESIZEABLE_FOR_SCREENS |
68914cee9f688c32d63d8521188e7422811629bb7c2Dianne Hackborn                FLAG_SUPPORTS_SCREEN_DENSITIES | FLAG_SUPPORTS_XLARGE_SCREENS);
690e5fb328825995aa33b5b7ecf8b5bee2b17f81715Mitsuru Oshima    }
69107330791116513710d879c45b2f095cd314cbfd0Jeff Brown
69207330791116513710d879c45b2f095cd314cbfd0Jeff Brown    /**
69307330791116513710d879c45b2f095cd314cbfd0Jeff Brown     * @hide
69407330791116513710d879c45b2f095cd314cbfd0Jeff Brown     */
69507330791116513710d879c45b2f095cd314cbfd0Jeff Brown    @Override protected Drawable loadDefaultIcon(PackageManager pm) {
69607330791116513710d879c45b2f095cd314cbfd0Jeff Brown        if ((flags & FLAG_EXTERNAL_STORAGE) != 0
69707330791116513710d879c45b2f095cd314cbfd0Jeff Brown                && isPackageUnavailable(pm)) {
69807330791116513710d879c45b2f095cd314cbfd0Jeff Brown            return Resources.getSystem().getDrawable(
69907330791116513710d879c45b2f095cd314cbfd0Jeff Brown                    com.android.internal.R.drawable.sym_app_on_sd_unavailable_icon);
70007330791116513710d879c45b2f095cd314cbfd0Jeff Brown        }
70107330791116513710d879c45b2f095cd314cbfd0Jeff Brown        return pm.getDefaultActivityIcon();
70207330791116513710d879c45b2f095cd314cbfd0Jeff Brown    }
70307330791116513710d879c45b2f095cd314cbfd0Jeff Brown
70407330791116513710d879c45b2f095cd314cbfd0Jeff Brown    private boolean isPackageUnavailable(PackageManager pm) {
70507330791116513710d879c45b2f095cd314cbfd0Jeff Brown        try {
70607330791116513710d879c45b2f095cd314cbfd0Jeff Brown            return pm.getPackageInfo(packageName, 0) == null;
70707330791116513710d879c45b2f095cd314cbfd0Jeff Brown        } catch (NameNotFoundException ex) {
70807330791116513710d879c45b2f095cd314cbfd0Jeff Brown            return true;
70907330791116513710d879c45b2f095cd314cbfd0Jeff Brown        }
71007330791116513710d879c45b2f095cd314cbfd0Jeff Brown    }
71107330791116513710d879c45b2f095cd314cbfd0Jeff Brown
71207330791116513710d879c45b2f095cd314cbfd0Jeff Brown    /**
71307330791116513710d879c45b2f095cd314cbfd0Jeff Brown     * @hide
71407330791116513710d879c45b2f095cd314cbfd0Jeff Brown     */
71507330791116513710d879c45b2f095cd314cbfd0Jeff Brown    @Override protected ApplicationInfo getApplicationInfo() {
71607330791116513710d879c45b2f095cd314cbfd0Jeff Brown        return this;
71707330791116513710d879c45b2f095cd314cbfd0Jeff Brown    }
7189066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project}
719