ApplicationInfo.java revision 59dfce8bdaf011337530a0dbec7f7280871f9bc9
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    /**
3053202d380226043fa665df3c92252f791f8c52d55Dianne Hackborn     * Value for {@link #flags}: Set to true if the application has been
3063202d380226043fa665df3c92252f791f8c52d55Dianne Hackborn     * installed using the forward lock option.
307af8e9f4805643f90a9dc0ecfa119e0a860c12f8aSuchi Amalapurapu     *
30875e616e8203a540c860888ccff73ffaa87498c5eDianne Hackborn     * NOTE: DO NOT CHANGE THIS VALUE!  It is saved in packages.xml.
30975e616e8203a540c860888ccff73ffaa87498c5eDianne Hackborn     *
310af8e9f4805643f90a9dc0ecfa119e0a860c12f8aSuchi Amalapurapu     * {@hide}
311af8e9f4805643f90a9dc0ecfa119e0a860c12f8aSuchi Amalapurapu     */
31275e616e8203a540c860888ccff73ffaa87498c5eDianne Hackborn    public static final int FLAG_FORWARD_LOCK = 1<<29;
313af8e9f4805643f90a9dc0ecfa119e0a860c12f8aSuchi Amalapurapu
314af8e9f4805643f90a9dc0ecfa119e0a860c12f8aSuchi Amalapurapu    /**
31502486b1327e3007c62d253dd89ba9db1852b87f8Dianne Hackborn     * Value for {@link #flags}: set to <code>true</code> if the application
31602486b1327e3007c62d253dd89ba9db1852b87f8Dianne Hackborn     * has reported that it is heavy-weight, and thus can not participate in
31702486b1327e3007c62d253dd89ba9db1852b87f8Dianne Hackborn     * the normal application lifecycle.
31802486b1327e3007c62d253dd89ba9db1852b87f8Dianne Hackborn     *
31902486b1327e3007c62d253dd89ba9db1852b87f8Dianne Hackborn     * <p>Comes from the
32054e570f78b45d6c47578a4a2513097b590b6d43fDianne Hackborn     * {@link android.R.styleable#AndroidManifestApplication_cantSaveState android:cantSaveState}
32102486b1327e3007c62d253dd89ba9db1852b87f8Dianne Hackborn     * attribute of the &lt;application&gt; tag.
32202486b1327e3007c62d253dd89ba9db1852b87f8Dianne Hackborn     *
32302486b1327e3007c62d253dd89ba9db1852b87f8Dianne Hackborn     * {@hide}
32402486b1327e3007c62d253dd89ba9db1852b87f8Dianne Hackborn     */
32575e616e8203a540c860888ccff73ffaa87498c5eDianne Hackborn    public static final int FLAG_CANT_SAVE_STATE = 1<<28;
32602486b1327e3007c62d253dd89ba9db1852b87f8Dianne Hackborn
32702486b1327e3007c62d253dd89ba9db1852b87f8Dianne Hackborn    /**
3289066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * Flags associated with the application.  Any combination of
3299066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * {@link #FLAG_SYSTEM}, {@link #FLAG_DEBUGGABLE}, {@link #FLAG_HAS_CODE},
3309066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * {@link #FLAG_PERSISTENT}, {@link #FLAG_FACTORY_TEST}, and
3319066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * {@link #FLAG_ALLOW_TASK_REPARENTING}
332851a54143c15a1c33361efae2db3f7f45059b472Dianne Hackborn     * {@link #FLAG_ALLOW_CLEAR_USER_DATA}, {@link #FLAG_UPDATED_SYSTEM_APP},
333723738cfaec3dd7b0fe152c872c41bebf94074c4Dianne Hackborn     * {@link #FLAG_TEST_ONLY}, {@link #FLAG_SUPPORTS_SMALL_SCREENS},
334723738cfaec3dd7b0fe152c872c41bebf94074c4Dianne Hackborn     * {@link #FLAG_SUPPORTS_NORMAL_SCREENS},
33514cee9f688c32d63d8521188e7422811629bb7c2Dianne Hackborn     * {@link #FLAG_SUPPORTS_LARGE_SCREENS}, {@link #FLAG_SUPPORTS_XLARGE_SCREENS},
33614cee9f688c32d63d8521188e7422811629bb7c2Dianne Hackborn     * {@link #FLAG_RESIZEABLE_FOR_SCREENS},
33723085b781e145ed684e7270af1d5ced6800b8effBen Cheng     * {@link #FLAG_SUPPORTS_SCREEN_DENSITIES}, {@link #FLAG_VM_SAFE_MODE}
3389066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     */
3399066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    public int flags = 0;
3409066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project
3419066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    /**
342df6e980e3f63eb0f6f9eb437fa925d5009cd9c44Dianne Hackborn     * The required smallest screen width the application can run on.  If 0,
343df6e980e3f63eb0f6f9eb437fa925d5009cd9c44Dianne Hackborn     * nothing has been specified.  Comes from
344df6e980e3f63eb0f6f9eb437fa925d5009cd9c44Dianne Hackborn     * {@link android.R.styleable#AndroidManifestSupportsScreens_requiresSmallestWidthDp
345df6e980e3f63eb0f6f9eb437fa925d5009cd9c44Dianne Hackborn     * android:requiresSmallestWidthDp} attribute of the &lt;supports-screens&gt; tag.
346df6e980e3f63eb0f6f9eb437fa925d5009cd9c44Dianne Hackborn     */
347df6e980e3f63eb0f6f9eb437fa925d5009cd9c44Dianne Hackborn    public int requiresSmallestWidthDp = 0;
348df6e980e3f63eb0f6f9eb437fa925d5009cd9c44Dianne Hackborn
349df6e980e3f63eb0f6f9eb437fa925d5009cd9c44Dianne Hackborn    /**
350df6e980e3f63eb0f6f9eb437fa925d5009cd9c44Dianne Hackborn     * The maximum smallest screen width the application is designed for.  If 0,
351df6e980e3f63eb0f6f9eb437fa925d5009cd9c44Dianne Hackborn     * nothing has been specified.  Comes from
352df6e980e3f63eb0f6f9eb437fa925d5009cd9c44Dianne Hackborn     * {@link android.R.styleable#AndroidManifestSupportsScreens_compatibleWidthLimitDp
353df6e980e3f63eb0f6f9eb437fa925d5009cd9c44Dianne Hackborn     * android:compatibleWidthLimitDp} attribute of the &lt;supports-screens&gt; tag.
354df6e980e3f63eb0f6f9eb437fa925d5009cd9c44Dianne Hackborn     */
355df6e980e3f63eb0f6f9eb437fa925d5009cd9c44Dianne Hackborn    public int compatibleWidthLimitDp = 0;
356df6e980e3f63eb0f6f9eb437fa925d5009cd9c44Dianne Hackborn
357df6e980e3f63eb0f6f9eb437fa925d5009cd9c44Dianne Hackborn    /**
3582762ff3dc864018352362f6d103de471f9529ba6Dianne Hackborn     * The maximum smallest screen width the application will work on.  If 0,
3592762ff3dc864018352362f6d103de471f9529ba6Dianne Hackborn     * nothing has been specified.  Comes from
3602762ff3dc864018352362f6d103de471f9529ba6Dianne Hackborn     * {@link android.R.styleable#AndroidManifestSupportsScreens_largestWidthLimitDp
3612762ff3dc864018352362f6d103de471f9529ba6Dianne Hackborn     * android:largestWidthLimitDp} attribute of the &lt;supports-screens&gt; tag.
3622762ff3dc864018352362f6d103de471f9529ba6Dianne Hackborn     */
3632762ff3dc864018352362f6d103de471f9529ba6Dianne Hackborn    public int largestWidthLimitDp = 0;
3642762ff3dc864018352362f6d103de471f9529ba6Dianne Hackborn
3652762ff3dc864018352362f6d103de471f9529ba6Dianne Hackborn    /**
3669066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * Full path to the location of this package.
3679066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     */
3689066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    public String sourceDir;
3699066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project
3709066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    /**
371d1ab01682b136b586aac94334f976f03c762b3c7Kenny Root     * Full path to the location of the publicly available parts of this
372d1ab01682b136b586aac94334f976f03c762b3c7Kenny Root     * package (i.e. the primary resource package and manifest).  For
373d1ab01682b136b586aac94334f976f03c762b3c7Kenny Root     * non-forward-locked apps this will be the same as {@link #sourceDir).
3749066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     */
3759066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    public String publicSourceDir;
3769066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project
3779066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    /**
378d1ab01682b136b586aac94334f976f03c762b3c7Kenny Root     * Full paths to the locations of extra resource packages this application
379d1ab01682b136b586aac94334f976f03c762b3c7Kenny Root     * uses. This field is only used if there are extra resource packages,
380d1ab01682b136b586aac94334f976f03c762b3c7Kenny Root     * otherwise it is null.
381ace5a3fbfbf1b41905410925f1ea007040a7a675Kenny Root     *
382ace5a3fbfbf1b41905410925f1ea007040a7a675Kenny Root     * {@hide}
383d1ab01682b136b586aac94334f976f03c762b3c7Kenny Root     */
384d1ab01682b136b586aac94334f976f03c762b3c7Kenny Root    public String[] resourceDirs;
385d1ab01682b136b586aac94334f976f03c762b3c7Kenny Root
386d1ab01682b136b586aac94334f976f03c762b3c7Kenny Root    /**
3879066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * Paths to all shared libraries this application is linked against.  This
3889066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * field is only set if the {@link PackageManager#GET_SHARED_LIBRARY_FILES
3899066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * PackageManager.GET_SHARED_LIBRARY_FILES} flag was used when retrieving
3909066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * the structure.
3919066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     */
3929066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    public String[] sharedLibraryFiles;
3939066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project
3949066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    /**
3959066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * Full path to a directory assigned to the package for its persistent
3969066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * data.
3979066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     */
3989066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    public String dataDir;
39985387d7ba36e56b291cbde87acb5a5b2200fe01cKenny Root
40085387d7ba36e56b291cbde87acb5a5b2200fe01cKenny Root    /**
40185387d7ba36e56b291cbde87acb5a5b2200fe01cKenny Root     * Full path to the directory where native JNI libraries are stored.
40285387d7ba36e56b291cbde87acb5a5b2200fe01cKenny Root     */
40385387d7ba36e56b291cbde87acb5a5b2200fe01cKenny Root    public String nativeLibraryDir;
40485387d7ba36e56b291cbde87acb5a5b2200fe01cKenny Root
4059066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    /**
4069066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * The kernel user-ID that has been assigned to this application;
4079066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * currently this is not a unique ID (multiple applications can have
4089066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * the same uid).
4099066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     */
4109066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    public int uid;
4119066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project
4128d112675879a2b83197d3b4ae4fb623abd1a1ec3Mitsuru Oshima    /**
4133b3e145d3c41fd68974e08f799b1fd1f8f060cf0Dianne Hackborn     * The minimum SDK version this application targets.  It may run on earlier
414a96cbb435d7b2197ab2b61fd98d14cbd6e0c5c3dDianne Hackborn     * versions, but it knows how to work with any new behavior added at this
415a96cbb435d7b2197ab2b61fd98d14cbd6e0c5c3dDianne Hackborn     * version.  Will be {@link android.os.Build.VERSION_CODES#CUR_DEVELOPMENT}
416a96cbb435d7b2197ab2b61fd98d14cbd6e0c5c3dDianne Hackborn     * if this is a development build and the app is targeting that.  You should
417a96cbb435d7b2197ab2b61fd98d14cbd6e0c5c3dDianne Hackborn     * compare that this number is >= the SDK version number at which your
418a96cbb435d7b2197ab2b61fd98d14cbd6e0c5c3dDianne Hackborn     * behavior was introduced.
419a96cbb435d7b2197ab2b61fd98d14cbd6e0c5c3dDianne Hackborn     */
420a96cbb435d7b2197ab2b61fd98d14cbd6e0c5c3dDianne Hackborn    public int targetSdkVersion;
421a96cbb435d7b2197ab2b61fd98d14cbd6e0c5c3dDianne Hackborn
422a96cbb435d7b2197ab2b61fd98d14cbd6e0c5c3dDianne Hackborn    /**
4239066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * When false, indicates that all components within this application are
4249066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * considered disabled, regardless of their individually set enabled status.
4259066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     */
4269066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    public boolean enabled = true;
4279066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project
42854e570f78b45d6c47578a4a2513097b590b6d43fDianne Hackborn    /**
4290ac3031c159a0904e73eb4439cdc724d8df4a6e6Dianne Hackborn     * For convenient access to the current enabled setting of this app.
4300ac3031c159a0904e73eb4439cdc724d8df4a6e6Dianne Hackborn     * @hide
4310ac3031c159a0904e73eb4439cdc724d8df4a6e6Dianne Hackborn     */
4320ac3031c159a0904e73eb4439cdc724d8df4a6e6Dianne Hackborn    public int enabledSetting = PackageManager.COMPONENT_ENABLED_STATE_DEFAULT;
4330ac3031c159a0904e73eb4439cdc724d8df4a6e6Dianne Hackborn
4340ac3031c159a0904e73eb4439cdc724d8df4a6e6Dianne Hackborn    /**
43554e570f78b45d6c47578a4a2513097b590b6d43fDianne Hackborn     * For convenient access to package's install location.
43654e570f78b45d6c47578a4a2513097b590b6d43fDianne Hackborn     * @hide
43754e570f78b45d6c47578a4a2513097b590b6d43fDianne Hackborn     */
43854e570f78b45d6c47578a4a2513097b590b6d43fDianne Hackborn    public int installLocation = PackageInfo.INSTALL_LOCATION_UNSPECIFIED;
43954e570f78b45d6c47578a4a2513097b590b6d43fDianne Hackborn
4409066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    public void dump(Printer pw, String prefix) {
4419066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        super.dumpFront(pw, prefix);
44212527f9fb1cb0a1ad3be8149c1c88a0e731cb4d6Dianne Hackborn        if (className != null) {
44312527f9fb1cb0a1ad3be8149c1c88a0e731cb4d6Dianne Hackborn            pw.println(prefix + "className=" + className);
44412527f9fb1cb0a1ad3be8149c1c88a0e731cb4d6Dianne Hackborn        }
44512527f9fb1cb0a1ad3be8149c1c88a0e731cb4d6Dianne Hackborn        if (permission != null) {
44612527f9fb1cb0a1ad3be8149c1c88a0e731cb4d6Dianne Hackborn            pw.println(prefix + "permission=" + permission);
44712527f9fb1cb0a1ad3be8149c1c88a0e731cb4d6Dianne Hackborn        }
44839792d2262352ae775091876d5488d2412a2ff92Dianne Hackborn        pw.println(prefix + "processName=" + processName);
44939792d2262352ae775091876d5488d2412a2ff92Dianne Hackborn        pw.println(prefix + "taskAffinity=" + taskAffinity);
45039792d2262352ae775091876d5488d2412a2ff92Dianne Hackborn        pw.println(prefix + "uid=" + uid + " flags=0x" + Integer.toHexString(flags)
45139792d2262352ae775091876d5488d2412a2ff92Dianne Hackborn                + " theme=0x" + Integer.toHexString(theme));
452df6e980e3f63eb0f6f9eb437fa925d5009cd9c44Dianne Hackborn        pw.println(prefix + "requiresSmallestWidthDp=" + requiresSmallestWidthDp
4532762ff3dc864018352362f6d103de471f9529ba6Dianne Hackborn                + " compatibleWidthLimitDp=" + compatibleWidthLimitDp
4542762ff3dc864018352362f6d103de471f9529ba6Dianne Hackborn                + " largestWidthLimitDp=" + largestWidthLimitDp);
4559066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        pw.println(prefix + "sourceDir=" + sourceDir);
456817c24752cf1d70bcd53a038a0d06abbb1ec6aadDianne Hackborn        if (sourceDir == null) {
457817c24752cf1d70bcd53a038a0d06abbb1ec6aadDianne Hackborn            if (publicSourceDir != null) {
458817c24752cf1d70bcd53a038a0d06abbb1ec6aadDianne Hackborn                pw.println(prefix + "publicSourceDir=" + publicSourceDir);
459817c24752cf1d70bcd53a038a0d06abbb1ec6aadDianne Hackborn            }
460817c24752cf1d70bcd53a038a0d06abbb1ec6aadDianne Hackborn        } else if (!sourceDir.equals(publicSourceDir)) {
46139792d2262352ae775091876d5488d2412a2ff92Dianne Hackborn            pw.println(prefix + "publicSourceDir=" + publicSourceDir);
46239792d2262352ae775091876d5488d2412a2ff92Dianne Hackborn        }
46339792d2262352ae775091876d5488d2412a2ff92Dianne Hackborn        if (resourceDirs != null) {
46439792d2262352ae775091876d5488d2412a2ff92Dianne Hackborn            pw.println(prefix + "resourceDirs=" + resourceDirs);
46539792d2262352ae775091876d5488d2412a2ff92Dianne Hackborn        }
4669066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        pw.println(prefix + "dataDir=" + dataDir);
46712527f9fb1cb0a1ad3be8149c1c88a0e731cb4d6Dianne Hackborn        if (sharedLibraryFiles != null) {
46812527f9fb1cb0a1ad3be8149c1c88a0e731cb4d6Dianne Hackborn            pw.println(prefix + "sharedLibraryFiles=" + sharedLibraryFiles);
46912527f9fb1cb0a1ad3be8149c1c88a0e731cb4d6Dianne Hackborn        }
47012527f9fb1cb0a1ad3be8149c1c88a0e731cb4d6Dianne Hackborn        pw.println(prefix + "enabled=" + enabled + " targetSdkVersion=" + targetSdkVersion);
47112527f9fb1cb0a1ad3be8149c1c88a0e731cb4d6Dianne Hackborn        if (manageSpaceActivityName != null) {
47212527f9fb1cb0a1ad3be8149c1c88a0e731cb4d6Dianne Hackborn            pw.println(prefix + "manageSpaceActivityName="+manageSpaceActivityName);
47312527f9fb1cb0a1ad3be8149c1c88a0e731cb4d6Dianne Hackborn        }
47412527f9fb1cb0a1ad3be8149c1c88a0e731cb4d6Dianne Hackborn        if (descriptionRes != 0) {
47512527f9fb1cb0a1ad3be8149c1c88a0e731cb4d6Dianne Hackborn            pw.println(prefix + "description=0x"+Integer.toHexString(descriptionRes));
47612527f9fb1cb0a1ad3be8149c1c88a0e731cb4d6Dianne Hackborn        }
477269248d112e35fe8e9f0d5d11c96dcb2ac1118b0Adam Powell        if (uiOptions != 0) {
478269248d112e35fe8e9f0d5d11c96dcb2ac1118b0Adam Powell            pw.println(prefix + "uiOptions=0x" + Integer.toHexString(uiOptions));
479269248d112e35fe8e9f0d5d11c96dcb2ac1118b0Adam Powell        }
48059dfce8bdaf011337530a0dbec7f7280871f9bc9Fabrice Di Meglio        pw.println(prefix + "supportsRtl=" + (hasRtlSupport() ? "true" : "false"));
4819066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        super.dumpBack(pw, prefix);
4829066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    }
48359dfce8bdaf011337530a0dbec7f7280871f9bc9Fabrice Di Meglio
48459dfce8bdaf011337530a0dbec7f7280871f9bc9Fabrice Di Meglio    /**
48559dfce8bdaf011337530a0dbec7f7280871f9bc9Fabrice Di Meglio     * @return true if "supportsRtl" has been set to true in the AndroidManifest
48659dfce8bdaf011337530a0dbec7f7280871f9bc9Fabrice Di Meglio     * @hide
48759dfce8bdaf011337530a0dbec7f7280871f9bc9Fabrice Di Meglio     */
48859dfce8bdaf011337530a0dbec7f7280871f9bc9Fabrice Di Meglio    public boolean hasRtlSupport() {
48959dfce8bdaf011337530a0dbec7f7280871f9bc9Fabrice Di Meglio        return (flags & FLAG_SUPPORTS_RTL) == FLAG_SUPPORTS_RTL;
49059dfce8bdaf011337530a0dbec7f7280871f9bc9Fabrice Di Meglio    }
4919066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project
4929066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    public static class DisplayNameComparator
4939066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project            implements Comparator<ApplicationInfo> {
4949066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        public DisplayNameComparator(PackageManager pm) {
4959066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project            mPM = pm;
4969066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        }
4979066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project
4989066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        public final int compare(ApplicationInfo aa, ApplicationInfo ab) {
4999066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project            CharSequence  sa = mPM.getApplicationLabel(aa);
5009066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project            if (sa == null) {
5019066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project                sa = aa.packageName;
5029066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project            }
5039066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project            CharSequence  sb = mPM.getApplicationLabel(ab);
5049066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project            if (sb == null) {
5059066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project                sb = ab.packageName;
5069066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project            }
5079066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project
5089066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project            return sCollator.compare(sa.toString(), sb.toString());
5099066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        }
5109066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project
5119066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        private final Collator   sCollator = Collator.getInstance();
5129066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        private PackageManager   mPM;
5139066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    }
5149066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project
5159066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    public ApplicationInfo() {
5169066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    }
5179066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project
5189066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    public ApplicationInfo(ApplicationInfo orig) {
5199066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        super(orig);
5209066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        taskAffinity = orig.taskAffinity;
5219066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        permission = orig.permission;
5229066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        processName = orig.processName;
5239066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        className = orig.className;
5249066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        theme = orig.theme;
5259066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        flags = orig.flags;
526df6e980e3f63eb0f6f9eb437fa925d5009cd9c44Dianne Hackborn        requiresSmallestWidthDp = orig.requiresSmallestWidthDp;
527df6e980e3f63eb0f6f9eb437fa925d5009cd9c44Dianne Hackborn        compatibleWidthLimitDp = orig.compatibleWidthLimitDp;
5282762ff3dc864018352362f6d103de471f9529ba6Dianne Hackborn        largestWidthLimitDp = orig.largestWidthLimitDp;
5299066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        sourceDir = orig.sourceDir;
5309066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        publicSourceDir = orig.publicSourceDir;
53185387d7ba36e56b291cbde87acb5a5b2200fe01cKenny Root        nativeLibraryDir = orig.nativeLibraryDir;
532d1ab01682b136b586aac94334f976f03c762b3c7Kenny Root        resourceDirs = orig.resourceDirs;
5339066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        sharedLibraryFiles = orig.sharedLibraryFiles;
5349066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        dataDir = orig.dataDir;
5359066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        uid = orig.uid;
536a96cbb435d7b2197ab2b61fd98d14cbd6e0c5c3dDianne Hackborn        targetSdkVersion = orig.targetSdkVersion;
5379066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        enabled = orig.enabled;
5380ac3031c159a0904e73eb4439cdc724d8df4a6e6Dianne Hackborn        enabledSetting = orig.enabledSetting;
53954e570f78b45d6c47578a4a2513097b590b6d43fDianne Hackborn        installLocation = orig.installLocation;
5409066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        manageSpaceActivityName = orig.manageSpaceActivityName;
5419066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        descriptionRes = orig.descriptionRes;
542269248d112e35fe8e9f0d5d11c96dcb2ac1118b0Adam Powell        uiOptions = orig.uiOptions;
5439066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    }
5449066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project
5459066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project
5469066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    public String toString() {
5479066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        return "ApplicationInfo{"
5489066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project            + Integer.toHexString(System.identityHashCode(this))
5499066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project            + " " + packageName + "}";
5509066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    }
5519066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project
5529066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    public int describeContents() {
5539066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        return 0;
5549066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    }
5559066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project
5569066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    public void writeToParcel(Parcel dest, int parcelableFlags) {
5579066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        super.writeToParcel(dest, parcelableFlags);
5589066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        dest.writeString(taskAffinity);
5599066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        dest.writeString(permission);
5609066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        dest.writeString(processName);
5619066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        dest.writeString(className);
5629066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        dest.writeInt(theme);
5639066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        dest.writeInt(flags);
564df6e980e3f63eb0f6f9eb437fa925d5009cd9c44Dianne Hackborn        dest.writeInt(requiresSmallestWidthDp);
565df6e980e3f63eb0f6f9eb437fa925d5009cd9c44Dianne Hackborn        dest.writeInt(compatibleWidthLimitDp);
5662762ff3dc864018352362f6d103de471f9529ba6Dianne Hackborn        dest.writeInt(largestWidthLimitDp);
5679066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        dest.writeString(sourceDir);
5689066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        dest.writeString(publicSourceDir);
56985387d7ba36e56b291cbde87acb5a5b2200fe01cKenny Root        dest.writeString(nativeLibraryDir);
570d1ab01682b136b586aac94334f976f03c762b3c7Kenny Root        dest.writeStringArray(resourceDirs);
5719066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        dest.writeStringArray(sharedLibraryFiles);
5729066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        dest.writeString(dataDir);
5739066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        dest.writeInt(uid);
574a96cbb435d7b2197ab2b61fd98d14cbd6e0c5c3dDianne Hackborn        dest.writeInt(targetSdkVersion);
5759066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        dest.writeInt(enabled ? 1 : 0);
5760ac3031c159a0904e73eb4439cdc724d8df4a6e6Dianne Hackborn        dest.writeInt(enabledSetting);
57754e570f78b45d6c47578a4a2513097b590b6d43fDianne Hackborn        dest.writeInt(installLocation);
5789066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        dest.writeString(manageSpaceActivityName);
579181fafaf48208978b8ba2022683ffa78aaeddde1Christopher Tate        dest.writeString(backupAgentName);
5809066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        dest.writeInt(descriptionRes);
581269248d112e35fe8e9f0d5d11c96dcb2ac1118b0Adam Powell        dest.writeInt(uiOptions);
5829066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    }
5839066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project
5849066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    public static final Parcelable.Creator<ApplicationInfo> CREATOR
5859066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project            = new Parcelable.Creator<ApplicationInfo>() {
5869066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        public ApplicationInfo createFromParcel(Parcel source) {
5879066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project            return new ApplicationInfo(source);
5889066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        }
5899066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        public ApplicationInfo[] newArray(int size) {
5909066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project            return new ApplicationInfo[size];
5919066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        }
5929066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    };
5939066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project
5949066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    private ApplicationInfo(Parcel source) {
5959066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        super(source);
5969066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        taskAffinity = source.readString();
5979066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        permission = source.readString();
5989066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        processName = source.readString();
5999066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        className = source.readString();
6009066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        theme = source.readInt();
6019066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        flags = source.readInt();
602df6e980e3f63eb0f6f9eb437fa925d5009cd9c44Dianne Hackborn        requiresSmallestWidthDp = source.readInt();
603df6e980e3f63eb0f6f9eb437fa925d5009cd9c44Dianne Hackborn        compatibleWidthLimitDp = source.readInt();
6042762ff3dc864018352362f6d103de471f9529ba6Dianne Hackborn        largestWidthLimitDp = source.readInt();
6059066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        sourceDir = source.readString();
6069066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        publicSourceDir = source.readString();
60785387d7ba36e56b291cbde87acb5a5b2200fe01cKenny Root        nativeLibraryDir = source.readString();
608d1ab01682b136b586aac94334f976f03c762b3c7Kenny Root        resourceDirs = source.readStringArray();
6099066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        sharedLibraryFiles = source.readStringArray();
6109066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        dataDir = source.readString();
6119066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        uid = source.readInt();
612a96cbb435d7b2197ab2b61fd98d14cbd6e0c5c3dDianne Hackborn        targetSdkVersion = source.readInt();
6139066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        enabled = source.readInt() != 0;
6140ac3031c159a0904e73eb4439cdc724d8df4a6e6Dianne Hackborn        enabledSetting = source.readInt();
61554e570f78b45d6c47578a4a2513097b590b6d43fDianne Hackborn        installLocation = source.readInt();
6169066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        manageSpaceActivityName = source.readString();
617181fafaf48208978b8ba2022683ffa78aaeddde1Christopher Tate        backupAgentName = source.readString();
6189066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        descriptionRes = source.readInt();
619269248d112e35fe8e9f0d5d11c96dcb2ac1118b0Adam Powell        uiOptions = source.readInt();
6209066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    }
6218d112675879a2b83197d3b4ae4fb623abd1a1ec3Mitsuru Oshima
6229066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    /**
6239066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * Retrieve the textual description of the application.  This
6249066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * will call back on the given PackageManager to load the description from
6259066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * the application.
6269066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     *
6279066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * @param pm A PackageManager from which the label can be loaded; usually
6289066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * the PackageManager from which you originally retrieved this item.
6299066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     *
6309066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * @return Returns a CharSequence containing the application's description.
6319066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     * If there is no description, null is returned.
6329066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project     */
6339066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    public CharSequence loadDescription(PackageManager pm) {
6349066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        if (descriptionRes != 0) {
63507330791116513710d879c45b2f095cd314cbfd0Jeff Brown            CharSequence label = pm.getText(packageName, descriptionRes, this);
6369066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project            if (label != null) {
6379066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project                return label;
6389066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project            }
6399066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        }
6409066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project        return null;
6419066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    }
642e5fb328825995aa33b5b7ecf8b5bee2b17f81715Mitsuru Oshima
643e5fb328825995aa33b5b7ecf8b5bee2b17f81715Mitsuru Oshima    /**
644e5fb328825995aa33b5b7ecf8b5bee2b17f81715Mitsuru Oshima     * Disable compatibility mode
645e5fb328825995aa33b5b7ecf8b5bee2b17f81715Mitsuru Oshima     *
646e5fb328825995aa33b5b7ecf8b5bee2b17f81715Mitsuru Oshima     * @hide
647e5fb328825995aa33b5b7ecf8b5bee2b17f81715Mitsuru Oshima     */
648e5fb328825995aa33b5b7ecf8b5bee2b17f81715Mitsuru Oshima    public void disableCompatibilityMode() {
64969fff4a72d4dfc9208db79d773ef3ca23350287eMitsuru Oshima        flags |= (FLAG_SUPPORTS_LARGE_SCREENS | FLAG_SUPPORTS_NORMAL_SCREENS |
65011b822d2a91ea17c34c0cb1c11e80a9a30d72864Dianne Hackborn                FLAG_SUPPORTS_SMALL_SCREENS | FLAG_RESIZEABLE_FOR_SCREENS |
65114cee9f688c32d63d8521188e7422811629bb7c2Dianne Hackborn                FLAG_SUPPORTS_SCREEN_DENSITIES | FLAG_SUPPORTS_XLARGE_SCREENS);
652e5fb328825995aa33b5b7ecf8b5bee2b17f81715Mitsuru Oshima    }
65307330791116513710d879c45b2f095cd314cbfd0Jeff Brown
65407330791116513710d879c45b2f095cd314cbfd0Jeff Brown    /**
65507330791116513710d879c45b2f095cd314cbfd0Jeff Brown     * @hide
65607330791116513710d879c45b2f095cd314cbfd0Jeff Brown     */
65707330791116513710d879c45b2f095cd314cbfd0Jeff Brown    @Override protected Drawable loadDefaultIcon(PackageManager pm) {
65807330791116513710d879c45b2f095cd314cbfd0Jeff Brown        if ((flags & FLAG_EXTERNAL_STORAGE) != 0
65907330791116513710d879c45b2f095cd314cbfd0Jeff Brown                && isPackageUnavailable(pm)) {
66007330791116513710d879c45b2f095cd314cbfd0Jeff Brown            return Resources.getSystem().getDrawable(
66107330791116513710d879c45b2f095cd314cbfd0Jeff Brown                    com.android.internal.R.drawable.sym_app_on_sd_unavailable_icon);
66207330791116513710d879c45b2f095cd314cbfd0Jeff Brown        }
66307330791116513710d879c45b2f095cd314cbfd0Jeff Brown        return pm.getDefaultActivityIcon();
66407330791116513710d879c45b2f095cd314cbfd0Jeff Brown    }
66507330791116513710d879c45b2f095cd314cbfd0Jeff Brown
66607330791116513710d879c45b2f095cd314cbfd0Jeff Brown    private boolean isPackageUnavailable(PackageManager pm) {
66707330791116513710d879c45b2f095cd314cbfd0Jeff Brown        try {
66807330791116513710d879c45b2f095cd314cbfd0Jeff Brown            return pm.getPackageInfo(packageName, 0) == null;
66907330791116513710d879c45b2f095cd314cbfd0Jeff Brown        } catch (NameNotFoundException ex) {
67007330791116513710d879c45b2f095cd314cbfd0Jeff Brown            return true;
67107330791116513710d879c45b2f095cd314cbfd0Jeff Brown        }
67207330791116513710d879c45b2f095cd314cbfd0Jeff Brown    }
67307330791116513710d879c45b2f095cd314cbfd0Jeff Brown
67407330791116513710d879c45b2f095cd314cbfd0Jeff Brown    /**
67507330791116513710d879c45b2f095cd314cbfd0Jeff Brown     * @hide
67607330791116513710d879c45b2f095cd314cbfd0Jeff Brown     */
67707330791116513710d879c45b2f095cd314cbfd0Jeff Brown    @Override protected ApplicationInfo getApplicationInfo() {
67807330791116513710d879c45b2f095cd314cbfd0Jeff Brown        return this;
67907330791116513710d879c45b2f095cd314cbfd0Jeff Brown    }
6809066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project}
681