PackageManager.java revision f82ab8bea4c914c567a3487297fd4914561978a1
1/*
2 * Copyright (C) 2006 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 *      http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package android.content.pm;
18
19import android.Manifest;
20import android.annotation.CheckResult;
21import android.annotation.DrawableRes;
22import android.annotation.IntDef;
23import android.annotation.NonNull;
24import android.annotation.Nullable;
25import android.annotation.RequiresPermission;
26import android.annotation.SdkConstant;
27import android.annotation.SdkConstant.SdkConstantType;
28import android.annotation.StringRes;
29import android.annotation.SystemApi;
30import android.annotation.TestApi;
31import android.annotation.UserIdInt;
32import android.annotation.XmlRes;
33import android.app.PackageDeleteObserver;
34import android.app.PackageInstallObserver;
35import android.app.admin.DevicePolicyManager;
36import android.content.ComponentName;
37import android.content.Context;
38import android.content.Intent;
39import android.content.IntentFilter;
40import android.content.IntentSender;
41import android.content.pm.PackageParser.PackageParserException;
42import android.content.res.Resources;
43import android.content.res.XmlResourceParser;
44import android.graphics.Rect;
45import android.graphics.drawable.Drawable;
46import android.net.Uri;
47import android.os.Bundle;
48import android.os.Handler;
49import android.os.RemoteException;
50import android.os.UserHandle;
51import android.os.storage.VolumeInfo;
52import android.util.AndroidException;
53import android.util.Log;
54
55import com.android.internal.util.ArrayUtils;
56
57import java.io.File;
58import java.lang.annotation.Retention;
59import java.lang.annotation.RetentionPolicy;
60import java.util.List;
61
62/**
63 * Class for retrieving various kinds of information related to the application
64 * packages that are currently installed on the device.
65 *
66 * You can find this class through {@link Context#getPackageManager}.
67 */
68public abstract class PackageManager {
69    private static final String TAG = "PackageManager";
70
71    /**
72     * This exception is thrown when a given package, application, or component
73     * name cannot be found.
74     */
75    public static class NameNotFoundException extends AndroidException {
76        public NameNotFoundException() {
77        }
78
79        public NameNotFoundException(String name) {
80            super(name);
81        }
82    }
83
84    /**
85     * Listener for changes in permissions granted to a UID.
86     *
87     * @hide
88     */
89    @SystemApi
90    public interface OnPermissionsChangedListener {
91
92        /**
93         * Called when the permissions for a UID change.
94         * @param uid The UID with a change.
95         */
96        public void onPermissionsChanged(int uid);
97    }
98
99    /**
100     * As a guiding principle:
101     * <p>
102     * {@code GET_} flags are used to request additional data that may have been
103     * elided to save wire space.
104     * <p>
105     * {@code MATCH_} flags are used to include components or packages that
106     * would have otherwise been omitted from a result set by current system
107     * state.
108     */
109
110    /** @hide */
111    @IntDef(flag = true, value = {
112            GET_ACTIVITIES,
113            GET_CONFIGURATIONS,
114            GET_GIDS,
115            GET_INSTRUMENTATION,
116            GET_INTENT_FILTERS,
117            GET_META_DATA,
118            GET_PERMISSIONS,
119            GET_PROVIDERS,
120            GET_RECEIVERS,
121            GET_SERVICES,
122            GET_SHARED_LIBRARY_FILES,
123            GET_SIGNATURES,
124            GET_URI_PERMISSION_PATTERNS,
125            MATCH_UNINSTALLED_PACKAGES,
126            MATCH_DISABLED_COMPONENTS,
127            MATCH_DISABLED_UNTIL_USED_COMPONENTS,
128            MATCH_SYSTEM_ONLY,
129            MATCH_DEBUG_TRIAGED_MISSING,
130    })
131    @Retention(RetentionPolicy.SOURCE)
132    public @interface PackageInfoFlags {}
133
134    /** @hide */
135    @IntDef(flag = true, value = {
136            GET_META_DATA,
137            GET_SHARED_LIBRARY_FILES,
138            MATCH_UNINSTALLED_PACKAGES,
139            MATCH_SYSTEM_ONLY,
140            MATCH_DEBUG_TRIAGED_MISSING,
141    })
142    @Retention(RetentionPolicy.SOURCE)
143    public @interface ApplicationInfoFlags {}
144
145    /** @hide */
146    @IntDef(flag = true, value = {
147            GET_META_DATA,
148            GET_SHARED_LIBRARY_FILES,
149            MATCH_ALL,
150            MATCH_DEBUG_TRIAGED_MISSING,
151            MATCH_DEFAULT_ONLY,
152            MATCH_DISABLED_COMPONENTS,
153            MATCH_DISABLED_UNTIL_USED_COMPONENTS,
154            MATCH_ENCRYPTION_AWARE,
155            MATCH_ENCRYPTION_AWARE_AND_UNAWARE,
156            MATCH_ENCRYPTION_UNAWARE,
157            MATCH_SYSTEM_ONLY,
158            MATCH_UNINSTALLED_PACKAGES,
159    })
160    @Retention(RetentionPolicy.SOURCE)
161    public @interface ComponentInfoFlags {}
162
163    /** @hide */
164    @IntDef(flag = true, value = {
165            GET_META_DATA,
166            GET_RESOLVED_FILTER,
167            GET_SHARED_LIBRARY_FILES,
168            MATCH_ALL,
169            MATCH_DEBUG_TRIAGED_MISSING,
170            MATCH_DISABLED_COMPONENTS,
171            MATCH_DISABLED_UNTIL_USED_COMPONENTS,
172            MATCH_DEFAULT_ONLY,
173            MATCH_ENCRYPTION_AWARE,
174            MATCH_ENCRYPTION_AWARE_AND_UNAWARE,
175            MATCH_ENCRYPTION_UNAWARE,
176            MATCH_SYSTEM_ONLY,
177            MATCH_UNINSTALLED_PACKAGES,
178    })
179    @Retention(RetentionPolicy.SOURCE)
180    public @interface ResolveInfoFlags {}
181
182    /** @hide */
183    @IntDef(flag = true, value = {
184            GET_META_DATA,
185    })
186    @Retention(RetentionPolicy.SOURCE)
187    public @interface PermissionInfoFlags {}
188
189    /** @hide */
190    @IntDef(flag = true, value = {
191            GET_META_DATA,
192    })
193    @Retention(RetentionPolicy.SOURCE)
194    public @interface PermissionGroupInfoFlags {}
195
196    /** @hide */
197    @IntDef(flag = true, value = {
198            GET_META_DATA,
199    })
200    @Retention(RetentionPolicy.SOURCE)
201    public @interface InstrumentationInfoFlags {}
202
203    /**
204     * {@link PackageInfo} flag: return information about
205     * activities in the package in {@link PackageInfo#activities}.
206     */
207    public static final int GET_ACTIVITIES              = 0x00000001;
208
209    /**
210     * {@link PackageInfo} flag: return information about
211     * intent receivers in the package in
212     * {@link PackageInfo#receivers}.
213     */
214    public static final int GET_RECEIVERS               = 0x00000002;
215
216    /**
217     * {@link PackageInfo} flag: return information about
218     * services in the package in {@link PackageInfo#services}.
219     */
220    public static final int GET_SERVICES                = 0x00000004;
221
222    /**
223     * {@link PackageInfo} flag: return information about
224     * content providers in the package in
225     * {@link PackageInfo#providers}.
226     */
227    public static final int GET_PROVIDERS               = 0x00000008;
228
229    /**
230     * {@link PackageInfo} flag: return information about
231     * instrumentation in the package in
232     * {@link PackageInfo#instrumentation}.
233     */
234    public static final int GET_INSTRUMENTATION         = 0x00000010;
235
236    /**
237     * {@link PackageInfo} flag: return information about the
238     * intent filters supported by the activity.
239     */
240    public static final int GET_INTENT_FILTERS          = 0x00000020;
241
242    /**
243     * {@link PackageInfo} flag: return information about the
244     * signatures included in the package.
245     */
246    public static final int GET_SIGNATURES          = 0x00000040;
247
248    /**
249     * {@link ResolveInfo} flag: return the IntentFilter that
250     * was matched for a particular ResolveInfo in
251     * {@link ResolveInfo#filter}.
252     */
253    public static final int GET_RESOLVED_FILTER         = 0x00000040;
254
255    /**
256     * {@link ComponentInfo} flag: return the {@link ComponentInfo#metaData}
257     * data {@link android.os.Bundle}s that are associated with a component.
258     * This applies for any API returning a ComponentInfo subclass.
259     */
260    public static final int GET_META_DATA               = 0x00000080;
261
262    /**
263     * {@link PackageInfo} flag: return the
264     * {@link PackageInfo#gids group ids} that are associated with an
265     * application.
266     * This applies for any API returning a PackageInfo class, either
267     * directly or nested inside of another.
268     */
269    public static final int GET_GIDS                    = 0x00000100;
270
271    /**
272     * @deprecated replaced with {@link #MATCH_DISABLED_COMPONENTS}
273     */
274    @Deprecated
275    public static final int GET_DISABLED_COMPONENTS = 0x00000200;
276
277    /**
278     * {@link PackageInfo} flag: include disabled components in the returned info.
279     */
280    public static final int MATCH_DISABLED_COMPONENTS = 0x00000200;
281
282    /**
283     * {@link ApplicationInfo} flag: return the
284     * {@link ApplicationInfo#sharedLibraryFiles paths to the shared libraries}
285     * that are associated with an application.
286     * This applies for any API returning an ApplicationInfo class, either
287     * directly or nested inside of another.
288     */
289    public static final int GET_SHARED_LIBRARY_FILES    = 0x00000400;
290
291    /**
292     * {@link ProviderInfo} flag: return the
293     * {@link ProviderInfo#uriPermissionPatterns URI permission patterns}
294     * that are associated with a content provider.
295     * This applies for any API returning a ProviderInfo class, either
296     * directly or nested inside of another.
297     */
298    public static final int GET_URI_PERMISSION_PATTERNS  = 0x00000800;
299    /**
300     * {@link PackageInfo} flag: return information about
301     * permissions in the package in
302     * {@link PackageInfo#permissions}.
303     */
304    public static final int GET_PERMISSIONS               = 0x00001000;
305
306    /**
307     * @deprecated replaced with {@link #MATCH_UNINSTALLED_PACKAGES}
308     */
309    @Deprecated
310    public static final int GET_UNINSTALLED_PACKAGES = 0x00002000;
311
312    /**
313     * Flag parameter to retrieve some information about all applications (even
314     * uninstalled ones) which have data directories. This state could have
315     * resulted if applications have been deleted with flag
316     * {@code DONT_DELETE_DATA} with a possibility of being replaced or
317     * reinstalled in future.
318     * <p>
319     * Note: this flag may cause less information about currently installed
320     * applications to be returned.
321     */
322    public static final int MATCH_UNINSTALLED_PACKAGES = 0x00002000;
323
324    /**
325     * {@link PackageInfo} flag: return information about
326     * hardware preferences in
327     * {@link PackageInfo#configPreferences PackageInfo.configPreferences},
328     * and requested features in {@link PackageInfo#reqFeatures} and
329     * {@link PackageInfo#featureGroups}.
330     */
331    public static final int GET_CONFIGURATIONS = 0x00004000;
332
333    /**
334     * @deprecated replaced with {@link #MATCH_DISABLED_UNTIL_USED_COMPONENTS}.
335     */
336    @Deprecated
337    public static final int GET_DISABLED_UNTIL_USED_COMPONENTS = 0x00008000;
338
339    /**
340     * {@link PackageInfo} flag: include disabled components which are in
341     * that state only because of {@link #COMPONENT_ENABLED_STATE_DISABLED_UNTIL_USED}
342     * in the returned info.  Note that if you set this flag, applications
343     * that are in this disabled state will be reported as enabled.
344     */
345    public static final int MATCH_DISABLED_UNTIL_USED_COMPONENTS = 0x00008000;
346
347    /**
348     * Resolution and querying flag: if set, only filters that support the
349     * {@link android.content.Intent#CATEGORY_DEFAULT} will be considered for
350     * matching.  This is a synonym for including the CATEGORY_DEFAULT in your
351     * supplied Intent.
352     */
353    public static final int MATCH_DEFAULT_ONLY  = 0x00010000;
354
355    /**
356     * Querying flag: if set and if the platform is doing any filtering of the
357     * results, then the filtering will not happen. This is a synonym for saying
358     * that all results should be returned.
359     * <p>
360     * <em>This flag should be used with extreme care.</em>
361     */
362    public static final int MATCH_ALL = 0x00020000;
363
364    /**
365     * Querying flag: include only components which are encryption unaware in
366     * the returned info, regardless of the current user state.
367     */
368    public static final int MATCH_ENCRYPTION_UNAWARE = 0x00040000;
369
370    /**
371     * Querying flag: include only components which are encryption aware in the
372     * returned info, regardless of the current user state.
373     */
374    public static final int MATCH_ENCRYPTION_AWARE = 0x00080000;
375
376    /**
377     * Querying flag: include both encryption aware and unaware components in
378     * the returned info, regardless of the current user state.
379     */
380    public static final int MATCH_ENCRYPTION_AWARE_AND_UNAWARE = MATCH_ENCRYPTION_AWARE
381            | MATCH_ENCRYPTION_UNAWARE;
382
383    /**
384     * Querying flag: include only components from applications that are marked
385     * with {@link ApplicationInfo#FLAG_SYSTEM}.
386     */
387    public static final int MATCH_SYSTEM_ONLY = 0x00100000;
388
389    /**
390     * Internal flag used to indicate that a system component has done their
391     * homework and verified that they correctly handle packages and components
392     * that come and go over time. In particular:
393     * <ul>
394     * <li>Apps installed on external storage, which will appear to be
395     * uninstalled while the the device is ejected.
396     * <li>Apps with encryption unaware components, which will appear to not
397     * exist while the device is locked.
398     * </ul>
399     *
400     * @see #MATCH_UNINSTALLED_PACKAGES
401     * @see #MATCH_ENCRYPTION_AWARE_AND_UNAWARE
402     * @hide
403     */
404    public static final int MATCH_DEBUG_TRIAGED_MISSING = 0x10000000;
405
406    /**
407     * Flag for {@link #addCrossProfileIntentFilter}: if this flag is set: when
408     * resolving an intent that matches the {@code CrossProfileIntentFilter},
409     * the current profile will be skipped. Only activities in the target user
410     * can respond to the intent.
411     *
412     * @hide
413     */
414    public static final int SKIP_CURRENT_PROFILE = 0x00000002;
415
416    /**
417     * Flag for {@link #addCrossProfileIntentFilter}: if this flag is set:
418     * activities in the other profiles can respond to the intent only if no activity with
419     * non-negative priority in current profile can respond to the intent.
420     * @hide
421     */
422    public static final int ONLY_IF_NO_MATCH_FOUND = 0x00000004;
423
424    /** @hide */
425    @IntDef({PERMISSION_GRANTED, PERMISSION_DENIED})
426    @Retention(RetentionPolicy.SOURCE)
427    public @interface PermissionResult {}
428
429    /**
430     * Permission check result: this is returned by {@link #checkPermission}
431     * if the permission has been granted to the given package.
432     */
433    public static final int PERMISSION_GRANTED = 0;
434
435    /**
436     * Permission check result: this is returned by {@link #checkPermission}
437     * if the permission has not been granted to the given package.
438     */
439    public static final int PERMISSION_DENIED = -1;
440
441    /**
442     * Signature check result: this is returned by {@link #checkSignatures}
443     * if all signatures on the two packages match.
444     */
445    public static final int SIGNATURE_MATCH = 0;
446
447    /**
448     * Signature check result: this is returned by {@link #checkSignatures}
449     * if neither of the two packages is signed.
450     */
451    public static final int SIGNATURE_NEITHER_SIGNED = 1;
452
453    /**
454     * Signature check result: this is returned by {@link #checkSignatures}
455     * if the first package is not signed but the second is.
456     */
457    public static final int SIGNATURE_FIRST_NOT_SIGNED = -1;
458
459    /**
460     * Signature check result: this is returned by {@link #checkSignatures}
461     * if the second package is not signed but the first is.
462     */
463    public static final int SIGNATURE_SECOND_NOT_SIGNED = -2;
464
465    /**
466     * Signature check result: this is returned by {@link #checkSignatures}
467     * if not all signatures on both packages match.
468     */
469    public static final int SIGNATURE_NO_MATCH = -3;
470
471    /**
472     * Signature check result: this is returned by {@link #checkSignatures}
473     * if either of the packages are not valid.
474     */
475    public static final int SIGNATURE_UNKNOWN_PACKAGE = -4;
476
477    /**
478     * Flag for {@link #setApplicationEnabledSetting(String, int, int)}
479     * and {@link #setComponentEnabledSetting(ComponentName, int, int)}: This
480     * component or application is in its default enabled state (as specified
481     * in its manifest).
482     */
483    public static final int COMPONENT_ENABLED_STATE_DEFAULT = 0;
484
485    /**
486     * Flag for {@link #setApplicationEnabledSetting(String, int, int)}
487     * and {@link #setComponentEnabledSetting(ComponentName, int, int)}: This
488     * component or application has been explictily enabled, regardless of
489     * what it has specified in its manifest.
490     */
491    public static final int COMPONENT_ENABLED_STATE_ENABLED = 1;
492
493    /**
494     * Flag for {@link #setApplicationEnabledSetting(String, int, int)}
495     * and {@link #setComponentEnabledSetting(ComponentName, int, int)}: This
496     * component or application has been explicitly disabled, regardless of
497     * what it has specified in its manifest.
498     */
499    public static final int COMPONENT_ENABLED_STATE_DISABLED = 2;
500
501    /**
502     * Flag for {@link #setApplicationEnabledSetting(String, int, int)} only: The
503     * user has explicitly disabled the application, regardless of what it has
504     * specified in its manifest.  Because this is due to the user's request,
505     * they may re-enable it if desired through the appropriate system UI.  This
506     * option currently <strong>cannot</strong> be used with
507     * {@link #setComponentEnabledSetting(ComponentName, int, int)}.
508     */
509    public static final int COMPONENT_ENABLED_STATE_DISABLED_USER = 3;
510
511    /**
512     * Flag for {@link #setApplicationEnabledSetting(String, int, int)} only: This
513     * application should be considered, until the point where the user actually
514     * wants to use it.  This means that it will not normally show up to the user
515     * (such as in the launcher), but various parts of the user interface can
516     * use {@link #GET_DISABLED_UNTIL_USED_COMPONENTS} to still see it and allow
517     * the user to select it (as for example an IME, device admin, etc).  Such code,
518     * once the user has selected the app, should at that point also make it enabled.
519     * This option currently <strong>can not</strong> be used with
520     * {@link #setComponentEnabledSetting(ComponentName, int, int)}.
521     */
522    public static final int COMPONENT_ENABLED_STATE_DISABLED_UNTIL_USED = 4;
523
524    /** @hide */
525    @IntDef(flag = true, value = {
526            INSTALL_FORWARD_LOCK,
527            INSTALL_REPLACE_EXISTING,
528            INSTALL_ALLOW_TEST,
529            INSTALL_EXTERNAL,
530            INSTALL_INTERNAL,
531            INSTALL_FROM_ADB,
532            INSTALL_ALL_USERS,
533            INSTALL_ALLOW_DOWNGRADE,
534            INSTALL_GRANT_RUNTIME_PERMISSIONS,
535            INSTALL_FORCE_VOLUME_UUID,
536            INSTALL_FORCE_PERMISSION_PROMPT,
537            INSTALL_EPHEMERAL,
538    })
539    @Retention(RetentionPolicy.SOURCE)
540    public @interface InstallFlags {}
541
542    /**
543     * Flag parameter for {@link #installPackage} to indicate that this package
544     * should be installed as forward locked, i.e. only the app itself should
545     * have access to its code and non-resource assets.
546     *
547     * @hide
548     */
549    public static final int INSTALL_FORWARD_LOCK = 0x00000001;
550
551    /**
552     * Flag parameter for {@link #installPackage} to indicate that you want to
553     * replace an already installed package, if one exists.
554     *
555     * @hide
556     */
557    public static final int INSTALL_REPLACE_EXISTING = 0x00000002;
558
559    /**
560     * Flag parameter for {@link #installPackage} to indicate that you want to
561     * allow test packages (those that have set android:testOnly in their
562     * manifest) to be installed.
563     * @hide
564     */
565    public static final int INSTALL_ALLOW_TEST = 0x00000004;
566
567    /**
568     * Flag parameter for {@link #installPackage} to indicate that this package
569     * must be installed to an ASEC on a {@link VolumeInfo#TYPE_PUBLIC}.
570     *
571     * @hide
572     */
573    public static final int INSTALL_EXTERNAL = 0x00000008;
574
575    /**
576     * Flag parameter for {@link #installPackage} to indicate that this package
577     * must be installed to internal storage.
578     *
579     * @hide
580     */
581    public static final int INSTALL_INTERNAL = 0x00000010;
582
583    /**
584     * Flag parameter for {@link #installPackage} to indicate that this install
585     * was initiated via ADB.
586     *
587     * @hide
588     */
589    public static final int INSTALL_FROM_ADB = 0x00000020;
590
591    /**
592     * Flag parameter for {@link #installPackage} to indicate that this install
593     * should immediately be visible to all users.
594     *
595     * @hide
596     */
597    public static final int INSTALL_ALL_USERS = 0x00000040;
598
599    /**
600     * Flag parameter for {@link #installPackage} to indicate that it is okay
601     * to install an update to an app where the newly installed app has a lower
602     * version code than the currently installed app.
603     *
604     * @hide
605     */
606    public static final int INSTALL_ALLOW_DOWNGRADE = 0x00000080;
607
608    /**
609     * Flag parameter for {@link #installPackage} to indicate that all runtime
610     * permissions should be granted to the package. If {@link #INSTALL_ALL_USERS}
611     * is set the runtime permissions will be granted to all users, otherwise
612     * only to the owner.
613     *
614     * @hide
615     */
616    public static final int INSTALL_GRANT_RUNTIME_PERMISSIONS = 0x00000100;
617
618    /** {@hide} */
619    public static final int INSTALL_FORCE_VOLUME_UUID = 0x00000200;
620
621    /**
622     * Flag parameter for {@link #installPackage} to indicate that we always want to force
623     * the prompt for permission approval. This overrides any special behaviour for internal
624     * components.
625     *
626     * @hide
627     */
628    public static final int INSTALL_FORCE_PERMISSION_PROMPT = 0x00000400;
629
630    /**
631     * Flag parameter for {@link #installPackage} to indicate that this package is
632     * to be installed as a lightweight "ephemeral" app.
633     *
634     * @hide
635     */
636    public static final int INSTALL_EPHEMERAL = 0x00000800;
637
638    /**
639     * Flag parameter for
640     * {@link #setComponentEnabledSetting(android.content.ComponentName, int, int)} to indicate
641     * that you don't want to kill the app containing the component.  Be careful when you set this
642     * since changing component states can make the containing application's behavior unpredictable.
643     */
644    public static final int DONT_KILL_APP = 0x00000001;
645
646    /**
647     * Installation return code: this is passed to the
648     * {@link IPackageInstallObserver} on success.
649     *
650     * @hide
651     */
652    @SystemApi
653    public static final int INSTALL_SUCCEEDED = 1;
654
655    /**
656     * Installation return code: this is passed to the
657     * {@link IPackageInstallObserver} if the package is already installed.
658     *
659     * @hide
660     */
661    @SystemApi
662    public static final int INSTALL_FAILED_ALREADY_EXISTS = -1;
663
664    /**
665     * Installation return code: this is passed to the
666     * {@link IPackageInstallObserver} if the package archive file is invalid.
667     *
668     * @hide
669     */
670    @SystemApi
671    public static final int INSTALL_FAILED_INVALID_APK = -2;
672
673    /**
674     * Installation return code: this is passed to the
675     * {@link IPackageInstallObserver} if the URI passed in is invalid.
676     *
677     * @hide
678     */
679    @SystemApi
680    public static final int INSTALL_FAILED_INVALID_URI = -3;
681
682    /**
683     * Installation return code: this is passed to the
684     * {@link IPackageInstallObserver} if the package manager service found that
685     * the device didn't have enough storage space to install the app.
686     *
687     * @hide
688     */
689    @SystemApi
690    public static final int INSTALL_FAILED_INSUFFICIENT_STORAGE = -4;
691
692    /**
693     * Installation return code: this is passed to the
694     * {@link IPackageInstallObserver} if a package is already installed with
695     * the same name.
696     *
697     * @hide
698     */
699    @SystemApi
700    public static final int INSTALL_FAILED_DUPLICATE_PACKAGE = -5;
701
702    /**
703     * Installation return code: this is passed to the
704     * {@link IPackageInstallObserver} if the requested shared user does not
705     * exist.
706     *
707     * @hide
708     */
709    @SystemApi
710    public static final int INSTALL_FAILED_NO_SHARED_USER = -6;
711
712    /**
713     * Installation return code: this is passed to the
714     * {@link IPackageInstallObserver} if a previously installed package of the
715     * same name has a different signature than the new package (and the old
716     * package's data was not removed).
717     *
718     * @hide
719     */
720    @SystemApi
721    public static final int INSTALL_FAILED_UPDATE_INCOMPATIBLE = -7;
722
723    /**
724     * Installation return code: this is passed to the
725     * {@link IPackageInstallObserver} if the new package is requested a shared
726     * user which is already installed on the device and does not have matching
727     * signature.
728     *
729     * @hide
730     */
731    @SystemApi
732    public static final int INSTALL_FAILED_SHARED_USER_INCOMPATIBLE = -8;
733
734    /**
735     * Installation return code: this is passed to the
736     * {@link IPackageInstallObserver} if the new package uses a shared library
737     * that is not available.
738     *
739     * @hide
740     */
741    @SystemApi
742    public static final int INSTALL_FAILED_MISSING_SHARED_LIBRARY = -9;
743
744    /**
745     * Installation return code: this is passed to the
746     * {@link IPackageInstallObserver} if the new package uses a shared library
747     * that is not available.
748     *
749     * @hide
750     */
751    @SystemApi
752    public static final int INSTALL_FAILED_REPLACE_COULDNT_DELETE = -10;
753
754    /**
755     * Installation return code: this is passed to the
756     * {@link IPackageInstallObserver} if the new package failed while
757     * optimizing and validating its dex files, either because there was not
758     * enough storage or the validation failed.
759     *
760     * @hide
761     */
762    @SystemApi
763    public static final int INSTALL_FAILED_DEXOPT = -11;
764
765    /**
766     * Installation return code: this is passed to the
767     * {@link IPackageInstallObserver} if the new package failed because the
768     * current SDK version is older than that required by the package.
769     *
770     * @hide
771     */
772    @SystemApi
773    public static final int INSTALL_FAILED_OLDER_SDK = -12;
774
775    /**
776     * Installation return code: this is passed to the
777     * {@link IPackageInstallObserver} if the new package failed because it
778     * contains a content provider with the same authority as a provider already
779     * installed in the system.
780     *
781     * @hide
782     */
783    @SystemApi
784    public static final int INSTALL_FAILED_CONFLICTING_PROVIDER = -13;
785
786    /**
787     * Installation return code: this is passed to the
788     * {@link IPackageInstallObserver} if the new package failed because the
789     * current SDK version is newer than that required by the package.
790     *
791     * @hide
792     */
793    @SystemApi
794    public static final int INSTALL_FAILED_NEWER_SDK = -14;
795
796    /**
797     * Installation return code: this is passed to the
798     * {@link IPackageInstallObserver} if the new package failed because it has
799     * specified that it is a test-only package and the caller has not supplied
800     * the {@link #INSTALL_ALLOW_TEST} flag.
801     *
802     * @hide
803     */
804    @SystemApi
805    public static final int INSTALL_FAILED_TEST_ONLY = -15;
806
807    /**
808     * Installation return code: this is passed to the
809     * {@link IPackageInstallObserver} if the package being installed contains
810     * native code, but none that is compatible with the device's CPU_ABI.
811     *
812     * @hide
813     */
814    @SystemApi
815    public static final int INSTALL_FAILED_CPU_ABI_INCOMPATIBLE = -16;
816
817    /**
818     * Installation return code: this is passed to the
819     * {@link IPackageInstallObserver} if the new package uses a feature that is
820     * not available.
821     *
822     * @hide
823     */
824    @SystemApi
825    public static final int INSTALL_FAILED_MISSING_FEATURE = -17;
826
827    // ------ Errors related to sdcard
828    /**
829     * Installation return code: this is passed to the
830     * {@link IPackageInstallObserver} if a secure container mount point
831     * couldn't be accessed on external media.
832     *
833     * @hide
834     */
835    @SystemApi
836    public static final int INSTALL_FAILED_CONTAINER_ERROR = -18;
837
838    /**
839     * Installation return code: this is passed to the
840     * {@link IPackageInstallObserver} if the new package couldn't be installed
841     * in the specified install location.
842     *
843     * @hide
844     */
845    @SystemApi
846    public static final int INSTALL_FAILED_INVALID_INSTALL_LOCATION = -19;
847
848    /**
849     * Installation return code: this is passed to the
850     * {@link IPackageInstallObserver} if the new package couldn't be installed
851     * in the specified install location because the media is not available.
852     *
853     * @hide
854     */
855    @SystemApi
856    public static final int INSTALL_FAILED_MEDIA_UNAVAILABLE = -20;
857
858    /**
859     * Installation return code: this is passed to the
860     * {@link IPackageInstallObserver} if the new package couldn't be installed
861     * because the verification timed out.
862     *
863     * @hide
864     */
865    @SystemApi
866    public static final int INSTALL_FAILED_VERIFICATION_TIMEOUT = -21;
867
868    /**
869     * Installation return code: this is passed to the
870     * {@link IPackageInstallObserver} if the new package couldn't be installed
871     * because the verification did not succeed.
872     *
873     * @hide
874     */
875    @SystemApi
876    public static final int INSTALL_FAILED_VERIFICATION_FAILURE = -22;
877
878    /**
879     * Installation return code: this is passed to the
880     * {@link IPackageInstallObserver} if the package changed from what the
881     * calling program expected.
882     *
883     * @hide
884     */
885    @SystemApi
886    public static final int INSTALL_FAILED_PACKAGE_CHANGED = -23;
887
888    /**
889     * Installation return code: this is passed to the
890     * {@link IPackageInstallObserver} if the new package is assigned a
891     * different UID than it previously held.
892     *
893     * @hide
894     */
895    public static final int INSTALL_FAILED_UID_CHANGED = -24;
896
897    /**
898     * Installation return code: this is passed to the
899     * {@link IPackageInstallObserver} if the new package has an older version
900     * code than the currently installed package.
901     *
902     * @hide
903     */
904    public static final int INSTALL_FAILED_VERSION_DOWNGRADE = -25;
905
906    /**
907     * Installation return code: this is passed to the
908     * {@link IPackageInstallObserver} if the old package has target SDK high
909     * enough to support runtime permission and the new package has target SDK
910     * low enough to not support runtime permissions.
911     *
912     * @hide
913     */
914    @SystemApi
915    public static final int INSTALL_FAILED_PERMISSION_MODEL_DOWNGRADE = -26;
916
917    /**
918     * Installation parse return code: this is passed to the
919     * {@link IPackageInstallObserver} if the parser was given a path that is
920     * not a file, or does not end with the expected '.apk' extension.
921     *
922     * @hide
923     */
924    @SystemApi
925    public static final int INSTALL_PARSE_FAILED_NOT_APK = -100;
926
927    /**
928     * Installation parse return code: this is passed to the
929     * {@link IPackageInstallObserver} if the parser was unable to retrieve the
930     * AndroidManifest.xml file.
931     *
932     * @hide
933     */
934    @SystemApi
935    public static final int INSTALL_PARSE_FAILED_BAD_MANIFEST = -101;
936
937    /**
938     * Installation parse return code: this is passed to the
939     * {@link IPackageInstallObserver} if the parser encountered an unexpected
940     * exception.
941     *
942     * @hide
943     */
944    @SystemApi
945    public static final int INSTALL_PARSE_FAILED_UNEXPECTED_EXCEPTION = -102;
946
947    /**
948     * Installation parse return code: this is passed to the
949     * {@link IPackageInstallObserver} if the parser did not find any
950     * certificates in the .apk.
951     *
952     * @hide
953     */
954    @SystemApi
955    public static final int INSTALL_PARSE_FAILED_NO_CERTIFICATES = -103;
956
957    /**
958     * Installation parse return code: this is passed to the
959     * {@link IPackageInstallObserver} if the parser found inconsistent
960     * certificates on the files in the .apk.
961     *
962     * @hide
963     */
964    @SystemApi
965    public static final int INSTALL_PARSE_FAILED_INCONSISTENT_CERTIFICATES = -104;
966
967    /**
968     * Installation parse return code: this is passed to the
969     * {@link IPackageInstallObserver} if the parser encountered a
970     * CertificateEncodingException in one of the files in the .apk.
971     *
972     * @hide
973     */
974    @SystemApi
975    public static final int INSTALL_PARSE_FAILED_CERTIFICATE_ENCODING = -105;
976
977    /**
978     * Installation parse return code: this is passed to the
979     * {@link IPackageInstallObserver} if the parser encountered a bad or
980     * missing package name in the manifest.
981     *
982     * @hide
983     */
984    @SystemApi
985    public static final int INSTALL_PARSE_FAILED_BAD_PACKAGE_NAME = -106;
986
987    /**
988     * Installation parse return code: this is passed to the
989     * {@link IPackageInstallObserver} if the parser encountered a bad shared
990     * user id name in the manifest.
991     *
992     * @hide
993     */
994    @SystemApi
995    public static final int INSTALL_PARSE_FAILED_BAD_SHARED_USER_ID = -107;
996
997    /**
998     * Installation parse return code: this is passed to the
999     * {@link IPackageInstallObserver} if the parser encountered some structural
1000     * problem in the manifest.
1001     *
1002     * @hide
1003     */
1004    @SystemApi
1005    public static final int INSTALL_PARSE_FAILED_MANIFEST_MALFORMED = -108;
1006
1007    /**
1008     * Installation parse return code: this is passed to the
1009     * {@link IPackageInstallObserver} if the parser did not find any actionable
1010     * tags (instrumentation or application) in the manifest.
1011     *
1012     * @hide
1013     */
1014    @SystemApi
1015    public static final int INSTALL_PARSE_FAILED_MANIFEST_EMPTY = -109;
1016
1017    /**
1018     * Installation failed return code: this is passed to the
1019     * {@link IPackageInstallObserver} if the system failed to install the
1020     * package because of system issues.
1021     *
1022     * @hide
1023     */
1024    @SystemApi
1025    public static final int INSTALL_FAILED_INTERNAL_ERROR = -110;
1026
1027    /**
1028     * Installation failed return code: this is passed to the
1029     * {@link IPackageInstallObserver} if the system failed to install the
1030     * package because the user is restricted from installing apps.
1031     *
1032     * @hide
1033     */
1034    public static final int INSTALL_FAILED_USER_RESTRICTED = -111;
1035
1036    /**
1037     * Installation failed return code: this is passed to the
1038     * {@link IPackageInstallObserver} if the system failed to install the
1039     * package because it is attempting to define a permission that is already
1040     * defined by some existing package.
1041     * <p>
1042     * The package name of the app which has already defined the permission is
1043     * passed to a {@link PackageInstallObserver}, if any, as the
1044     * {@link #EXTRA_FAILURE_EXISTING_PACKAGE} string extra; and the name of the
1045     * permission being redefined is passed in the
1046     * {@link #EXTRA_FAILURE_EXISTING_PERMISSION} string extra.
1047     *
1048     * @hide
1049     */
1050    public static final int INSTALL_FAILED_DUPLICATE_PERMISSION = -112;
1051
1052    /**
1053     * Installation failed return code: this is passed to the
1054     * {@link IPackageInstallObserver} if the system failed to install the
1055     * package because its packaged native code did not match any of the ABIs
1056     * supported by the system.
1057     *
1058     * @hide
1059     */
1060    public static final int INSTALL_FAILED_NO_MATCHING_ABIS = -113;
1061
1062    /**
1063     * Internal return code for NativeLibraryHelper methods to indicate that the package
1064     * being processed did not contain any native code. This is placed here only so that
1065     * it can belong to the same value space as the other install failure codes.
1066     *
1067     * @hide
1068     */
1069    public static final int NO_NATIVE_LIBRARIES = -114;
1070
1071    /** {@hide} */
1072    public static final int INSTALL_FAILED_ABORTED = -115;
1073
1074    /**
1075     * Installation failed return code: ephemeral app installs are incompatible with some
1076     * other installation flags supplied for the operation; or other circumstances such
1077     * as trying to upgrade a system app via an ephemeral install.
1078     * @hide
1079     */
1080    public static final int INSTALL_FAILED_EPHEMERAL_INVALID = -116;
1081
1082    /** @hide */
1083    @IntDef(flag = true, value = {
1084            DELETE_KEEP_DATA,
1085            DELETE_ALL_USERS,
1086            DELETE_SYSTEM_APP,
1087    })
1088    @Retention(RetentionPolicy.SOURCE)
1089    public @interface DeleteFlags {}
1090
1091    /**
1092     * Flag parameter for {@link #deletePackage} to indicate that you don't want to delete the
1093     * package's data directory.
1094     *
1095     * @hide
1096     */
1097    public static final int DELETE_KEEP_DATA = 0x00000001;
1098
1099    /**
1100     * Flag parameter for {@link #deletePackage} to indicate that you want the
1101     * package deleted for all users.
1102     *
1103     * @hide
1104     */
1105    public static final int DELETE_ALL_USERS = 0x00000002;
1106
1107    /**
1108     * Flag parameter for {@link #deletePackage} to indicate that, if you are calling
1109     * uninstall on a system that has been updated, then don't do the normal process
1110     * of uninstalling the update and rolling back to the older system version (which
1111     * needs to happen for all users); instead, just mark the app as uninstalled for
1112     * the current user.
1113     *
1114     * @hide
1115     */
1116    public static final int DELETE_SYSTEM_APP = 0x00000004;
1117
1118    /**
1119     * Return code for when package deletion succeeds. This is passed to the
1120     * {@link IPackageDeleteObserver} if the system succeeded in deleting the
1121     * package.
1122     *
1123     * @hide
1124     */
1125    public static final int DELETE_SUCCEEDED = 1;
1126
1127    /**
1128     * Deletion failed return code: this is passed to the
1129     * {@link IPackageDeleteObserver} if the system failed to delete the package
1130     * for an unspecified reason.
1131     *
1132     * @hide
1133     */
1134    public static final int DELETE_FAILED_INTERNAL_ERROR = -1;
1135
1136    /**
1137     * Deletion failed return code: this is passed to the
1138     * {@link IPackageDeleteObserver} if the system failed to delete the package
1139     * because it is the active DevicePolicy manager.
1140     *
1141     * @hide
1142     */
1143    public static final int DELETE_FAILED_DEVICE_POLICY_MANAGER = -2;
1144
1145    /**
1146     * Deletion failed return code: this is passed to the
1147     * {@link IPackageDeleteObserver} if the system failed to delete the package
1148     * since the user is restricted.
1149     *
1150     * @hide
1151     */
1152    public static final int DELETE_FAILED_USER_RESTRICTED = -3;
1153
1154    /**
1155     * Deletion failed return code: this is passed to the
1156     * {@link IPackageDeleteObserver} if the system failed to delete the package
1157     * because a profile or device owner has marked the package as
1158     * uninstallable.
1159     *
1160     * @hide
1161     */
1162    public static final int DELETE_FAILED_OWNER_BLOCKED = -4;
1163
1164    /** {@hide} */
1165    public static final int DELETE_FAILED_ABORTED = -5;
1166
1167    /**
1168     * Return code that is passed to the {@link IPackageMoveObserver} when the
1169     * package has been successfully moved by the system.
1170     *
1171     * @hide
1172     */
1173    public static final int MOVE_SUCCEEDED = -100;
1174
1175    /**
1176     * Error code that is passed to the {@link IPackageMoveObserver} when the
1177     * package hasn't been successfully moved by the system because of
1178     * insufficient memory on specified media.
1179     *
1180     * @hide
1181     */
1182    public static final int MOVE_FAILED_INSUFFICIENT_STORAGE = -1;
1183
1184    /**
1185     * Error code that is passed to the {@link IPackageMoveObserver} if the
1186     * specified package doesn't exist.
1187     *
1188     * @hide
1189     */
1190    public static final int MOVE_FAILED_DOESNT_EXIST = -2;
1191
1192    /**
1193     * Error code that is passed to the {@link IPackageMoveObserver} if the
1194     * specified package cannot be moved since its a system package.
1195     *
1196     * @hide
1197     */
1198    public static final int MOVE_FAILED_SYSTEM_PACKAGE = -3;
1199
1200    /**
1201     * Error code that is passed to the {@link IPackageMoveObserver} if the
1202     * specified package cannot be moved since its forward locked.
1203     *
1204     * @hide
1205     */
1206    public static final int MOVE_FAILED_FORWARD_LOCKED = -4;
1207
1208    /**
1209     * Error code that is passed to the {@link IPackageMoveObserver} if the
1210     * specified package cannot be moved to the specified location.
1211     *
1212     * @hide
1213     */
1214    public static final int MOVE_FAILED_INVALID_LOCATION = -5;
1215
1216    /**
1217     * Error code that is passed to the {@link IPackageMoveObserver} if the
1218     * specified package cannot be moved to the specified location.
1219     *
1220     * @hide
1221     */
1222    public static final int MOVE_FAILED_INTERNAL_ERROR = -6;
1223
1224    /**
1225     * Error code that is passed to the {@link IPackageMoveObserver} if the
1226     * specified package already has an operation pending in the queue.
1227     *
1228     * @hide
1229     */
1230    public static final int MOVE_FAILED_OPERATION_PENDING = -7;
1231
1232    /**
1233     * Flag parameter for {@link #movePackage} to indicate that
1234     * the package should be moved to internal storage if its
1235     * been installed on external media.
1236     * @hide
1237     */
1238    @Deprecated
1239    public static final int MOVE_INTERNAL = 0x00000001;
1240
1241    /**
1242     * Flag parameter for {@link #movePackage} to indicate that
1243     * the package should be moved to external media.
1244     * @hide
1245     */
1246    @Deprecated
1247    public static final int MOVE_EXTERNAL_MEDIA = 0x00000002;
1248
1249    /** {@hide} */
1250    public static final String EXTRA_MOVE_ID = "android.content.pm.extra.MOVE_ID";
1251
1252    /**
1253     * Usable by the required verifier as the {@code verificationCode} argument
1254     * for {@link PackageManager#verifyPendingInstall} to indicate that it will
1255     * allow the installation to proceed without any of the optional verifiers
1256     * needing to vote.
1257     *
1258     * @hide
1259     */
1260    public static final int VERIFICATION_ALLOW_WITHOUT_SUFFICIENT = 2;
1261
1262    /**
1263     * Used as the {@code verificationCode} argument for
1264     * {@link PackageManager#verifyPendingInstall} to indicate that the calling
1265     * package verifier allows the installation to proceed.
1266     */
1267    public static final int VERIFICATION_ALLOW = 1;
1268
1269    /**
1270     * Used as the {@code verificationCode} argument for
1271     * {@link PackageManager#verifyPendingInstall} to indicate the calling
1272     * package verifier does not vote to allow the installation to proceed.
1273     */
1274    public static final int VERIFICATION_REJECT = -1;
1275
1276    /**
1277     * Used as the {@code verificationCode} argument for
1278     * {@link PackageManager#verifyIntentFilter} to indicate that the calling
1279     * IntentFilter Verifier confirms that the IntentFilter is verified.
1280     *
1281     * @hide
1282     */
1283    public static final int INTENT_FILTER_VERIFICATION_SUCCESS = 1;
1284
1285    /**
1286     * Used as the {@code verificationCode} argument for
1287     * {@link PackageManager#verifyIntentFilter} to indicate that the calling
1288     * IntentFilter Verifier confirms that the IntentFilter is NOT verified.
1289     *
1290     * @hide
1291     */
1292    public static final int INTENT_FILTER_VERIFICATION_FAILURE = -1;
1293
1294    /**
1295     * Internal status code to indicate that an IntentFilter verification result is not specified.
1296     *
1297     * @hide
1298     */
1299    public static final int INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_UNDEFINED = 0;
1300
1301    /**
1302     * Used as the {@code status} argument for
1303     * {@link #updateIntentVerificationStatusAsUser} to indicate that the User
1304     * will always be prompted the Intent Disambiguation Dialog if there are two
1305     * or more Intent resolved for the IntentFilter's domain(s).
1306     *
1307     * @hide
1308     */
1309    public static final int INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_ASK = 1;
1310
1311    /**
1312     * Used as the {@code status} argument for
1313     * {@link #updateIntentVerificationStatusAsUser} to indicate that the User
1314     * will never be prompted the Intent Disambiguation Dialog if there are two
1315     * or more resolution of the Intent. The default App for the domain(s)
1316     * specified in the IntentFilter will also ALWAYS be used.
1317     *
1318     * @hide
1319     */
1320    public static final int INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_ALWAYS = 2;
1321
1322    /**
1323     * Used as the {@code status} argument for
1324     * {@link #updateIntentVerificationStatusAsUser} to indicate that the User
1325     * may be prompted the Intent Disambiguation Dialog if there are two or more
1326     * Intent resolved. The default App for the domain(s) specified in the
1327     * IntentFilter will also NEVER be presented to the User.
1328     *
1329     * @hide
1330     */
1331    public static final int INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_NEVER = 3;
1332
1333    /**
1334     * Used as the {@code status} argument for
1335     * {@link #updateIntentVerificationStatusAsUser} to indicate that this app
1336     * should always be considered as an ambiguous candidate for handling the
1337     * matching Intent even if there are other candidate apps in the "always"
1338     * state. Put another way: if there are any 'always ask' apps in a set of
1339     * more than one candidate app, then a disambiguation is *always* presented
1340     * even if there is another candidate app with the 'always' state.
1341     *
1342     * @hide
1343     */
1344    public static final int INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_ALWAYS_ASK = 4;
1345
1346    /**
1347     * Can be used as the {@code millisecondsToDelay} argument for
1348     * {@link PackageManager#extendVerificationTimeout}. This is the
1349     * maximum time {@code PackageManager} waits for the verification
1350     * agent to return (in milliseconds).
1351     */
1352    public static final long MAXIMUM_VERIFICATION_TIMEOUT = 60*60*1000;
1353
1354    /**
1355     * Feature for {@link #getSystemAvailableFeatures} and {@link #hasSystemFeature}: The device's
1356     * audio pipeline is low-latency, more suitable for audio applications sensitive to delays or
1357     * lag in sound input or output.
1358     */
1359    @SdkConstant(SdkConstantType.FEATURE)
1360    public static final String FEATURE_AUDIO_LOW_LATENCY = "android.hardware.audio.low_latency";
1361
1362    /**
1363     * Feature for {@link #getSystemAvailableFeatures} and
1364     * {@link #hasSystemFeature}: The device includes at least one form of audio
1365     * output, such as speakers, audio jack or streaming over bluetooth
1366     */
1367    @SdkConstant(SdkConstantType.FEATURE)
1368    public static final String FEATURE_AUDIO_OUTPUT = "android.hardware.audio.output";
1369
1370    /**
1371     * Feature for {@link #getSystemAvailableFeatures} and {@link #hasSystemFeature}:
1372     * The device has professional audio level of functionality and performance.
1373     */
1374    @SdkConstant(SdkConstantType.FEATURE)
1375    public static final String FEATURE_AUDIO_PRO = "android.hardware.audio.pro";
1376
1377    /**
1378     * Feature for {@link #getSystemAvailableFeatures} and
1379     * {@link #hasSystemFeature}: The device is capable of communicating with
1380     * other devices via Bluetooth.
1381     */
1382    @SdkConstant(SdkConstantType.FEATURE)
1383    public static final String FEATURE_BLUETOOTH = "android.hardware.bluetooth";
1384
1385    /**
1386     * Feature for {@link #getSystemAvailableFeatures} and
1387     * {@link #hasSystemFeature}: The device is capable of communicating with
1388     * other devices via Bluetooth Low Energy radio.
1389     */
1390    @SdkConstant(SdkConstantType.FEATURE)
1391    public static final String FEATURE_BLUETOOTH_LE = "android.hardware.bluetooth_le";
1392
1393    /**
1394     * Feature for {@link #getSystemAvailableFeatures} and
1395     * {@link #hasSystemFeature}: The device has a camera facing away
1396     * from the screen.
1397     */
1398    @SdkConstant(SdkConstantType.FEATURE)
1399    public static final String FEATURE_CAMERA = "android.hardware.camera";
1400
1401    /**
1402     * Feature for {@link #getSystemAvailableFeatures} and
1403     * {@link #hasSystemFeature}: The device's camera supports auto-focus.
1404     */
1405    @SdkConstant(SdkConstantType.FEATURE)
1406    public static final String FEATURE_CAMERA_AUTOFOCUS = "android.hardware.camera.autofocus";
1407
1408    /**
1409     * Feature for {@link #getSystemAvailableFeatures} and
1410     * {@link #hasSystemFeature}: The device has at least one camera pointing in
1411     * some direction, or can support an external camera being connected to it.
1412     */
1413    @SdkConstant(SdkConstantType.FEATURE)
1414    public static final String FEATURE_CAMERA_ANY = "android.hardware.camera.any";
1415
1416    /**
1417     * Feature for {@link #getSystemAvailableFeatures} and
1418     * {@link #hasSystemFeature}: The device can support having an external camera connected to it.
1419     * The external camera may not always be connected or available to applications to use.
1420     */
1421    @SdkConstant(SdkConstantType.FEATURE)
1422    public static final String FEATURE_CAMERA_EXTERNAL = "android.hardware.camera.external";
1423
1424    /**
1425     * Feature for {@link #getSystemAvailableFeatures} and
1426     * {@link #hasSystemFeature}: The device's camera supports flash.
1427     */
1428    @SdkConstant(SdkConstantType.FEATURE)
1429    public static final String FEATURE_CAMERA_FLASH = "android.hardware.camera.flash";
1430
1431    /**
1432     * Feature for {@link #getSystemAvailableFeatures} and
1433     * {@link #hasSystemFeature}: The device has a front facing camera.
1434     */
1435    @SdkConstant(SdkConstantType.FEATURE)
1436    public static final String FEATURE_CAMERA_FRONT = "android.hardware.camera.front";
1437
1438    /**
1439     * Feature for {@link #getSystemAvailableFeatures} and {@link #hasSystemFeature}: At least one
1440     * of the cameras on the device supports the
1441     * {@link android.hardware.camera2.CameraCharacteristics#INFO_SUPPORTED_HARDWARE_LEVEL full hardware}
1442     * capability level.
1443     */
1444    @SdkConstant(SdkConstantType.FEATURE)
1445    public static final String FEATURE_CAMERA_LEVEL_FULL = "android.hardware.camera.level.full";
1446
1447    /**
1448     * Feature for {@link #getSystemAvailableFeatures} and {@link #hasSystemFeature}: At least one
1449     * of the cameras on the device supports the
1450     * {@link android.hardware.camera2.CameraMetadata#REQUEST_AVAILABLE_CAPABILITIES_MANUAL_SENSOR manual sensor}
1451     * capability level.
1452     */
1453    @SdkConstant(SdkConstantType.FEATURE)
1454    public static final String FEATURE_CAMERA_CAPABILITY_MANUAL_SENSOR =
1455            "android.hardware.camera.capability.manual_sensor";
1456
1457    /**
1458     * Feature for {@link #getSystemAvailableFeatures} and {@link #hasSystemFeature}: At least one
1459     * of the cameras on the device supports the
1460     * {@link android.hardware.camera2.CameraMetadata#REQUEST_AVAILABLE_CAPABILITIES_MANUAL_POST_PROCESSING manual post-processing}
1461     * capability level.
1462     */
1463    @SdkConstant(SdkConstantType.FEATURE)
1464    public static final String FEATURE_CAMERA_CAPABILITY_MANUAL_POST_PROCESSING =
1465            "android.hardware.camera.capability.manual_post_processing";
1466
1467    /**
1468     * Feature for {@link #getSystemAvailableFeatures} and {@link #hasSystemFeature}: At least one
1469     * of the cameras on the device supports the
1470     * {@link android.hardware.camera2.CameraMetadata#REQUEST_AVAILABLE_CAPABILITIES_RAW RAW}
1471     * capability level.
1472     */
1473    @SdkConstant(SdkConstantType.FEATURE)
1474    public static final String FEATURE_CAMERA_CAPABILITY_RAW =
1475            "android.hardware.camera.capability.raw";
1476
1477    /**
1478     * Feature for {@link #getSystemAvailableFeatures} and
1479     * {@link #hasSystemFeature}: The device is capable of communicating with
1480     * consumer IR devices.
1481     */
1482    @SdkConstant(SdkConstantType.FEATURE)
1483    public static final String FEATURE_CONSUMER_IR = "android.hardware.consumerir";
1484
1485    /**
1486     * Feature for {@link #getSystemAvailableFeatures} and
1487     * {@link #hasSystemFeature}: The device supports one or more methods of
1488     * reporting current location.
1489     */
1490    @SdkConstant(SdkConstantType.FEATURE)
1491    public static final String FEATURE_LOCATION = "android.hardware.location";
1492
1493    /**
1494     * Feature for {@link #getSystemAvailableFeatures} and
1495     * {@link #hasSystemFeature}: The device has a Global Positioning System
1496     * receiver and can report precise location.
1497     */
1498    @SdkConstant(SdkConstantType.FEATURE)
1499    public static final String FEATURE_LOCATION_GPS = "android.hardware.location.gps";
1500
1501    /**
1502     * Feature for {@link #getSystemAvailableFeatures} and
1503     * {@link #hasSystemFeature}: The device can report location with coarse
1504     * accuracy using a network-based geolocation system.
1505     */
1506    @SdkConstant(SdkConstantType.FEATURE)
1507    public static final String FEATURE_LOCATION_NETWORK = "android.hardware.location.network";
1508
1509    /**
1510     * Feature for {@link #getSystemAvailableFeatures} and
1511     * {@link #hasSystemFeature}: The device can record audio via a
1512     * microphone.
1513     */
1514    @SdkConstant(SdkConstantType.FEATURE)
1515    public static final String FEATURE_MICROPHONE = "android.hardware.microphone";
1516
1517    /**
1518     * Feature for {@link #getSystemAvailableFeatures} and
1519     * {@link #hasSystemFeature}: The device can communicate using Near-Field
1520     * Communications (NFC).
1521     */
1522    @SdkConstant(SdkConstantType.FEATURE)
1523    public static final String FEATURE_NFC = "android.hardware.nfc";
1524
1525    /**
1526     * Feature for {@link #getSystemAvailableFeatures} and
1527     * {@link #hasSystemFeature}: The device supports host-
1528     * based NFC card emulation.
1529     *
1530     * TODO remove when depending apps have moved to new constant.
1531     * @hide
1532     * @deprecated
1533     */
1534    @Deprecated
1535    @SdkConstant(SdkConstantType.FEATURE)
1536    public static final String FEATURE_NFC_HCE = "android.hardware.nfc.hce";
1537
1538    /**
1539     * Feature for {@link #getSystemAvailableFeatures} and
1540     * {@link #hasSystemFeature}: The device supports host-
1541     * based NFC card emulation.
1542     */
1543    @SdkConstant(SdkConstantType.FEATURE)
1544    public static final String FEATURE_NFC_HOST_CARD_EMULATION = "android.hardware.nfc.hce";
1545
1546    /**
1547     * Feature for {@link #getSystemAvailableFeatures} and
1548     * {@link #hasSystemFeature}: The device supports host-
1549     * based NFC-F card emulation.
1550     */
1551    @SdkConstant(SdkConstantType.FEATURE)
1552    public static final String FEATURE_NFC_HOST_CARD_EMULATION_NFCF = "android.hardware.nfc.hcef";
1553
1554    /**
1555     * Feature for {@link #getSystemAvailableFeatures} and
1556     * {@link #hasSystemFeature}: The device supports the OpenGL ES
1557     * <a href="http://www.khronos.org/registry/gles/extensions/ANDROID/ANDROID_extension_pack_es31a.txt">
1558     * Android Extension Pack</a>.
1559     */
1560    @SdkConstant(SdkConstantType.FEATURE)
1561    public static final String FEATURE_OPENGLES_EXTENSION_PACK = "android.hardware.opengles.aep";
1562
1563    /**
1564     * Feature for {@link #getSystemAvailableFeatures} and
1565     * {@link #hasSystemFeature}: The device includes an accelerometer.
1566     */
1567    @SdkConstant(SdkConstantType.FEATURE)
1568    public static final String FEATURE_SENSOR_ACCELEROMETER = "android.hardware.sensor.accelerometer";
1569
1570    /**
1571     * Feature for {@link #getSystemAvailableFeatures} and
1572     * {@link #hasSystemFeature}: The device includes a barometer (air
1573     * pressure sensor.)
1574     */
1575    @SdkConstant(SdkConstantType.FEATURE)
1576    public static final String FEATURE_SENSOR_BAROMETER = "android.hardware.sensor.barometer";
1577
1578    /**
1579     * Feature for {@link #getSystemAvailableFeatures} and
1580     * {@link #hasSystemFeature}: The device includes a magnetometer (compass).
1581     */
1582    @SdkConstant(SdkConstantType.FEATURE)
1583    public static final String FEATURE_SENSOR_COMPASS = "android.hardware.sensor.compass";
1584
1585    /**
1586     * Feature for {@link #getSystemAvailableFeatures} and
1587     * {@link #hasSystemFeature}: The device includes a gyroscope.
1588     */
1589    @SdkConstant(SdkConstantType.FEATURE)
1590    public static final String FEATURE_SENSOR_GYROSCOPE = "android.hardware.sensor.gyroscope";
1591
1592    /**
1593     * Feature for {@link #getSystemAvailableFeatures} and
1594     * {@link #hasSystemFeature}: The device includes a light sensor.
1595     */
1596    @SdkConstant(SdkConstantType.FEATURE)
1597    public static final String FEATURE_SENSOR_LIGHT = "android.hardware.sensor.light";
1598
1599    /**
1600     * Feature for {@link #getSystemAvailableFeatures} and
1601     * {@link #hasSystemFeature}: The device includes a proximity sensor.
1602     */
1603    @SdkConstant(SdkConstantType.FEATURE)
1604    public static final String FEATURE_SENSOR_PROXIMITY = "android.hardware.sensor.proximity";
1605
1606    /**
1607     * Feature for {@link #getSystemAvailableFeatures} and
1608     * {@link #hasSystemFeature}: The device includes a hardware step counter.
1609     */
1610    @SdkConstant(SdkConstantType.FEATURE)
1611    public static final String FEATURE_SENSOR_STEP_COUNTER = "android.hardware.sensor.stepcounter";
1612
1613    /**
1614     * Feature for {@link #getSystemAvailableFeatures} and
1615     * {@link #hasSystemFeature}: The device includes a hardware step detector.
1616     */
1617    @SdkConstant(SdkConstantType.FEATURE)
1618    public static final String FEATURE_SENSOR_STEP_DETECTOR = "android.hardware.sensor.stepdetector";
1619
1620    /**
1621     * Feature for {@link #getSystemAvailableFeatures} and
1622     * {@link #hasSystemFeature}: The device includes a heart rate monitor.
1623     */
1624    @SdkConstant(SdkConstantType.FEATURE)
1625    public static final String FEATURE_SENSOR_HEART_RATE = "android.hardware.sensor.heartrate";
1626
1627    /**
1628     * Feature for {@link #getSystemAvailableFeatures} and
1629     * {@link #hasSystemFeature}: The heart rate sensor on this device is an Electrocargiogram.
1630     */
1631    @SdkConstant(SdkConstantType.FEATURE)
1632    public static final String FEATURE_SENSOR_HEART_RATE_ECG =
1633            "android.hardware.sensor.heartrate.ecg";
1634
1635    /**
1636     * Feature for {@link #getSystemAvailableFeatures} and
1637     * {@link #hasSystemFeature}: The device includes a relative humidity sensor.
1638     */
1639    @SdkConstant(SdkConstantType.FEATURE)
1640    public static final String FEATURE_SENSOR_RELATIVE_HUMIDITY =
1641            "android.hardware.sensor.relative_humidity";
1642
1643    /**
1644     * Feature for {@link #getSystemAvailableFeatures} and
1645     * {@link #hasSystemFeature}: The device includes an ambient temperature sensor.
1646     */
1647    @SdkConstant(SdkConstantType.FEATURE)
1648    public static final String FEATURE_SENSOR_AMBIENT_TEMPERATURE =
1649            "android.hardware.sensor.ambient_temperature";
1650
1651    /**
1652     * Feature for {@link #getSystemAvailableFeatures} and
1653     * {@link #hasSystemFeature}: The device supports high fidelity sensor processing
1654     * capabilities.
1655     */
1656    @SdkConstant(SdkConstantType.FEATURE)
1657    public static final String FEATURE_HIFI_SENSORS =
1658            "android.hardware.sensor.hifi_sensors";
1659
1660    /**
1661     * Feature for {@link #getSystemAvailableFeatures} and
1662     * {@link #hasSystemFeature}: The device has a telephony radio with data
1663     * communication support.
1664     */
1665    @SdkConstant(SdkConstantType.FEATURE)
1666    public static final String FEATURE_TELEPHONY = "android.hardware.telephony";
1667
1668    /**
1669     * Feature for {@link #getSystemAvailableFeatures} and
1670     * {@link #hasSystemFeature}: The device has a CDMA telephony stack.
1671     */
1672    @SdkConstant(SdkConstantType.FEATURE)
1673    public static final String FEATURE_TELEPHONY_CDMA = "android.hardware.telephony.cdma";
1674
1675    /**
1676     * Feature for {@link #getSystemAvailableFeatures} and
1677     * {@link #hasSystemFeature}: The device has a GSM telephony stack.
1678     */
1679    @SdkConstant(SdkConstantType.FEATURE)
1680    public static final String FEATURE_TELEPHONY_GSM = "android.hardware.telephony.gsm";
1681
1682    /**
1683     * Feature for {@link #getSystemAvailableFeatures} and
1684     * {@link #hasSystemFeature}: The device supports connecting to USB devices
1685     * as the USB host.
1686     */
1687    @SdkConstant(SdkConstantType.FEATURE)
1688    public static final String FEATURE_USB_HOST = "android.hardware.usb.host";
1689
1690    /**
1691     * Feature for {@link #getSystemAvailableFeatures} and
1692     * {@link #hasSystemFeature}: The device supports connecting to USB accessories.
1693     */
1694    @SdkConstant(SdkConstantType.FEATURE)
1695    public static final String FEATURE_USB_ACCESSORY = "android.hardware.usb.accessory";
1696
1697    /**
1698     * Feature for {@link #getSystemAvailableFeatures} and
1699     * {@link #hasSystemFeature}: The SIP API is enabled on the device.
1700     */
1701    @SdkConstant(SdkConstantType.FEATURE)
1702    public static final String FEATURE_SIP = "android.software.sip";
1703
1704    /**
1705     * Feature for {@link #getSystemAvailableFeatures} and
1706     * {@link #hasSystemFeature}: The device supports SIP-based VOIP.
1707     */
1708    @SdkConstant(SdkConstantType.FEATURE)
1709    public static final String FEATURE_SIP_VOIP = "android.software.sip.voip";
1710
1711    /**
1712     * Feature for {@link #getSystemAvailableFeatures} and
1713     * {@link #hasSystemFeature}: The Connection Service API is enabled on the device.
1714     */
1715    @SdkConstant(SdkConstantType.FEATURE)
1716    public static final String FEATURE_CONNECTION_SERVICE = "android.software.connectionservice";
1717
1718    /**
1719     * Feature for {@link #getSystemAvailableFeatures} and
1720     * {@link #hasSystemFeature}: The device's display has a touch screen.
1721     */
1722    @SdkConstant(SdkConstantType.FEATURE)
1723    public static final String FEATURE_TOUCHSCREEN = "android.hardware.touchscreen";
1724
1725    /**
1726     * Feature for {@link #getSystemAvailableFeatures} and
1727     * {@link #hasSystemFeature}: The device's touch screen supports
1728     * multitouch sufficient for basic two-finger gesture detection.
1729     */
1730    @SdkConstant(SdkConstantType.FEATURE)
1731    public static final String FEATURE_TOUCHSCREEN_MULTITOUCH = "android.hardware.touchscreen.multitouch";
1732
1733    /**
1734     * Feature for {@link #getSystemAvailableFeatures} and
1735     * {@link #hasSystemFeature}: The device's touch screen is capable of
1736     * tracking two or more fingers fully independently.
1737     */
1738    @SdkConstant(SdkConstantType.FEATURE)
1739    public static final String FEATURE_TOUCHSCREEN_MULTITOUCH_DISTINCT = "android.hardware.touchscreen.multitouch.distinct";
1740
1741    /**
1742     * Feature for {@link #getSystemAvailableFeatures} and
1743     * {@link #hasSystemFeature}: The device's touch screen is capable of
1744     * tracking a full hand of fingers fully independently -- that is, 5 or
1745     * more simultaneous independent pointers.
1746     */
1747    @SdkConstant(SdkConstantType.FEATURE)
1748    public static final String FEATURE_TOUCHSCREEN_MULTITOUCH_JAZZHAND = "android.hardware.touchscreen.multitouch.jazzhand";
1749
1750    /**
1751     * Feature for {@link #getSystemAvailableFeatures} and
1752     * {@link #hasSystemFeature}: The device does not have a touch screen, but
1753     * does support touch emulation for basic events. For instance, the
1754     * device might use a mouse or remote control to drive a cursor, and
1755     * emulate basic touch pointer events like down, up, drag, etc. All
1756     * devices that support android.hardware.touchscreen or a sub-feature are
1757     * presumed to also support faketouch.
1758     */
1759    @SdkConstant(SdkConstantType.FEATURE)
1760    public static final String FEATURE_FAKETOUCH = "android.hardware.faketouch";
1761
1762    /**
1763     * Feature for {@link #getSystemAvailableFeatures} and
1764     * {@link #hasSystemFeature}: The device does not have a touch screen, but
1765     * does support touch emulation for basic events that supports distinct
1766     * tracking of two or more fingers.  This is an extension of
1767     * {@link #FEATURE_FAKETOUCH} for input devices with this capability.  Note
1768     * that unlike a distinct multitouch screen as defined by
1769     * {@link #FEATURE_TOUCHSCREEN_MULTITOUCH_DISTINCT}, these kinds of input
1770     * devices will not actually provide full two-finger gestures since the
1771     * input is being transformed to cursor movement on the screen.  That is,
1772     * single finger gestures will move a cursor; two-finger swipes will
1773     * result in single-finger touch events; other two-finger gestures will
1774     * result in the corresponding two-finger touch event.
1775     */
1776    @SdkConstant(SdkConstantType.FEATURE)
1777    public static final String FEATURE_FAKETOUCH_MULTITOUCH_DISTINCT = "android.hardware.faketouch.multitouch.distinct";
1778
1779    /**
1780     * Feature for {@link #getSystemAvailableFeatures} and
1781     * {@link #hasSystemFeature}: The device does not have a touch screen, but
1782     * does support touch emulation for basic events that supports tracking
1783     * a hand of fingers (5 or more fingers) fully independently.
1784     * This is an extension of
1785     * {@link #FEATURE_FAKETOUCH} for input devices with this capability.  Note
1786     * that unlike a multitouch screen as defined by
1787     * {@link #FEATURE_TOUCHSCREEN_MULTITOUCH_JAZZHAND}, not all two finger
1788     * gestures can be detected due to the limitations described for
1789     * {@link #FEATURE_FAKETOUCH_MULTITOUCH_DISTINCT}.
1790     */
1791    @SdkConstant(SdkConstantType.FEATURE)
1792    public static final String FEATURE_FAKETOUCH_MULTITOUCH_JAZZHAND = "android.hardware.faketouch.multitouch.jazzhand";
1793
1794    /**
1795     * Feature for {@link #getSystemAvailableFeatures} and
1796     * {@link #hasSystemFeature}: The device has biometric hardware to detect a fingerprint.
1797      */
1798    @SdkConstant(SdkConstantType.FEATURE)
1799    public static final String FEATURE_FINGERPRINT = "android.hardware.fingerprint";
1800
1801    /**
1802     * Feature for {@link #getSystemAvailableFeatures} and
1803     * {@link #hasSystemFeature}: The device supports portrait orientation
1804     * screens.  For backwards compatibility, you can assume that if neither
1805     * this nor {@link #FEATURE_SCREEN_LANDSCAPE} is set then the device supports
1806     * both portrait and landscape.
1807     */
1808    @SdkConstant(SdkConstantType.FEATURE)
1809    public static final String FEATURE_SCREEN_PORTRAIT = "android.hardware.screen.portrait";
1810
1811    /**
1812     * Feature for {@link #getSystemAvailableFeatures} and
1813     * {@link #hasSystemFeature}: The device supports landscape orientation
1814     * screens.  For backwards compatibility, you can assume that if neither
1815     * this nor {@link #FEATURE_SCREEN_PORTRAIT} is set then the device supports
1816     * both portrait and landscape.
1817     */
1818    @SdkConstant(SdkConstantType.FEATURE)
1819    public static final String FEATURE_SCREEN_LANDSCAPE = "android.hardware.screen.landscape";
1820
1821    /**
1822     * Feature for {@link #getSystemAvailableFeatures} and
1823     * {@link #hasSystemFeature}: The device supports live wallpapers.
1824     */
1825    @SdkConstant(SdkConstantType.FEATURE)
1826    public static final String FEATURE_LIVE_WALLPAPER = "android.software.live_wallpaper";
1827    /**
1828     * Feature for {@link #getSystemAvailableFeatures} and
1829     * {@link #hasSystemFeature}: The device supports app widgets.
1830     */
1831    @SdkConstant(SdkConstantType.FEATURE)
1832    public static final String FEATURE_APP_WIDGETS = "android.software.app_widgets";
1833
1834    /**
1835     * @hide
1836     * Feature for {@link #getSystemAvailableFeatures} and
1837     * {@link #hasSystemFeature}: The device supports
1838     * {@link android.service.voice.VoiceInteractionService} and
1839     * {@link android.app.VoiceInteractor}.
1840     */
1841    @SdkConstant(SdkConstantType.FEATURE)
1842    public static final String FEATURE_VOICE_RECOGNIZERS = "android.software.voice_recognizers";
1843
1844
1845    /**
1846     * Feature for {@link #getSystemAvailableFeatures} and
1847     * {@link #hasSystemFeature}: The device supports a home screen that is replaceable
1848     * by third party applications.
1849     */
1850    @SdkConstant(SdkConstantType.FEATURE)
1851    public static final String FEATURE_HOME_SCREEN = "android.software.home_screen";
1852
1853    /**
1854     * Feature for {@link #getSystemAvailableFeatures} and
1855     * {@link #hasSystemFeature}: The device supports adding new input methods implemented
1856     * with the {@link android.inputmethodservice.InputMethodService} API.
1857     */
1858    @SdkConstant(SdkConstantType.FEATURE)
1859    public static final String FEATURE_INPUT_METHODS = "android.software.input_methods";
1860
1861    /**
1862     * Feature for {@link #getSystemAvailableFeatures} and
1863     * {@link #hasSystemFeature}: The device supports device policy enforcement via device admins.
1864     */
1865    @SdkConstant(SdkConstantType.FEATURE)
1866    public static final String FEATURE_DEVICE_ADMIN = "android.software.device_admin";
1867
1868    /**
1869     * Feature for {@link #getSystemAvailableFeatures} and
1870     * {@link #hasSystemFeature}: The device supports leanback UI. This is
1871     * typically used in a living room television experience, but is a software
1872     * feature unlike {@link #FEATURE_TELEVISION}. Devices running with this
1873     * feature will use resources associated with the "television" UI mode.
1874     */
1875    @SdkConstant(SdkConstantType.FEATURE)
1876    public static final String FEATURE_LEANBACK = "android.software.leanback";
1877
1878    /**
1879     * Feature for {@link #getSystemAvailableFeatures} and
1880     * {@link #hasSystemFeature}: The device supports only leanback UI. Only
1881     * applications designed for this experience should be run, though this is
1882     * not enforced by the system.
1883     * @hide
1884     */
1885    @SdkConstant(SdkConstantType.FEATURE)
1886    public static final String FEATURE_LEANBACK_ONLY = "android.software.leanback_only";
1887
1888    /**
1889     * Feature for {@link #getSystemAvailableFeatures} and
1890     * {@link #hasSystemFeature}: The device supports live TV and can display
1891     * contents from TV inputs implemented with the
1892     * {@link android.media.tv.TvInputService} API.
1893     */
1894    @SdkConstant(SdkConstantType.FEATURE)
1895    public static final String FEATURE_LIVE_TV = "android.software.live_tv";
1896
1897    /**
1898     * Feature for {@link #getSystemAvailableFeatures} and
1899     * {@link #hasSystemFeature}: The device supports WiFi (802.11) networking.
1900     */
1901    @SdkConstant(SdkConstantType.FEATURE)
1902    public static final String FEATURE_WIFI = "android.hardware.wifi";
1903
1904    /**
1905     * Feature for {@link #getSystemAvailableFeatures} and
1906     * {@link #hasSystemFeature}: The device supports Wi-Fi Direct networking.
1907     */
1908    @SdkConstant(SdkConstantType.FEATURE)
1909    public static final String FEATURE_WIFI_DIRECT = "android.hardware.wifi.direct";
1910
1911    /**
1912     * Feature for {@link #getSystemAvailableFeatures} and
1913     * {@link #hasSystemFeature}: The device supports Wi-Fi Aware (NAN)
1914     * networking.
1915     *
1916     * @hide PROPOSED_NAN_API
1917     */
1918    @SdkConstant(SdkConstantType.FEATURE)
1919    public static final String FEATURE_WIFI_NAN = "android.hardware.wifi.nan";
1920
1921    /**
1922     * Feature for {@link #getSystemAvailableFeatures} and
1923     * {@link #hasSystemFeature}: This is a device dedicated to showing UI
1924     * on a vehicle headunit. A headunit here is defined to be inside a
1925     * vehicle that may or may not be moving. A headunit uses either a
1926     * primary display in the center console and/or additional displays in
1927     * the instrument cluster or elsewhere in the vehicle. Headunit display(s)
1928     * have limited size and resolution. The user will likely be focused on
1929     * driving so limiting driver distraction is a primary concern. User input
1930     * can be a variety of hard buttons, touch, rotary controllers and even mouse-
1931     * like interfaces.
1932     */
1933    @SdkConstant(SdkConstantType.FEATURE)
1934    public static final String FEATURE_AUTOMOTIVE = "android.hardware.type.automotive";
1935
1936    /**
1937     * Feature for {@link #getSystemAvailableFeatures} and
1938     * {@link #hasSystemFeature}: This is a device dedicated to showing UI
1939     * on a television.  Television here is defined to be a typical living
1940     * room television experience: displayed on a big screen, where the user
1941     * is sitting far away from it, and the dominant form of input will be
1942     * something like a DPAD, not through touch or mouse.
1943     * @deprecated use {@link #FEATURE_LEANBACK} instead.
1944     */
1945    @Deprecated
1946    @SdkConstant(SdkConstantType.FEATURE)
1947    public static final String FEATURE_TELEVISION = "android.hardware.type.television";
1948
1949    /**
1950     * Feature for {@link #getSystemAvailableFeatures} and
1951     * {@link #hasSystemFeature}: This is a device dedicated to showing UI
1952     * on a watch. A watch here is defined to be a device worn on the body, perhaps on
1953     * the wrist. The user is very close when interacting with the device.
1954     */
1955    @SdkConstant(SdkConstantType.FEATURE)
1956    public static final String FEATURE_WATCH = "android.hardware.type.watch";
1957
1958    /**
1959     * Feature for {@link #getSystemAvailableFeatures} and {@link #hasSystemFeature}:
1960     * The device supports printing.
1961     */
1962    @SdkConstant(SdkConstantType.FEATURE)
1963    public static final String FEATURE_PRINTING = "android.software.print";
1964
1965    /**
1966     * Feature for {@link #getSystemAvailableFeatures} and {@link #hasSystemFeature}:
1967     * The device can perform backup and restore operations on installed applications.
1968     */
1969    @SdkConstant(SdkConstantType.FEATURE)
1970    public static final String FEATURE_BACKUP = "android.software.backup";
1971
1972    /**
1973     * Feature for {@link #getSystemAvailableFeatures} and
1974     * {@link #hasSystemFeature}: The device supports freeform window management.
1975     * Windows have title bars and can be moved and resized.
1976     */
1977    // If this feature is present, you also need to set
1978    // com.android.internal.R.config_freeformWindowManagement to true in your configuration overlay.
1979    @SdkConstant(SdkConstantType.FEATURE)
1980    public static final String FEATURE_FREEFORM_WINDOW_MANAGEMENT
1981            = "android.software.freeform_window_management";
1982
1983    /**
1984     * Feature for {@link #getSystemAvailableFeatures} and {@link #hasSystemFeature}:
1985     * The device supports picture-in-picture multi-window mode.
1986     */
1987    @SdkConstant(SdkConstantType.FEATURE)
1988    public static final String FEATURE_PICTURE_IN_PICTURE = "android.software.picture_in_picture";
1989
1990    /**
1991     * Feature for {@link #getSystemAvailableFeatures} and {@link #hasSystemFeature}:
1992     * The device supports creating secondary users and managed profiles via
1993     * {@link DevicePolicyManager}.
1994     */
1995    @SdkConstant(SdkConstantType.FEATURE)
1996    public static final String FEATURE_MANAGED_USERS = "android.software.managed_users";
1997
1998    /**
1999     * @hide
2000     * TODO: Remove after dependencies updated b/17392243
2001     */
2002    public static final String FEATURE_MANAGED_PROFILES = "android.software.managed_users";
2003
2004    /**
2005     * Feature for {@link #getSystemAvailableFeatures} and {@link #hasSystemFeature}:
2006     * The device supports verified boot.
2007     */
2008    @SdkConstant(SdkConstantType.FEATURE)
2009    public static final String FEATURE_VERIFIED_BOOT = "android.software.verified_boot";
2010
2011    /**
2012     * Feature for {@link #getSystemAvailableFeatures} and {@link #hasSystemFeature}:
2013     * The device supports secure removal of users. When a user is deleted the data associated
2014     * with that user is securely deleted and no longer available.
2015     */
2016    @SdkConstant(SdkConstantType.FEATURE)
2017    public static final String FEATURE_SECURELY_REMOVES_USERS
2018            = "android.software.securely_removes_users";
2019
2020    /**
2021     * Feature for {@link #getSystemAvailableFeatures} and {@link #hasSystemFeature}:
2022     * The device has a full implementation of the android.webkit.* APIs. Devices
2023     * lacking this feature will not have a functioning WebView implementation.
2024     */
2025    @SdkConstant(SdkConstantType.FEATURE)
2026    public static final String FEATURE_WEBVIEW = "android.software.webview";
2027
2028    /**
2029     * Feature for {@link #getSystemAvailableFeatures} and
2030     * {@link #hasSystemFeature}: This device supports ethernet.
2031     */
2032    @SdkConstant(SdkConstantType.FEATURE)
2033    public static final String FEATURE_ETHERNET = "android.hardware.ethernet";
2034
2035    /**
2036     * Feature for {@link #getSystemAvailableFeatures} and
2037     * {@link #hasSystemFeature}: This device supports HDMI-CEC.
2038     * @hide
2039     */
2040    @SdkConstant(SdkConstantType.FEATURE)
2041    public static final String FEATURE_HDMI_CEC = "android.hardware.hdmi.cec";
2042
2043    /**
2044     * Feature for {@link #getSystemAvailableFeatures} and {@link #hasSystemFeature}:
2045     * The device has all of the inputs necessary to be considered a compatible game controller, or
2046     * includes a compatible game controller in the box.
2047     */
2048    @SdkConstant(SdkConstantType.FEATURE)
2049    public static final String FEATURE_GAMEPAD = "android.hardware.gamepad";
2050
2051    /**
2052     * Feature for {@link #getSystemAvailableFeatures} and {@link #hasSystemFeature}:
2053     * The device has a full implementation of the android.media.midi.* APIs.
2054     */
2055    @SdkConstant(SdkConstantType.FEATURE)
2056    public static final String FEATURE_MIDI = "android.software.midi";
2057
2058    /**
2059     * Feature for {@link #getSystemAvailableFeatures} and {@link #hasSystemFeature}:
2060     * The device implements a an optimized mode for virtual reality (VR) applications that handles
2061     * stereoscopic rendering of notifications, and may potentially also include optimizations to
2062     * reduce latency in the graphics, display, and sensor stacks.  Presence of this feature
2063     * also indicates that the VrCore library is included on this device.
2064     */
2065    @SdkConstant(SdkConstantType.FEATURE)
2066    public static final String FEATURE_VR_MODE = "android.software.vr.mode";
2067
2068    /**
2069     * Action to external storage service to clean out removed apps.
2070     * @hide
2071     */
2072    public static final String ACTION_CLEAN_EXTERNAL_STORAGE
2073            = "android.content.pm.CLEAN_EXTERNAL_STORAGE";
2074
2075    /**
2076     * Extra field name for the URI to a verification file. Passed to a package
2077     * verifier.
2078     *
2079     * @hide
2080     */
2081    public static final String EXTRA_VERIFICATION_URI = "android.content.pm.extra.VERIFICATION_URI";
2082
2083    /**
2084     * Extra field name for the ID of a package pending verification. Passed to
2085     * a package verifier and is used to call back to
2086     * {@link PackageManager#verifyPendingInstall(int, int)}
2087     */
2088    public static final String EXTRA_VERIFICATION_ID = "android.content.pm.extra.VERIFICATION_ID";
2089
2090    /**
2091     * Extra field name for the package identifier which is trying to install
2092     * the package.
2093     *
2094     * @hide
2095     */
2096    public static final String EXTRA_VERIFICATION_INSTALLER_PACKAGE
2097            = "android.content.pm.extra.VERIFICATION_INSTALLER_PACKAGE";
2098
2099    /**
2100     * Extra field name for the requested install flags for a package pending
2101     * verification. Passed to a package verifier.
2102     *
2103     * @hide
2104     */
2105    public static final String EXTRA_VERIFICATION_INSTALL_FLAGS
2106            = "android.content.pm.extra.VERIFICATION_INSTALL_FLAGS";
2107
2108    /**
2109     * Extra field name for the uid of who is requesting to install
2110     * the package.
2111     *
2112     * @hide
2113     */
2114    public static final String EXTRA_VERIFICATION_INSTALLER_UID
2115            = "android.content.pm.extra.VERIFICATION_INSTALLER_UID";
2116
2117    /**
2118     * Extra field name for the package name of a package pending verification.
2119     *
2120     * @hide
2121     */
2122    public static final String EXTRA_VERIFICATION_PACKAGE_NAME
2123            = "android.content.pm.extra.VERIFICATION_PACKAGE_NAME";
2124    /**
2125     * Extra field name for the result of a verification, either
2126     * {@link #VERIFICATION_ALLOW}, or {@link #VERIFICATION_REJECT}.
2127     * Passed to package verifiers after a package is verified.
2128     */
2129    public static final String EXTRA_VERIFICATION_RESULT
2130            = "android.content.pm.extra.VERIFICATION_RESULT";
2131
2132    /**
2133     * Extra field name for the version code of a package pending verification.
2134     *
2135     * @hide
2136     */
2137    public static final String EXTRA_VERIFICATION_VERSION_CODE
2138            = "android.content.pm.extra.VERIFICATION_VERSION_CODE";
2139
2140    /**
2141     * Extra field name for the ID of a intent filter pending verification.
2142     * Passed to an intent filter verifier and is used to call back to
2143     * {@link #verifyIntentFilter}
2144     *
2145     * @hide
2146     */
2147    public static final String EXTRA_INTENT_FILTER_VERIFICATION_ID
2148            = "android.content.pm.extra.INTENT_FILTER_VERIFICATION_ID";
2149
2150    /**
2151     * Extra field name for the scheme used for an intent filter pending verification. Passed to
2152     * an intent filter verifier and is used to construct the URI to verify against.
2153     *
2154     * Usually this is "https"
2155     *
2156     * @hide
2157     */
2158    public static final String EXTRA_INTENT_FILTER_VERIFICATION_URI_SCHEME
2159            = "android.content.pm.extra.INTENT_FILTER_VERIFICATION_URI_SCHEME";
2160
2161    /**
2162     * Extra field name for the host names to be used for an intent filter pending verification.
2163     * Passed to an intent filter verifier and is used to construct the URI to verify the
2164     * intent filter.
2165     *
2166     * This is a space delimited list of hosts.
2167     *
2168     * @hide
2169     */
2170    public static final String EXTRA_INTENT_FILTER_VERIFICATION_HOSTS
2171            = "android.content.pm.extra.INTENT_FILTER_VERIFICATION_HOSTS";
2172
2173    /**
2174     * Extra field name for the package name to be used for an intent filter pending verification.
2175     * Passed to an intent filter verifier and is used to check the verification responses coming
2176     * from the hosts. Each host response will need to include the package name of APK containing
2177     * the intent filter.
2178     *
2179     * @hide
2180     */
2181    public static final String EXTRA_INTENT_FILTER_VERIFICATION_PACKAGE_NAME
2182            = "android.content.pm.extra.INTENT_FILTER_VERIFICATION_PACKAGE_NAME";
2183
2184    /**
2185     * The action used to request that the user approve a permission request
2186     * from the application.
2187     *
2188     * @hide
2189     */
2190    @SystemApi
2191    public static final String ACTION_REQUEST_PERMISSIONS =
2192            "android.content.pm.action.REQUEST_PERMISSIONS";
2193
2194    /**
2195     * The names of the requested permissions.
2196     * <p>
2197     * <strong>Type:</strong> String[]
2198     * </p>
2199     *
2200     * @hide
2201     */
2202    @SystemApi
2203    public static final String EXTRA_REQUEST_PERMISSIONS_NAMES =
2204            "android.content.pm.extra.REQUEST_PERMISSIONS_NAMES";
2205
2206    /**
2207     * The results from the permissions request.
2208     * <p>
2209     * <strong>Type:</strong> int[] of #PermissionResult
2210     * </p>
2211     *
2212     * @hide
2213     */
2214    @SystemApi
2215    public static final String EXTRA_REQUEST_PERMISSIONS_RESULTS
2216            = "android.content.pm.extra.REQUEST_PERMISSIONS_RESULTS";
2217
2218    /**
2219     * String extra for {@link PackageInstallObserver} in the 'extras' Bundle in case of
2220     * {@link #INSTALL_FAILED_DUPLICATE_PERMISSION}.  This extra names the package which provides
2221     * the existing definition for the permission.
2222     * @hide
2223     */
2224    public static final String EXTRA_FAILURE_EXISTING_PACKAGE
2225            = "android.content.pm.extra.FAILURE_EXISTING_PACKAGE";
2226
2227    /**
2228     * String extra for {@link PackageInstallObserver} in the 'extras' Bundle in case of
2229     * {@link #INSTALL_FAILED_DUPLICATE_PERMISSION}.  This extra names the permission that is
2230     * being redundantly defined by the package being installed.
2231     * @hide
2232     */
2233    public static final String EXTRA_FAILURE_EXISTING_PERMISSION
2234            = "android.content.pm.extra.FAILURE_EXISTING_PERMISSION";
2235
2236   /**
2237    * Permission flag: The permission is set in its current state
2238    * by the user and apps can still request it at runtime.
2239    *
2240    * @hide
2241    */
2242    public static final int FLAG_PERMISSION_USER_SET = 1 << 0;
2243
2244    /**
2245     * Permission flag: The permission is set in its current state
2246     * by the user and it is fixed, i.e. apps can no longer request
2247     * this permission.
2248     *
2249     * @hide
2250     */
2251    public static final int FLAG_PERMISSION_USER_FIXED =  1 << 1;
2252
2253    /**
2254     * Permission flag: The permission is set in its current state
2255     * by device policy and neither apps nor the user can change
2256     * its state.
2257     *
2258     * @hide
2259     */
2260    public static final int FLAG_PERMISSION_POLICY_FIXED =  1 << 2;
2261
2262    /**
2263     * Permission flag: The permission is set in a granted state but
2264     * access to resources it guards is restricted by other means to
2265     * enable revoking a permission on legacy apps that do not support
2266     * runtime permissions. If this permission is upgraded to runtime
2267     * because the app was updated to support runtime permissions, the
2268     * the permission will be revoked in the upgrade process.
2269     *
2270     * @hide
2271     */
2272    public static final int FLAG_PERMISSION_REVOKE_ON_UPGRADE =  1 << 3;
2273
2274    /**
2275     * Permission flag: The permission is set in its current state
2276     * because the app is a component that is a part of the system.
2277     *
2278     * @hide
2279     */
2280    public static final int FLAG_PERMISSION_SYSTEM_FIXED =  1 << 4;
2281
2282    /**
2283     * Permission flag: The permission is granted by default because it
2284     * enables app functionality that is expected to work out-of-the-box
2285     * for providing a smooth user experience. For example, the phone app
2286     * is expected to have the phone permission.
2287     *
2288     * @hide
2289     */
2290    public static final int FLAG_PERMISSION_GRANTED_BY_DEFAULT =  1 << 5;
2291
2292    /**
2293     * Permission flag: The permission has to be reviewed before any of
2294     * the app components can run.
2295     *
2296     * @hide
2297     */
2298    public static final int FLAG_PERMISSION_REVIEW_REQUIRED =  1 << 6;
2299
2300    /**
2301     * Mask for all permission flags.
2302     *
2303     * @hide
2304     */
2305    @SystemApi
2306    public static final int MASK_PERMISSION_FLAGS = 0xFF;
2307
2308    /**
2309     * Retrieve overall information about an application package that is
2310     * installed on the system.
2311     *
2312     * @param packageName The full name (i.e. com.google.apps.contacts) of the
2313     *         desired package.
2314     * @param flags Additional option flags. Use any combination of
2315     *         {@link #GET_ACTIVITIES}, {@link #GET_CONFIGURATIONS},
2316     *         {@link #GET_GIDS}, {@link #GET_INSTRUMENTATION},
2317     *         {@link #GET_INTENT_FILTERS}, {@link #GET_META_DATA},
2318     *         {@link #GET_PERMISSIONS}, {@link #GET_PROVIDERS},
2319     *         {@link #GET_RECEIVERS}, {@link #GET_SERVICES},
2320     *         {@link #GET_SHARED_LIBRARY_FILES}, {@link #GET_SIGNATURES},
2321     *         {@link #GET_URI_PERMISSION_PATTERNS}, {@link #GET_UNINSTALLED_PACKAGES},
2322     *         {@link #MATCH_DISABLED_COMPONENTS}, {@link #MATCH_DISABLED_UNTIL_USED_COMPONENTS},
2323     *         {@link #MATCH_UNINSTALLED_PACKAGES}
2324     *         to modify the data returned.
2325     *
2326     * @return A PackageInfo object containing information about the
2327     *         package. If flag {@code MATCH_UNINSTALLED_PACKAGES} is set and if the
2328     *         package is not found in the list of installed applications, the
2329     *         package information is retrieved from the list of uninstalled
2330     *         applications (which includes installed applications as well as
2331     *         applications with data directory i.e. applications which had been
2332     *         deleted with {@code DONT_DELETE_DATA} flag set).
2333     * @throws NameNotFoundException if a package with the given name cannot be
2334     *             found on the system.
2335     * @see #GET_ACTIVITIES
2336     * @see #GET_CONFIGURATIONS
2337     * @see #GET_GIDS
2338     * @see #GET_INSTRUMENTATION
2339     * @see #GET_INTENT_FILTERS
2340     * @see #GET_META_DATA
2341     * @see #GET_PERMISSIONS
2342     * @see #GET_PROVIDERS
2343     * @see #GET_RECEIVERS
2344     * @see #GET_SERVICES
2345     * @see #GET_SHARED_LIBRARY_FILES
2346     * @see #GET_SIGNATURES
2347     * @see #GET_URI_PERMISSION_PATTERNS
2348     * @see #MATCH_DISABLED_COMPONENTS
2349     * @see #MATCH_DISABLED_UNTIL_USED_COMPONENTS
2350     * @see #MATCH_UNINSTALLED_PACKAGES
2351     */
2352    public abstract PackageInfo getPackageInfo(String packageName, @PackageInfoFlags int flags)
2353            throws NameNotFoundException;
2354
2355    /**
2356     * @hide
2357     * Retrieve overall information about an application package that is
2358     * installed on the system.
2359     *
2360     * @param packageName The full name (i.e. com.google.apps.contacts) of the
2361     *         desired package.
2362     * @param flags Additional option flags. Use any combination of
2363     *         {@link #GET_ACTIVITIES}, {@link #GET_CONFIGURATIONS},
2364     *         {@link #GET_GIDS}, {@link #GET_INSTRUMENTATION},
2365     *         {@link #GET_INTENT_FILTERS}, {@link #GET_META_DATA},
2366     *         {@link #GET_PERMISSIONS}, {@link #GET_PROVIDERS},
2367     *         {@link #GET_RECEIVERS}, {@link #GET_SERVICES},
2368     *         {@link #GET_SHARED_LIBRARY_FILES}, {@link #GET_SIGNATURES},
2369     *         {@link #GET_URI_PERMISSION_PATTERNS}, {@link #GET_UNINSTALLED_PACKAGES},
2370     *         {@link #MATCH_DISABLED_COMPONENTS}, {@link #MATCH_DISABLED_UNTIL_USED_COMPONENTS},
2371     *         {@link #MATCH_UNINSTALLED_PACKAGES}
2372     *         to modify the data returned.
2373     * @param userId The user id.
2374     *
2375     * @return A PackageInfo object containing information about the
2376     *         package. If flag {@code MATCH_UNINSTALLED_PACKAGES} is set and if the
2377     *         package is not found in the list of installed applications, the
2378     *         package information is retrieved from the list of uninstalled
2379     *         applications (which includes installed applications as well as
2380     *         applications with data directory i.e. applications which had been
2381     *         deleted with {@code DONT_DELETE_DATA} flag set).
2382     * @throws NameNotFoundException if a package with the given name cannot be
2383     *             found on the system.
2384     * @see #GET_ACTIVITIES
2385     * @see #GET_CONFIGURATIONS
2386     * @see #GET_GIDS
2387     * @see #GET_INSTRUMENTATION
2388     * @see #GET_INTENT_FILTERS
2389     * @see #GET_META_DATA
2390     * @see #GET_PERMISSIONS
2391     * @see #GET_PROVIDERS
2392     * @see #GET_RECEIVERS
2393     * @see #GET_SERVICES
2394     * @see #GET_SHARED_LIBRARY_FILES
2395     * @see #GET_SIGNATURES
2396     * @see #GET_URI_PERMISSION_PATTERNS
2397     * @see #MATCH_DISABLED_COMPONENTS
2398     * @see #MATCH_DISABLED_UNTIL_USED_COMPONENTS
2399     * @see #MATCH_UNINSTALLED_PACKAGES
2400     */
2401    @RequiresPermission(Manifest.permission.INTERACT_ACROSS_USERS)
2402    public abstract PackageInfo getPackageInfoAsUser(String packageName,
2403            @PackageInfoFlags int flags, @UserIdInt int userId) throws NameNotFoundException;
2404
2405    /**
2406     * Map from the current package names in use on the device to whatever
2407     * the current canonical name of that package is.
2408     * @param names Array of current names to be mapped.
2409     * @return Returns an array of the same size as the original, containing
2410     * the canonical name for each package.
2411     */
2412    public abstract String[] currentToCanonicalPackageNames(String[] names);
2413
2414    /**
2415     * Map from a packages canonical name to the current name in use on the device.
2416     * @param names Array of new names to be mapped.
2417     * @return Returns an array of the same size as the original, containing
2418     * the current name for each package.
2419     */
2420    public abstract String[] canonicalToCurrentPackageNames(String[] names);
2421
2422    /**
2423     * Returns a "good" intent to launch a front-door activity in a package.
2424     * This is used, for example, to implement an "open" button when browsing
2425     * through packages.  The current implementation looks first for a main
2426     * activity in the category {@link Intent#CATEGORY_INFO}, and next for a
2427     * main activity in the category {@link Intent#CATEGORY_LAUNCHER}. Returns
2428     * <code>null</code> if neither are found.
2429     *
2430     * @param packageName The name of the package to inspect.
2431     *
2432     * @return A fully-qualified {@link Intent} that can be used to launch the
2433     * main activity in the package. Returns <code>null</code> if the package
2434     * does not contain such an activity, or if <em>packageName</em> is not
2435     * recognized.
2436     */
2437    public abstract Intent getLaunchIntentForPackage(String packageName);
2438
2439    /**
2440     * Return a "good" intent to launch a front-door Leanback activity in a
2441     * package, for use for example to implement an "open" button when browsing
2442     * through packages. The current implementation will look for a main
2443     * activity in the category {@link Intent#CATEGORY_LEANBACK_LAUNCHER}, or
2444     * return null if no main leanback activities are found.
2445     *
2446     * @param packageName The name of the package to inspect.
2447     * @return Returns either a fully-qualified Intent that can be used to launch
2448     *         the main Leanback activity in the package, or null if the package
2449     *         does not contain such an activity.
2450     */
2451    public abstract Intent getLeanbackLaunchIntentForPackage(String packageName);
2452
2453    /**
2454     * Return an array of all of the secondary group-ids that have been assigned
2455     * to a package.
2456     *
2457     * @param packageName The full name (i.e. com.google.apps.contacts) of the
2458     *         desired package.
2459     * @return Returns an int array of the assigned gids, or null if there are
2460     *         none.
2461     * @throws NameNotFoundException if a package with the given name cannot be
2462     *             found on the system.
2463     */
2464    public abstract int[] getPackageGids(String packageName)
2465            throws NameNotFoundException;
2466
2467    /**
2468     * Return an array of all of the secondary group-ids that have been assigned
2469     * to a package.
2470     *
2471     * @param packageName The full name (i.e. com.google.apps.contacts) of the
2472     *            desired package.
2473     * @return Returns an int array of the assigned gids, or null if there are
2474     *         none.
2475     * @throws NameNotFoundException if a package with the given name cannot be
2476     *             found on the system.
2477     */
2478    public abstract int[] getPackageGids(String packageName, @PackageInfoFlags int flags)
2479            throws NameNotFoundException;
2480
2481    /**
2482     * Return the UID associated with the given package name.
2483     *
2484     * @param packageName The full name (i.e. com.google.apps.contacts) of the
2485     *            desired package.
2486     * @return Returns an integer UID who owns the given package name.
2487     * @throws NameNotFoundException if a package with the given name can not be
2488     *             found on the system.
2489     */
2490    public abstract int getPackageUid(String packageName, @PackageInfoFlags int flags)
2491            throws NameNotFoundException;
2492
2493    /**
2494     * Return the UID associated with the given package name.
2495     *
2496     * @param packageName The full name (i.e. com.google.apps.contacts) of the
2497     *            desired package.
2498     * @param userId The user handle identifier to look up the package under.
2499     * @return Returns an integer UID who owns the given package name.
2500     * @throws NameNotFoundException if a package with the given name can not be
2501     *             found on the system.
2502     * @hide
2503     */
2504    public abstract int getPackageUidAsUser(String packageName, @UserIdInt int userId)
2505            throws NameNotFoundException;
2506
2507    /**
2508     * Return the UID associated with the given package name.
2509     *
2510     * @param packageName The full name (i.e. com.google.apps.contacts) of the
2511     *            desired package.
2512     * @param userId The user handle identifier to look up the package under.
2513     * @return Returns an integer UID who owns the given package name.
2514     * @throws NameNotFoundException if a package with the given name can not be
2515     *             found on the system.
2516     * @hide
2517     */
2518    public abstract int getPackageUidAsUser(String packageName, @PackageInfoFlags int flags,
2519            @UserIdInt int userId) throws NameNotFoundException;
2520
2521    /**
2522     * Retrieve all of the information we know about a particular permission.
2523     *
2524     * @param name The fully qualified name (i.e. com.google.permission.LOGIN)
2525     *         of the permission you are interested in.
2526     * @param flags Additional option flags.  Use {@link #GET_META_DATA} to
2527     *         retrieve any meta-data associated with the permission.
2528     *
2529     * @return Returns a {@link PermissionInfo} containing information about the
2530     *         permission.
2531     * @throws NameNotFoundException if a package with the given name cannot be
2532     *             found on the system.
2533     *
2534     * @see #GET_META_DATA
2535     */
2536    public abstract PermissionInfo getPermissionInfo(String name, @PermissionInfoFlags int flags)
2537            throws NameNotFoundException;
2538
2539    /**
2540     * Query for all of the permissions associated with a particular group.
2541     *
2542     * @param group The fully qualified name (i.e. com.google.permission.LOGIN)
2543     *         of the permission group you are interested in.  Use null to
2544     *         find all of the permissions not associated with a group.
2545     * @param flags Additional option flags.  Use {@link #GET_META_DATA} to
2546     *         retrieve any meta-data associated with the permissions.
2547     *
2548     * @return Returns a list of {@link PermissionInfo} containing information
2549     *             about all of the permissions in the given group.
2550     * @throws NameNotFoundException if a package with the given name cannot be
2551     *             found on the system.
2552     *
2553     * @see #GET_META_DATA
2554     */
2555    public abstract List<PermissionInfo> queryPermissionsByGroup(String group,
2556            @PermissionInfoFlags int flags) throws NameNotFoundException;
2557
2558    /**
2559     * Retrieve all of the information we know about a particular group of
2560     * permissions.
2561     *
2562     * @param name The fully qualified name (i.e. com.google.permission_group.APPS)
2563     *         of the permission you are interested in.
2564     * @param flags Additional option flags.  Use {@link #GET_META_DATA} to
2565     *         retrieve any meta-data associated with the permission group.
2566     *
2567     * @return Returns a {@link PermissionGroupInfo} containing information
2568     *         about the permission.
2569     * @throws NameNotFoundException if a package with the given name cannot be
2570     *             found on the system.
2571     *
2572     * @see #GET_META_DATA
2573     */
2574    public abstract PermissionGroupInfo getPermissionGroupInfo(String name,
2575            @PermissionGroupInfoFlags int flags) throws NameNotFoundException;
2576
2577    /**
2578     * Retrieve all of the known permission groups in the system.
2579     *
2580     * @param flags Additional option flags.  Use {@link #GET_META_DATA} to
2581     *         retrieve any meta-data associated with the permission group.
2582     *
2583     * @return Returns a list of {@link PermissionGroupInfo} containing
2584     *         information about all of the known permission groups.
2585     *
2586     * @see #GET_META_DATA
2587     */
2588    public abstract List<PermissionGroupInfo> getAllPermissionGroups(
2589            @PermissionGroupInfoFlags int flags);
2590
2591    /**
2592     * Retrieve all of the information we know about a particular
2593     * package/application.
2594     *
2595     * @param packageName The full name (i.e. com.google.apps.contacts) of an
2596     *         application.
2597     * @param flags Additional option flags. Use any combination of
2598     *         {@link #GET_META_DATA}, {@link #GET_SHARED_LIBRARY_FILES},
2599     *         {@link #MATCH_SYSTEM_ONLY}, {@link #MATCH_UNINSTALLED_PACKAGES}
2600     *         to modify the data returned.
2601     *
2602     * @return An {@link ApplicationInfo} containing information about the
2603     *         package. If flag {@code MATCH_UNINSTALLED_PACKAGES} is set and if the
2604     *         package is not found in the list of installed applications, the
2605     *         application information is retrieved from the list of uninstalled
2606     *         applications (which includes installed applications as well as
2607     *         applications with data directory i.e. applications which had been
2608     *         deleted with {@code DONT_DELETE_DATA} flag set).
2609     * @throws NameNotFoundException if a package with the given name cannot be
2610     *             found on the system.
2611     *
2612     * @see #GET_META_DATA
2613     * @see #GET_SHARED_LIBRARY_FILES
2614     * @see #MATCH_SYSTEM_ONLY
2615     * @see #MATCH_UNINSTALLED_PACKAGES
2616     */
2617    public abstract ApplicationInfo getApplicationInfo(String packageName,
2618            @ApplicationInfoFlags int flags) throws NameNotFoundException;
2619
2620    /** {@hide} */
2621    public abstract ApplicationInfo getApplicationInfoAsUser(String packageName,
2622            @ApplicationInfoFlags int flags, @UserIdInt int userId) throws NameNotFoundException;
2623
2624    /**
2625     * Retrieve all of the information we know about a particular activity
2626     * class.
2627     *
2628     * @param component The full component name (i.e.
2629     * com.google.apps.contacts/com.google.apps.contacts.ContactsList) of an Activity
2630     * class.
2631     * @param flags Additional option flags. Use any combination of
2632     *         {@link #GET_META_DATA}, {@link #GET_SHARED_LIBRARY_FILES},
2633     *         {@link #MATCH_ALL}, {@link #MATCH_DEFAULT_ONLY},
2634     *         {@link #MATCH_DISABLED_COMPONENTS},  {@link #MATCH_DISABLED_UNTIL_USED_COMPONENTS},
2635     *         {@link #MATCH_ENCRYPTION_AWARE}, {@link #MATCH_ENCRYPTION_AWARE_AND_UNAWARE},
2636     *         {@link #MATCH_ENCRYPTION_UNAWARE}, {@link #MATCH_SYSTEM_ONLY}
2637     *         {@link #MATCH_UNINSTALLED_PACKAGES}
2638     *         to modify the data returned.
2639     *
2640     * @return An {@link ActivityInfo} containing information about the activity.
2641     * @throws NameNotFoundException if a package with the given name cannot be
2642     *             found on the system.
2643     *
2644     * @see #GET_META_DATA
2645     * @see #GET_SHARED_LIBRARY_FILES
2646     * @see #MATCH_ALL
2647     * @see #MATCH_DEBUG_TRIAGED_MISSING
2648     * @see #MATCH_DEFAULT_ONLY
2649     * @see #MATCH_DISABLED_COMPONENTS
2650     * @see #MATCH_DISABLED_UNTIL_USED_COMPONENTS
2651     * @see #MATCH_ENCRYPTION_AWARE
2652     * @see #MATCH_ENCRYPTION_AWARE_AND_UNAWARE
2653     * @see #MATCH_ENCRYPTION_UNAWARE
2654     * @see #MATCH_SYSTEM_ONLY
2655     * @see #MATCH_UNINSTALLED_PACKAGES
2656     */
2657    public abstract ActivityInfo getActivityInfo(ComponentName component,
2658            @ComponentInfoFlags int flags) throws NameNotFoundException;
2659
2660    /**
2661     * Retrieve all of the information we know about a particular receiver
2662     * class.
2663     *
2664     * @param component The full component name (i.e.
2665     * com.google.apps.calendar/com.google.apps.calendar.CalendarAlarm) of a Receiver
2666     * class.
2667     * @param flags Additional option flags. Use any combination of
2668     *         {@link #GET_META_DATA}, {@link #GET_SHARED_LIBRARY_FILES},
2669     *         {@link #MATCH_ALL}, {@link #MATCH_DEFAULT_ONLY},
2670     *         {@link #MATCH_DISABLED_COMPONENTS},  {@link #MATCH_DISABLED_UNTIL_USED_COMPONENTS},
2671     *         {@link #MATCH_ENCRYPTION_AWARE}, {@link #MATCH_ENCRYPTION_AWARE_AND_UNAWARE},
2672     *         {@link #MATCH_ENCRYPTION_UNAWARE}, {@link #MATCH_SYSTEM_ONLY}
2673     *         {@link #MATCH_UNINSTALLED_PACKAGES}
2674     *         to modify the data returned.
2675     *
2676     * @return An {@link ActivityInfo} containing information about the receiver.
2677     * @throws NameNotFoundException if a package with the given name cannot be
2678     *             found on the system.
2679     *
2680     * @see #GET_META_DATA
2681     * @see #GET_SHARED_LIBRARY_FILES
2682     * @see #MATCH_ALL
2683     * @see #MATCH_DEBUG_TRIAGED_MISSING
2684     * @see #MATCH_DEFAULT_ONLY
2685     * @see #MATCH_DISABLED_COMPONENTS
2686     * @see #MATCH_DISABLED_UNTIL_USED_COMPONENTS
2687     * @see #MATCH_ENCRYPTION_AWARE
2688     * @see #MATCH_ENCRYPTION_AWARE_AND_UNAWARE
2689     * @see #MATCH_ENCRYPTION_UNAWARE
2690     * @see #MATCH_SYSTEM_ONLY
2691     * @see #MATCH_UNINSTALLED_PACKAGES
2692     */
2693    public abstract ActivityInfo getReceiverInfo(ComponentName component,
2694            @ComponentInfoFlags int flags) throws NameNotFoundException;
2695
2696    /**
2697     * Retrieve all of the information we know about a particular service
2698     * class.
2699     *
2700     * @param component The full component name (i.e.
2701     * com.google.apps.media/com.google.apps.media.BackgroundPlayback) of a Service
2702     * class.
2703     * @param flags Additional option flags. Use any combination of
2704     *         {@link #GET_META_DATA}, {@link #GET_SHARED_LIBRARY_FILES},
2705     *         {@link #MATCH_ALL}, {@link #MATCH_DEFAULT_ONLY},
2706     *         {@link #MATCH_DISABLED_COMPONENTS},  {@link #MATCH_DISABLED_UNTIL_USED_COMPONENTS},
2707     *         {@link #MATCH_ENCRYPTION_AWARE}, {@link #MATCH_ENCRYPTION_AWARE_AND_UNAWARE},
2708     *         {@link #MATCH_ENCRYPTION_UNAWARE}, {@link #MATCH_SYSTEM_ONLY}
2709     *         {@link #MATCH_UNINSTALLED_PACKAGES}
2710     *         to modify the data returned.
2711     *
2712     * @return A {@link ServiceInfo} object containing information about the service.
2713     * @throws NameNotFoundException if a package with the given name cannot be
2714     *             found on the system.
2715     *
2716     * @see #GET_META_DATA
2717     * @see #GET_SHARED_LIBRARY_FILES
2718     * @see #MATCH_ALL
2719     * @see #MATCH_DEBUG_TRIAGED_MISSING
2720     * @see #MATCH_DEFAULT_ONLY
2721     * @see #MATCH_DISABLED_COMPONENTS
2722     * @see #MATCH_DISABLED_UNTIL_USED_COMPONENTS
2723     * @see #MATCH_ENCRYPTION_AWARE
2724     * @see #MATCH_ENCRYPTION_AWARE_AND_UNAWARE
2725     * @see #MATCH_ENCRYPTION_UNAWARE
2726     * @see #MATCH_SYSTEM_ONLY
2727     * @see #MATCH_UNINSTALLED_PACKAGES
2728     */
2729    public abstract ServiceInfo getServiceInfo(ComponentName component,
2730            @ComponentInfoFlags int flags) throws NameNotFoundException;
2731
2732    /**
2733     * Retrieve all of the information we know about a particular content
2734     * provider class.
2735     *
2736     * @param component The full component name (i.e.
2737     * com.google.providers.media/com.google.providers.media.MediaProvider) of a
2738     * ContentProvider class.
2739     * @param flags Additional option flags. Use any combination of
2740     *         {@link #GET_META_DATA}, {@link #GET_SHARED_LIBRARY_FILES},
2741     *         {@link #MATCH_ALL}, {@link #MATCH_DEFAULT_ONLY},
2742     *         {@link #MATCH_DISABLED_COMPONENTS},  {@link #MATCH_DISABLED_UNTIL_USED_COMPONENTS},
2743     *         {@link #MATCH_ENCRYPTION_AWARE}, {@link #MATCH_ENCRYPTION_AWARE_AND_UNAWARE},
2744     *         {@link #MATCH_ENCRYPTION_UNAWARE}, {@link #MATCH_SYSTEM_ONLY}
2745     *         {@link #MATCH_UNINSTALLED_PACKAGES}
2746     *         to modify the data returned.
2747     *
2748     * @return A {@link ProviderInfo} object containing information about the provider.
2749     * @throws NameNotFoundException if a package with the given name cannot be
2750     *             found on the system.
2751     *
2752     * @see #GET_META_DATA
2753     * @see #GET_SHARED_LIBRARY_FILES
2754     * @see #MATCH_ALL
2755     * @see #MATCH_DEBUG_TRIAGED_MISSING
2756     * @see #MATCH_DEFAULT_ONLY
2757     * @see #MATCH_DISABLED_COMPONENTS
2758     * @see #MATCH_DISABLED_UNTIL_USED_COMPONENTS
2759     * @see #MATCH_ENCRYPTION_AWARE
2760     * @see #MATCH_ENCRYPTION_AWARE_AND_UNAWARE
2761     * @see #MATCH_ENCRYPTION_UNAWARE
2762     * @see #MATCH_SYSTEM_ONLY
2763     * @see #MATCH_UNINSTALLED_PACKAGES
2764     */
2765    public abstract ProviderInfo getProviderInfo(ComponentName component,
2766            @ComponentInfoFlags int flags) throws NameNotFoundException;
2767
2768    /**
2769     * Return a List of all packages that are installed
2770     * on the device.
2771     *
2772     * @param flags Additional option flags. Use any combination of
2773     *         {@link #GET_ACTIVITIES}, {@link #GET_CONFIGURATIONS},
2774     *         {@link #GET_GIDS}, {@link #GET_INSTRUMENTATION},
2775     *         {@link #GET_INTENT_FILTERS}, {@link #GET_META_DATA},
2776     *         {@link #GET_PERMISSIONS}, {@link #GET_PROVIDERS},
2777     *         {@link #GET_RECEIVERS}, {@link #GET_SERVICES},
2778     *         {@link #GET_SHARED_LIBRARY_FILES}, {@link #GET_SIGNATURES},
2779     *         {@link #GET_URI_PERMISSION_PATTERNS}, {@link #GET_UNINSTALLED_PACKAGES},
2780     *         {@link #MATCH_DISABLED_COMPONENTS}, {@link #MATCH_DISABLED_UNTIL_USED_COMPONENTS},
2781     *         {@link #MATCH_UNINSTALLED_PACKAGES}
2782     *         to modify the data returned.
2783     *
2784     * @return A List of PackageInfo objects, one for each installed package,
2785     *         containing information about the package.  In the unlikely case
2786     *         there are no installed packages, an empty list is returned. If
2787     *         flag {@code MATCH_UNINSTALLED_PACKAGES} is set, the package
2788     *         information is retrieved from the list of uninstalled
2789     *         applications (which includes installed applications as well as
2790     *         applications with data directory i.e. applications which had been
2791     *         deleted with {@code DONT_DELETE_DATA} flag set).
2792     *
2793     * @see #GET_ACTIVITIES
2794     * @see #GET_CONFIGURATIONS
2795     * @see #GET_GIDS
2796     * @see #GET_INSTRUMENTATION
2797     * @see #GET_INTENT_FILTERS
2798     * @see #GET_META_DATA
2799     * @see #GET_PERMISSIONS
2800     * @see #GET_PROVIDERS
2801     * @see #GET_RECEIVERS
2802     * @see #GET_SERVICES
2803     * @see #GET_SHARED_LIBRARY_FILES
2804     * @see #GET_SIGNATURES
2805     * @see #GET_URI_PERMISSION_PATTERNS
2806     * @see #MATCH_DISABLED_COMPONENTS
2807     * @see #MATCH_DISABLED_UNTIL_USED_COMPONENTS
2808     * @see #MATCH_UNINSTALLED_PACKAGES
2809     */
2810    public abstract List<PackageInfo> getInstalledPackages(@PackageInfoFlags int flags);
2811
2812    /**
2813     * Return a List of all installed packages that are currently
2814     * holding any of the given permissions.
2815     *
2816     * @param flags Additional option flags. Use any combination of
2817     *         {@link #GET_ACTIVITIES}, {@link #GET_CONFIGURATIONS},
2818     *         {@link #GET_GIDS}, {@link #GET_INSTRUMENTATION},
2819     *         {@link #GET_INTENT_FILTERS}, {@link #GET_META_DATA},
2820     *         {@link #GET_PERMISSIONS}, {@link #GET_PROVIDERS},
2821     *         {@link #GET_RECEIVERS}, {@link #GET_SERVICES},
2822     *         {@link #GET_SHARED_LIBRARY_FILES}, {@link #GET_SIGNATURES},
2823     *         {@link #GET_URI_PERMISSION_PATTERNS}, {@link #GET_UNINSTALLED_PACKAGES},
2824     *         {@link #MATCH_DISABLED_COMPONENTS}, {@link #MATCH_DISABLED_UNTIL_USED_COMPONENTS},
2825     *         {@link #MATCH_UNINSTALLED_PACKAGES}
2826     *         to modify the data returned.
2827     *
2828     * @return A List of PackageInfo objects, one for each installed package
2829     *         that holds any of the permissions that were provided, containing
2830     *         information about the package. If no installed packages hold any
2831     *         of the permissions, an empty list is returned. If flag
2832     *         {@code MATCH_UNINSTALLED_PACKAGES} is set, the package information
2833     *         is retrieved from the list of uninstalled applications (which
2834     *         includes installed applications as well as applications with data
2835     *         directory i.e. applications which had been deleted with
2836     *         {@code DONT_DELETE_DATA} flag set).
2837     *
2838     * @see #GET_ACTIVITIES
2839     * @see #GET_CONFIGURATIONS
2840     * @see #GET_GIDS
2841     * @see #GET_INSTRUMENTATION
2842     * @see #GET_INTENT_FILTERS
2843     * @see #GET_META_DATA
2844     * @see #GET_PERMISSIONS
2845     * @see #GET_PROVIDERS
2846     * @see #GET_RECEIVERS
2847     * @see #GET_SERVICES
2848     * @see #GET_SHARED_LIBRARY_FILES
2849     * @see #GET_SIGNATURES
2850     * @see #GET_URI_PERMISSION_PATTERNS
2851     * @see #MATCH_DISABLED_COMPONENTS
2852     * @see #MATCH_DISABLED_UNTIL_USED_COMPONENTS
2853     * @see #MATCH_UNINSTALLED_PACKAGES
2854     */
2855    public abstract List<PackageInfo> getPackagesHoldingPermissions(
2856            String[] permissions, @PackageInfoFlags int flags);
2857
2858    /**
2859     * Return a List of all packages that are installed on the device, for a specific user.
2860     * Requesting a list of installed packages for another user
2861     * will require the permission INTERACT_ACROSS_USERS_FULL.
2862     *
2863     * @param flags Additional option flags. Use any combination of
2864     *         {@link #GET_ACTIVITIES}, {@link #GET_CONFIGURATIONS},
2865     *         {@link #GET_GIDS}, {@link #GET_INSTRUMENTATION},
2866     *         {@link #GET_INTENT_FILTERS}, {@link #GET_META_DATA},
2867     *         {@link #GET_PERMISSIONS}, {@link #GET_PROVIDERS},
2868     *         {@link #GET_RECEIVERS}, {@link #GET_SERVICES},
2869     *         {@link #GET_SHARED_LIBRARY_FILES}, {@link #GET_SIGNATURES},
2870     *         {@link #GET_URI_PERMISSION_PATTERNS}, {@link #GET_UNINSTALLED_PACKAGES},
2871     *         {@link #MATCH_DISABLED_COMPONENTS}, {@link #MATCH_DISABLED_UNTIL_USED_COMPONENTS},
2872     *         {@link #MATCH_UNINSTALLED_PACKAGES}
2873     *         to modify the data returned.
2874     * @param userId The user for whom the installed packages are to be listed
2875     *
2876     * @return A List of PackageInfo objects, one for each installed package,
2877     *         containing information about the package.  In the unlikely case
2878     *         there are no installed packages, an empty list is returned. If
2879     *         flag {@code MATCH_UNINSTALLED_PACKAGES} is set, the package
2880     *         information is retrieved from the list of uninstalled
2881     *         applications (which includes installed applications as well as
2882     *         applications with data directory i.e. applications which had been
2883     *         deleted with {@code DONT_DELETE_DATA} flag set).
2884     *
2885     * @see #GET_ACTIVITIES
2886     * @see #GET_CONFIGURATIONS
2887     * @see #GET_GIDS
2888     * @see #GET_INSTRUMENTATION
2889     * @see #GET_INTENT_FILTERS
2890     * @see #GET_META_DATA
2891     * @see #GET_PERMISSIONS
2892     * @see #GET_PROVIDERS
2893     * @see #GET_RECEIVERS
2894     * @see #GET_SERVICES
2895     * @see #GET_SHARED_LIBRARY_FILES
2896     * @see #GET_SIGNATURES
2897     * @see #GET_URI_PERMISSION_PATTERNS
2898     * @see #MATCH_DISABLED_COMPONENTS
2899     * @see #MATCH_DISABLED_UNTIL_USED_COMPONENTS
2900     * @see #MATCH_UNINSTALLED_PACKAGES
2901     *
2902     * @hide
2903     */
2904    public abstract List<PackageInfo> getInstalledPackagesAsUser(@PackageInfoFlags int flags,
2905            @UserIdInt int userId);
2906
2907    /**
2908     * Check whether a particular package has been granted a particular
2909     * permission.
2910     *
2911     * @param permName The name of the permission you are checking for.
2912     * @param pkgName The name of the package you are checking against.
2913     *
2914     * @return If the package has the permission, PERMISSION_GRANTED is
2915     * returned.  If it does not have the permission, PERMISSION_DENIED
2916     * is returned.
2917     *
2918     * @see #PERMISSION_GRANTED
2919     * @see #PERMISSION_DENIED
2920     */
2921    @CheckResult
2922    public abstract int checkPermission(String permName, String pkgName);
2923
2924    /**
2925     * Checks whether a particular permissions has been revoked for a
2926     * package by policy. Typically the device owner or the profile owner
2927     * may apply such a policy. The user cannot grant policy revoked
2928     * permissions, hence the only way for an app to get such a permission
2929     * is by a policy change.
2930     *
2931     * @param permName The name of the permission you are checking for.
2932     * @param pkgName The name of the package you are checking against.
2933     *
2934     * @return Whether the permission is restricted by policy.
2935     */
2936    @CheckResult
2937    public abstract boolean isPermissionRevokedByPolicy(@NonNull String permName,
2938            @NonNull String pkgName);
2939
2940    /**
2941     * Gets the package name of the component controlling runtime permissions.
2942     *
2943     * @return The package name.
2944     *
2945     * @hide
2946     */
2947    public abstract String getPermissionControllerPackageName();
2948
2949    /**
2950     * Add a new dynamic permission to the system.  For this to work, your
2951     * package must have defined a permission tree through the
2952     * {@link android.R.styleable#AndroidManifestPermissionTree
2953     * &lt;permission-tree&gt;} tag in its manifest.  A package can only add
2954     * permissions to trees that were defined by either its own package or
2955     * another with the same user id; a permission is in a tree if it
2956     * matches the name of the permission tree + ".": for example,
2957     * "com.foo.bar" is a member of the permission tree "com.foo".
2958     *
2959     * <p>It is good to make your permission tree name descriptive, because you
2960     * are taking possession of that entire set of permission names.  Thus, it
2961     * must be under a domain you control, with a suffix that will not match
2962     * any normal permissions that may be declared in any applications that
2963     * are part of that domain.
2964     *
2965     * <p>New permissions must be added before
2966     * any .apks are installed that use those permissions.  Permissions you
2967     * add through this method are remembered across reboots of the device.
2968     * If the given permission already exists, the info you supply here
2969     * will be used to update it.
2970     *
2971     * @param info Description of the permission to be added.
2972     *
2973     * @return Returns true if a new permission was created, false if an
2974     * existing one was updated.
2975     *
2976     * @throws SecurityException if you are not allowed to add the
2977     * given permission name.
2978     *
2979     * @see #removePermission(String)
2980     */
2981    public abstract boolean addPermission(PermissionInfo info);
2982
2983    /**
2984     * Like {@link #addPermission(PermissionInfo)} but asynchronously
2985     * persists the package manager state after returning from the call,
2986     * allowing it to return quicker and batch a series of adds at the
2987     * expense of no guarantee the added permission will be retained if
2988     * the device is rebooted before it is written.
2989     */
2990    public abstract boolean addPermissionAsync(PermissionInfo info);
2991
2992    /**
2993     * Removes a permission that was previously added with
2994     * {@link #addPermission(PermissionInfo)}.  The same ownership rules apply
2995     * -- you are only allowed to remove permissions that you are allowed
2996     * to add.
2997     *
2998     * @param name The name of the permission to remove.
2999     *
3000     * @throws SecurityException if you are not allowed to remove the
3001     * given permission name.
3002     *
3003     * @see #addPermission(PermissionInfo)
3004     */
3005    public abstract void removePermission(String name);
3006
3007
3008    /**
3009     * Permission flags set when granting or revoking a permission.
3010     *
3011     * @hide
3012     */
3013    @SystemApi
3014    @IntDef({FLAG_PERMISSION_USER_SET,
3015            FLAG_PERMISSION_USER_FIXED,
3016            FLAG_PERMISSION_POLICY_FIXED,
3017            FLAG_PERMISSION_REVOKE_ON_UPGRADE,
3018            FLAG_PERMISSION_SYSTEM_FIXED,
3019            FLAG_PERMISSION_GRANTED_BY_DEFAULT})
3020    @Retention(RetentionPolicy.SOURCE)
3021    public @interface PermissionFlags {}
3022
3023    /**
3024     * Grant a runtime permission to an application which the application does not
3025     * already have. The permission must have been requested by the application.
3026     * If the application is not allowed to hold the permission, a {@link
3027     * java.lang.SecurityException} is thrown.
3028     * <p>
3029     * <strong>Note: </strong>Using this API requires holding
3030     * android.permission.GRANT_REVOKE_PERMISSIONS and if the user id is
3031     * not the current user android.permission.INTERACT_ACROSS_USERS_FULL.
3032     * </p>
3033     *
3034     * @param packageName The package to which to grant the permission.
3035     * @param permissionName The permission name to grant.
3036     * @param user The user for which to grant the permission.
3037     *
3038     * @see #revokeRuntimePermission(String, String, android.os.UserHandle)
3039     * @see android.content.pm.PackageManager.PermissionFlags
3040     *
3041     * @hide
3042     */
3043    @SystemApi
3044    public abstract void grantRuntimePermission(@NonNull String packageName,
3045            @NonNull String permissionName, @NonNull UserHandle user);
3046
3047    /**
3048     * Revoke a runtime permission that was previously granted by {@link
3049     * #grantRuntimePermission(String, String, android.os.UserHandle)}. The
3050     * permission must have been requested by and granted to the application.
3051     * If the application is not allowed to hold the permission, a {@link
3052     * java.lang.SecurityException} is thrown.
3053     * <p>
3054     * <strong>Note: </strong>Using this API requires holding
3055     * android.permission.GRANT_REVOKE_PERMISSIONS and if the user id is
3056     * not the current user android.permission.INTERACT_ACROSS_USERS_FULL.
3057     * </p>
3058     *
3059     * @param packageName The package from which to revoke the permission.
3060     * @param permissionName The permission name to revoke.
3061     * @param user The user for which to revoke the permission.
3062     *
3063     * @see #grantRuntimePermission(String, String, android.os.UserHandle)
3064     * @see android.content.pm.PackageManager.PermissionFlags
3065     *
3066     * @hide
3067     */
3068    @SystemApi
3069    public abstract void revokeRuntimePermission(@NonNull String packageName,
3070            @NonNull String permissionName, @NonNull UserHandle user);
3071
3072    /**
3073     * Gets the state flags associated with a permission.
3074     *
3075     * @param permissionName The permission for which to get the flags.
3076     * @param packageName The package name for which to get the flags.
3077     * @param user The user for which to get permission flags.
3078     * @return The permission flags.
3079     *
3080     * @hide
3081     */
3082    @SystemApi
3083    public abstract @PermissionFlags int getPermissionFlags(String permissionName,
3084            String packageName, @NonNull UserHandle user);
3085
3086    /**
3087     * Updates the flags associated with a permission by replacing the flags in
3088     * the specified mask with the provided flag values.
3089     *
3090     * @param permissionName The permission for which to update the flags.
3091     * @param packageName The package name for which to update the flags.
3092     * @param flagMask The flags which to replace.
3093     * @param flagValues The flags with which to replace.
3094     * @param user The user for which to update the permission flags.
3095     *
3096     * @hide
3097     */
3098    @SystemApi
3099    public abstract void updatePermissionFlags(String permissionName,
3100            String packageName, @PermissionFlags int flagMask, int flagValues,
3101            @NonNull UserHandle user);
3102
3103    /**
3104     * Gets whether you should show UI with rationale for requesting a permission.
3105     * You should do this only if you do not have the permission and the context in
3106     * which the permission is requested does not clearly communicate to the user
3107     * what would be the benefit from grating this permission.
3108     *
3109     * @param permission A permission your app wants to request.
3110     * @return Whether you can show permission rationale UI.
3111     *
3112     * @hide
3113     */
3114    public abstract boolean shouldShowRequestPermissionRationale(String permission);
3115
3116    /**
3117     * Returns an {@link android.content.Intent} suitable for passing to
3118     * {@link android.app.Activity#startActivityForResult(android.content.Intent, int)}
3119     * which prompts the user to grant permissions to this application.
3120     *
3121     * @throws NullPointerException if {@code permissions} is {@code null} or empty.
3122     *
3123     * @hide
3124     */
3125    public Intent buildRequestPermissionsIntent(@NonNull String[] permissions) {
3126        if (ArrayUtils.isEmpty(permissions)) {
3127           throw new NullPointerException("permission cannot be null or empty");
3128        }
3129        Intent intent = new Intent(ACTION_REQUEST_PERMISSIONS);
3130        intent.putExtra(EXTRA_REQUEST_PERMISSIONS_NAMES, permissions);
3131        intent.setPackage(getPermissionControllerPackageName());
3132        return intent;
3133    }
3134
3135    /**
3136     * Compare the signatures of two packages to determine if the same
3137     * signature appears in both of them.  If they do contain the same
3138     * signature, then they are allowed special privileges when working
3139     * with each other: they can share the same user-id, run instrumentation
3140     * against each other, etc.
3141     *
3142     * @param pkg1 First package name whose signature will be compared.
3143     * @param pkg2 Second package name whose signature will be compared.
3144     *
3145     * @return Returns an integer indicating whether all signatures on the
3146     * two packages match. The value is >= 0 ({@link #SIGNATURE_MATCH}) if
3147     * all signatures match or < 0 if there is not a match ({@link
3148     * #SIGNATURE_NO_MATCH} or {@link #SIGNATURE_UNKNOWN_PACKAGE}).
3149     *
3150     * @see #checkSignatures(int, int)
3151     * @see #SIGNATURE_MATCH
3152     * @see #SIGNATURE_NO_MATCH
3153     * @see #SIGNATURE_UNKNOWN_PACKAGE
3154     */
3155    @CheckResult
3156    public abstract int checkSignatures(String pkg1, String pkg2);
3157
3158    /**
3159     * Like {@link #checkSignatures(String, String)}, but takes UIDs of
3160     * the two packages to be checked.  This can be useful, for example,
3161     * when doing the check in an IPC, where the UID is the only identity
3162     * available.  It is functionally identical to determining the package
3163     * associated with the UIDs and checking their signatures.
3164     *
3165     * @param uid1 First UID whose signature will be compared.
3166     * @param uid2 Second UID whose signature will be compared.
3167     *
3168     * @return Returns an integer indicating whether all signatures on the
3169     * two packages match. The value is >= 0 ({@link #SIGNATURE_MATCH}) if
3170     * all signatures match or < 0 if there is not a match ({@link
3171     * #SIGNATURE_NO_MATCH} or {@link #SIGNATURE_UNKNOWN_PACKAGE}).
3172     *
3173     * @see #checkSignatures(String, String)
3174     * @see #SIGNATURE_MATCH
3175     * @see #SIGNATURE_NO_MATCH
3176     * @see #SIGNATURE_UNKNOWN_PACKAGE
3177     */
3178    @CheckResult
3179    public abstract int checkSignatures(int uid1, int uid2);
3180
3181    /**
3182     * Retrieve the names of all packages that are associated with a particular
3183     * user id.  In most cases, this will be a single package name, the package
3184     * that has been assigned that user id.  Where there are multiple packages
3185     * sharing the same user id through the "sharedUserId" mechanism, all
3186     * packages with that id will be returned.
3187     *
3188     * @param uid The user id for which you would like to retrieve the
3189     * associated packages.
3190     *
3191     * @return Returns an array of one or more packages assigned to the user
3192     * id, or null if there are no known packages with the given id.
3193     */
3194    public abstract @Nullable String[] getPackagesForUid(int uid);
3195
3196    /**
3197     * Retrieve the official name associated with a user id.  This name is
3198     * guaranteed to never change, though it is possible for the underlying
3199     * user id to be changed.  That is, if you are storing information about
3200     * user ids in persistent storage, you should use the string returned
3201     * by this function instead of the raw user-id.
3202     *
3203     * @param uid The user id for which you would like to retrieve a name.
3204     * @return Returns a unique name for the given user id, or null if the
3205     * user id is not currently assigned.
3206     */
3207    public abstract @Nullable String getNameForUid(int uid);
3208
3209    /**
3210     * Return the user id associated with a shared user name. Multiple
3211     * applications can specify a shared user name in their manifest and thus
3212     * end up using a common uid. This might be used for new applications
3213     * that use an existing shared user name and need to know the uid of the
3214     * shared user.
3215     *
3216     * @param sharedUserName The shared user name whose uid is to be retrieved.
3217     * @return Returns the UID associated with the shared user.
3218     * @throws NameNotFoundException if a package with the given name cannot be
3219     *             found on the system.
3220     * @hide
3221     */
3222    public abstract int getUidForSharedUser(String sharedUserName)
3223            throws NameNotFoundException;
3224
3225    /**
3226     * Return a List of all application packages that are installed on the
3227     * device. If flag GET_UNINSTALLED_PACKAGES has been set, a list of all
3228     * applications including those deleted with {@code DONT_DELETE_DATA} (partially
3229     * installed apps with data directory) will be returned.
3230     *
3231     * @param flags Additional option flags. Use any combination of
3232     * {@link #GET_META_DATA}, {@link #GET_SHARED_LIBRARY_FILES},
3233     * {@link #MATCH_SYSTEM_ONLY}, {@link #MATCH_UNINSTALLED_PACKAGES}
3234     * to modify the data returned.
3235     *
3236     * @return A List of ApplicationInfo objects, one for each installed application.
3237     *         In the unlikely case there are no installed packages, an empty list
3238     *         is returned. If flag {@code MATCH_UNINSTALLED_PACKAGES} is set, the
3239     *         application information is retrieved from the list of uninstalled
3240     *         applications (which includes installed applications as well as
3241     *         applications with data directory i.e. applications which had been
3242     *         deleted with {@code DONT_DELETE_DATA} flag set).
3243     *
3244     * @see #GET_META_DATA
3245     * @see #GET_SHARED_LIBRARY_FILES
3246     * @see #MATCH_SYSTEM_ONLY
3247     * @see #MATCH_UNINSTALLED_PACKAGES
3248     */
3249    public abstract List<ApplicationInfo> getInstalledApplications(@ApplicationInfoFlags int flags);
3250
3251    /**
3252     * Gets the ephemeral applications the user recently used. Requires
3253     * holding "android.permission.ACCESS_EPHEMERAL_APPS".
3254     *
3255     * @return The ephemeral app list.
3256     *
3257     * @hide
3258     */
3259    @RequiresPermission(Manifest.permission.ACCESS_EPHEMERAL_APPS)
3260    public abstract List<EphemeralApplicationInfo> getEphemeralApplications();
3261
3262    /**
3263     * Gets the icon for an ephemeral application.
3264     *
3265     * @param packageName The app package name.
3266     *
3267     * @hide
3268     */
3269    public abstract Drawable getEphemeralApplicationIcon(String packageName);
3270
3271    /**
3272     * Gets whether the caller is an ephemeral app.
3273     *
3274     * @return Whether caller is an ephemeral app.
3275     *
3276     * @see #setEphemeralCookie(byte[])
3277     * @see #getEphemeralCookie()
3278     * @see #getEphemeralCookieMaxSizeBytes()
3279     *
3280     * @hide
3281     */
3282    public abstract boolean isEphemeralApplication();
3283
3284    /**
3285     * Gets the maximum size in bytes of the cookie data an ephemeral app
3286     * can store on the device.
3287     *
3288     * @return The max cookie size in bytes.
3289     *
3290     * @see #isEphemeralApplication()
3291     * @see #setEphemeralCookie(byte[])
3292     * @see #getEphemeralCookie()
3293     *
3294     * @hide
3295     */
3296    public abstract int getEphemeralCookieMaxSizeBytes();
3297
3298    /**
3299     * Gets the ephemeral application cookie for this app. Non
3300     * ephemeral apps and apps that were ephemeral but were upgraded
3301     * to non-ephemeral can still access this API. For ephemeral apps
3302     * this cooke is cached for some time after uninstall while for
3303     * normal apps the cookie is deleted after the app is uninstalled.
3304     * The cookie is always present while the app is installed.
3305     *
3306     * @return The cookie.
3307     *
3308     * @see #isEphemeralApplication()
3309     * @see #setEphemeralCookie(byte[])
3310     * @see #getEphemeralCookieMaxSizeBytes()
3311     *
3312     * @hide
3313     */
3314    public abstract @NonNull byte[] getEphemeralCookie();
3315
3316    /**
3317     * Sets the ephemeral application cookie for the calling app. Non
3318     * ephemeral apps and apps that were ephemeral but were upgraded
3319     * to non-ephemeral can still access this API. For ephemeral apps
3320     * this cooke is cached for some time after uninstall while for
3321     * normal apps the cookie is deleted after the app is uninstalled.
3322     * The cookie is always present while the app is installed. The
3323     * cookie size is limited by {@link #getEphemeralCookieMaxSizeBytes()}.
3324     *
3325     * @param cookie The cookie data.
3326     * @return True if the cookie was set.
3327     *
3328     * @see #isEphemeralApplication()
3329     * @see #getEphemeralCookieMaxSizeBytes()
3330     * @see #getEphemeralCookie()
3331     *
3332     * @hide
3333     */
3334    public abstract boolean setEphemeralCookie(@NonNull  byte[] cookie);
3335
3336    /**
3337     * Get a list of shared libraries that are available on the
3338     * system.
3339     *
3340     * @return An array of shared library names that are
3341     * available on the system, or null if none are installed.
3342     *
3343     */
3344    public abstract String[] getSystemSharedLibraryNames();
3345
3346    /**
3347     * Get a list of features that are available on the
3348     * system.
3349     *
3350     * @return An array of FeatureInfo classes describing the features
3351     * that are available on the system, or null if there are none(!!).
3352     */
3353    public abstract FeatureInfo[] getSystemAvailableFeatures();
3354
3355    /**
3356     * Check whether the given feature name is one of the available
3357     * features as returned by {@link #getSystemAvailableFeatures()}.
3358     *
3359     * @return Returns true if the devices supports the feature, else
3360     * false.
3361     */
3362    public abstract boolean hasSystemFeature(String name);
3363
3364    /**
3365     * Determine the best action to perform for a given Intent.  This is how
3366     * {@link Intent#resolveActivity} finds an activity if a class has not
3367     * been explicitly specified.
3368     *
3369     * <p><em>Note:</em> if using an implicit Intent (without an explicit ComponentName
3370     * specified), be sure to consider whether to set the {@link #MATCH_DEFAULT_ONLY}
3371     * only flag.  You need to do so to resolve the activity in the same way
3372     * that {@link android.content.Context#startActivity(Intent)} and
3373     * {@link android.content.Intent#resolveActivity(PackageManager)
3374     * Intent.resolveActivity(PackageManager)} do.</p>
3375     *
3376     * @param intent An intent containing all of the desired specification
3377     *               (action, data, type, category, and/or component).
3378     * @param flags Additional option flags. Use any combination of
3379     *         {@link #GET_META_DATA}, {@link #GET_RESOLVED_FILTER},
3380     *         {@link #GET_SHARED_LIBRARY_FILES}, {@link #MATCH_ALL},
3381     *         {@link #MATCH_DISABLED_COMPONENTS}, {@link #MATCH_DISABLED_UNTIL_USED_COMPONENTS},
3382     *         {@link #MATCH_DEFAULT_ONLY}, {@link #MATCH_ENCRYPTION_AWARE},
3383     *         {@link #MATCH_ENCRYPTION_AWARE_AND_UNAWARE}, {@link #MATCH_ENCRYPTION_UNAWARE},
3384     *         {@link #MATCH_SYSTEM_ONLY}, {@link #MATCH_UNINSTALLED_PACKAGES}
3385     *         to modify the data returned. The most important is
3386     *         {@link #MATCH_DEFAULT_ONLY}, to limit the resolution to only
3387     *         those activities that support the {@link android.content.Intent#CATEGORY_DEFAULT}.
3388     *
3389     * @return Returns a ResolveInfo object containing the final activity intent
3390     *         that was determined to be the best action.  Returns null if no
3391     *         matching activity was found. If multiple matching activities are
3392     *         found and there is no default set, returns a ResolveInfo object
3393     *         containing something else, such as the activity resolver.
3394     *
3395     * @see #GET_META_DATA
3396     * @see #GET_RESOLVED_FILTER
3397     * @see #GET_SHARED_LIBRARY_FILES
3398     * @see #MATCH_ALL
3399     * @see #MATCH_DISABLED_COMPONENTS
3400     * @see #MATCH_DISABLED_UNTIL_USED_COMPONENTS
3401     * @see #MATCH_DEFAULT_ONLY
3402     * @see #MATCH_ENCRYPTION_AWARE
3403     * @see #MATCH_ENCRYPTION_AWARE_AND_UNAWARE
3404     * @see #MATCH_ENCRYPTION_UNAWARE
3405     * @see #MATCH_SYSTEM_ONLY
3406     * @see #MATCH_UNINSTALLED_PACKAGES
3407     */
3408    public abstract ResolveInfo resolveActivity(Intent intent, @ResolveInfoFlags int flags);
3409
3410    /**
3411     * Determine the best action to perform for a given Intent for a given user. This
3412     * is how {@link Intent#resolveActivity} finds an activity if a class has not
3413     * been explicitly specified.
3414     *
3415     * <p><em>Note:</em> if using an implicit Intent (without an explicit ComponentName
3416     * specified), be sure to consider whether to set the {@link #MATCH_DEFAULT_ONLY}
3417     * only flag.  You need to do so to resolve the activity in the same way
3418     * that {@link android.content.Context#startActivity(Intent)} and
3419     * {@link android.content.Intent#resolveActivity(PackageManager)
3420     * Intent.resolveActivity(PackageManager)} do.</p>
3421     *
3422     * @param intent An intent containing all of the desired specification
3423     *               (action, data, type, category, and/or component).
3424     * @param flags Additional option flags. Use any combination of
3425     *         {@link #GET_META_DATA}, {@link #GET_RESOLVED_FILTER},
3426     *         {@link #GET_SHARED_LIBRARY_FILES}, {@link #MATCH_ALL},
3427     *         {@link #MATCH_DISABLED_COMPONENTS}, {@link #MATCH_DISABLED_UNTIL_USED_COMPONENTS},
3428     *         {@link #MATCH_DEFAULT_ONLY}, {@link #MATCH_ENCRYPTION_AWARE},
3429     *         {@link #MATCH_ENCRYPTION_AWARE_AND_UNAWARE}, {@link #MATCH_ENCRYPTION_UNAWARE},
3430     *         {@link #MATCH_SYSTEM_ONLY}, {@link #MATCH_UNINSTALLED_PACKAGES}
3431     *         to modify the data returned. The most important is
3432     *         {@link #MATCH_DEFAULT_ONLY}, to limit the resolution to only
3433     *         those activities that support the {@link android.content.Intent#CATEGORY_DEFAULT}.
3434     * @param userId The user id.
3435     *
3436     * @return Returns a ResolveInfo object containing the final activity intent
3437     *         that was determined to be the best action.  Returns null if no
3438     *         matching activity was found. If multiple matching activities are
3439     *         found and there is no default set, returns a ResolveInfo object
3440     *         containing something else, such as the activity resolver.
3441     *
3442     * @see #GET_META_DATA
3443     * @see #GET_RESOLVED_FILTER
3444     * @see #GET_SHARED_LIBRARY_FILES
3445     * @see #MATCH_ALL
3446     * @see #MATCH_DISABLED_COMPONENTS
3447     * @see #MATCH_DISABLED_UNTIL_USED_COMPONENTS
3448     * @see #MATCH_DEFAULT_ONLY
3449     * @see #MATCH_ENCRYPTION_AWARE
3450     * @see #MATCH_ENCRYPTION_AWARE_AND_UNAWARE
3451     * @see #MATCH_ENCRYPTION_UNAWARE
3452     * @see #MATCH_SYSTEM_ONLY
3453     * @see #MATCH_UNINSTALLED_PACKAGES
3454     *
3455     * @hide
3456     */
3457    public abstract ResolveInfo resolveActivityAsUser(Intent intent, @ResolveInfoFlags int flags,
3458            @UserIdInt int userId);
3459
3460    /**
3461     * Retrieve all activities that can be performed for the given intent.
3462     *
3463     * @param intent The desired intent as per resolveActivity().
3464     * @param flags Additional option flags. Use any combination of
3465     *         {@link #GET_META_DATA}, {@link #GET_RESOLVED_FILTER},
3466     *         {@link #GET_SHARED_LIBRARY_FILES}, {@link #MATCH_ALL},
3467     *         {@link #MATCH_DISABLED_COMPONENTS}, {@link #MATCH_DISABLED_UNTIL_USED_COMPONENTS},
3468     *         {@link #MATCH_DEFAULT_ONLY}, {@link #MATCH_ENCRYPTION_AWARE},
3469     *         {@link #MATCH_ENCRYPTION_AWARE_AND_UNAWARE}, {@link #MATCH_ENCRYPTION_UNAWARE},
3470     *         {@link #MATCH_SYSTEM_ONLY}, {@link #MATCH_UNINSTALLED_PACKAGES}
3471     *         to modify the data returned. The most important is
3472     *         {@link #MATCH_DEFAULT_ONLY}, to limit the resolution to only
3473     *         those activities that support the {@link android.content.Intent#CATEGORY_DEFAULT}.
3474     *         Or, set {@link #MATCH_ALL} to prevent any filtering of the results.
3475     *
3476     * @return Returns a List of ResolveInfo objects containing one entry for each
3477     *         matching activity, ordered from best to worst. In other words, the
3478     *         first item is what would be returned by {@link #resolveActivity}.
3479     *         If there are no matching activities, an empty list is returned.
3480     *
3481     * @see #GET_META_DATA
3482     * @see #GET_RESOLVED_FILTER
3483     * @see #GET_SHARED_LIBRARY_FILES
3484     * @see #MATCH_ALL
3485     * @see #MATCH_DISABLED_COMPONENTS
3486     * @see #MATCH_DISABLED_UNTIL_USED_COMPONENTS
3487     * @see #MATCH_DEFAULT_ONLY
3488     * @see #MATCH_ENCRYPTION_AWARE
3489     * @see #MATCH_ENCRYPTION_AWARE_AND_UNAWARE
3490     * @see #MATCH_ENCRYPTION_UNAWARE
3491     * @see #MATCH_SYSTEM_ONLY
3492     * @see #MATCH_UNINSTALLED_PACKAGES
3493     */
3494    public abstract List<ResolveInfo> queryIntentActivities(Intent intent,
3495            @ResolveInfoFlags int flags);
3496
3497    /**
3498     * Retrieve all activities that can be performed for the given intent, for a specific user.
3499     *
3500     * @param intent The desired intent as per resolveActivity().
3501     * @param flags Additional option flags. Use any combination of
3502     *         {@link #GET_META_DATA}, {@link #GET_RESOLVED_FILTER},
3503     *         {@link #GET_SHARED_LIBRARY_FILES}, {@link #MATCH_ALL},
3504     *         {@link #MATCH_DISABLED_COMPONENTS}, {@link #MATCH_DISABLED_UNTIL_USED_COMPONENTS},
3505     *         {@link #MATCH_DEFAULT_ONLY}, {@link #MATCH_ENCRYPTION_AWARE},
3506     *         {@link #MATCH_ENCRYPTION_AWARE_AND_UNAWARE}, {@link #MATCH_ENCRYPTION_UNAWARE},
3507     *         {@link #MATCH_SYSTEM_ONLY}, {@link #MATCH_UNINSTALLED_PACKAGES}
3508     *         to modify the data returned. The most important is
3509     *         {@link #MATCH_DEFAULT_ONLY}, to limit the resolution to only
3510     *         those activities that support the {@link android.content.Intent#CATEGORY_DEFAULT}.
3511     *         Or, set {@link #MATCH_ALL} to prevent any filtering of the results.
3512     *
3513     * @return Returns a List of ResolveInfo objects containing one entry for each
3514     *         matching activity, ordered from best to worst. In other words, the
3515     *         first item is what would be returned by {@link #resolveActivity}.
3516     *         If there are no matching activities, an empty list is returned.
3517     *
3518     * @see #GET_META_DATA
3519     * @see #GET_RESOLVED_FILTER
3520     * @see #GET_SHARED_LIBRARY_FILES
3521     * @see #MATCH_ALL
3522     * @see #MATCH_DISABLED_COMPONENTS
3523     * @see #MATCH_DISABLED_UNTIL_USED_COMPONENTS
3524     * @see #MATCH_DEFAULT_ONLY
3525     * @see #MATCH_ENCRYPTION_AWARE
3526     * @see #MATCH_ENCRYPTION_AWARE_AND_UNAWARE
3527     * @see #MATCH_ENCRYPTION_UNAWARE
3528     * @see #MATCH_SYSTEM_ONLY
3529     * @see #MATCH_UNINSTALLED_PACKAGES
3530     *
3531     * @hide
3532     */
3533    public abstract List<ResolveInfo> queryIntentActivitiesAsUser(Intent intent,
3534            @ResolveInfoFlags int flags, @UserIdInt int userId);
3535
3536    /**
3537     * Retrieve a set of activities that should be presented to the user as
3538     * similar options.  This is like {@link #queryIntentActivities}, except it
3539     * also allows you to supply a list of more explicit Intents that you would
3540     * like to resolve to particular options, and takes care of returning the
3541     * final ResolveInfo list in a reasonable order, with no duplicates, based
3542     * on those inputs.
3543     *
3544     * @param caller The class name of the activity that is making the
3545     *               request.  This activity will never appear in the output
3546     *               list.  Can be null.
3547     * @param specifics An array of Intents that should be resolved to the
3548     *                  first specific results.  Can be null.
3549     * @param intent The desired intent as per resolveActivity().
3550     * @param flags Additional option flags. Use any combination of
3551     *         {@link #GET_META_DATA}, {@link #GET_RESOLVED_FILTER},
3552     *         {@link #GET_SHARED_LIBRARY_FILES}, {@link #MATCH_ALL},
3553     *         {@link #MATCH_DISABLED_COMPONENTS}, {@link #MATCH_DISABLED_UNTIL_USED_COMPONENTS},
3554     *         {@link #MATCH_DEFAULT_ONLY}, {@link #MATCH_ENCRYPTION_AWARE},
3555     *         {@link #MATCH_ENCRYPTION_AWARE_AND_UNAWARE}, {@link #MATCH_ENCRYPTION_UNAWARE},
3556     *         {@link #MATCH_SYSTEM_ONLY}, {@link #MATCH_UNINSTALLED_PACKAGES}
3557     *         to modify the data returned. The most important is
3558     *         {@link #MATCH_DEFAULT_ONLY}, to limit the resolution to only
3559     *         those activities that support the {@link android.content.Intent#CATEGORY_DEFAULT}.
3560     *
3561     * @return Returns a List of ResolveInfo objects containing one entry for each
3562     *         matching activity. The list is ordered first by all of the intents resolved
3563     *         in <var>specifics</var> and then any additional activities that
3564     *         can handle <var>intent</var> but did not get included by one of
3565     *         the <var>specifics</var> intents.  If there are no matching
3566     *         activities, an empty list is returned.
3567     *
3568     * @see #GET_META_DATA
3569     * @see #GET_RESOLVED_FILTER
3570     * @see #GET_SHARED_LIBRARY_FILES
3571     * @see #MATCH_ALL
3572     * @see #MATCH_DISABLED_COMPONENTS
3573     * @see #MATCH_DISABLED_UNTIL_USED_COMPONENTS
3574     * @see #MATCH_DEFAULT_ONLY
3575     * @see #MATCH_ENCRYPTION_AWARE
3576     * @see #MATCH_ENCRYPTION_AWARE_AND_UNAWARE
3577     * @see #MATCH_ENCRYPTION_UNAWARE
3578     * @see #MATCH_SYSTEM_ONLY
3579     * @see #MATCH_UNINSTALLED_PACKAGES
3580     */
3581    public abstract List<ResolveInfo> queryIntentActivityOptions(
3582            ComponentName caller, Intent[] specifics, Intent intent, @ResolveInfoFlags int flags);
3583
3584    /**
3585     * Retrieve all receivers that can handle a broadcast of the given intent.
3586     *
3587     * @param intent The desired intent as per resolveActivity().
3588     * @param flags Additional option flags. Use any combination of
3589     *         {@link #GET_META_DATA}, {@link #GET_RESOLVED_FILTER},
3590     *         {@link #GET_SHARED_LIBRARY_FILES}, {@link #MATCH_ALL},
3591     *         {@link #MATCH_DISABLED_COMPONENTS}, {@link #MATCH_DISABLED_UNTIL_USED_COMPONENTS},
3592     *         {@link #MATCH_DEFAULT_ONLY}, {@link #MATCH_ENCRYPTION_AWARE},
3593     *         {@link #MATCH_ENCRYPTION_AWARE_AND_UNAWARE}, {@link #MATCH_ENCRYPTION_UNAWARE},
3594     *         {@link #MATCH_SYSTEM_ONLY}, {@link #MATCH_UNINSTALLED_PACKAGES}
3595     *         to modify the data returned.
3596     *
3597     * @return Returns a List of ResolveInfo objects containing one entry for each
3598     *         matching receiver, ordered from best to worst. If there are no matching
3599     *         receivers, an empty list or null is returned.
3600     *
3601     * @see #GET_META_DATA
3602     * @see #GET_RESOLVED_FILTER
3603     * @see #GET_SHARED_LIBRARY_FILES
3604     * @see #MATCH_ALL
3605     * @see #MATCH_DISABLED_COMPONENTS
3606     * @see #MATCH_DISABLED_UNTIL_USED_COMPONENTS
3607     * @see #MATCH_DEFAULT_ONLY
3608     * @see #MATCH_ENCRYPTION_AWARE
3609     * @see #MATCH_ENCRYPTION_AWARE_AND_UNAWARE
3610     * @see #MATCH_ENCRYPTION_UNAWARE
3611     * @see #MATCH_SYSTEM_ONLY
3612     * @see #MATCH_UNINSTALLED_PACKAGES
3613     */
3614    public abstract List<ResolveInfo> queryBroadcastReceivers(Intent intent,
3615            @ResolveInfoFlags int flags);
3616
3617    /**
3618     * Retrieve all receivers that can handle a broadcast of the given intent, for a specific
3619     * user.
3620     *
3621     * @param intent The desired intent as per resolveActivity().
3622     * @param flags Additional option flags. Use any combination of
3623     *         {@link #GET_META_DATA}, {@link #GET_RESOLVED_FILTER},
3624     *         {@link #GET_SHARED_LIBRARY_FILES}, {@link #MATCH_ALL},
3625     *         {@link #MATCH_DISABLED_COMPONENTS}, {@link #MATCH_DISABLED_UNTIL_USED_COMPONENTS},
3626     *         {@link #MATCH_DEFAULT_ONLY}, {@link #MATCH_ENCRYPTION_AWARE},
3627     *         {@link #MATCH_ENCRYPTION_AWARE_AND_UNAWARE}, {@link #MATCH_ENCRYPTION_UNAWARE},
3628     *         {@link #MATCH_SYSTEM_ONLY}, {@link #MATCH_UNINSTALLED_PACKAGES}
3629     *         to modify the data returned.
3630     * @param userId The userId of the user being queried.
3631     *
3632     * @return Returns a List of ResolveInfo objects containing one entry for each
3633     *         matching receiver, ordered from best to worst. If there are no matching
3634     *         receivers, an empty list or null is returned.
3635     *
3636     * @see #GET_META_DATA
3637     * @see #GET_RESOLVED_FILTER
3638     * @see #GET_SHARED_LIBRARY_FILES
3639     * @see #MATCH_ALL
3640     * @see #MATCH_DISABLED_COMPONENTS
3641     * @see #MATCH_DISABLED_UNTIL_USED_COMPONENTS
3642     * @see #MATCH_DEFAULT_ONLY
3643     * @see #MATCH_ENCRYPTION_AWARE
3644     * @see #MATCH_ENCRYPTION_AWARE_AND_UNAWARE
3645     * @see #MATCH_ENCRYPTION_UNAWARE
3646     * @see #MATCH_SYSTEM_ONLY
3647     * @see #MATCH_UNINSTALLED_PACKAGES
3648     *
3649     * @hide
3650     */
3651    public abstract List<ResolveInfo> queryBroadcastReceiversAsUser(Intent intent,
3652            @ResolveInfoFlags int flags, @UserIdInt int userId);
3653
3654    /** {@hide} */
3655    @Deprecated
3656    public List<ResolveInfo> queryBroadcastReceivers(Intent intent,
3657            @ResolveInfoFlags int flags, @UserIdInt int userId) {
3658        Log.w(TAG, "STAHP USING HIDDEN APIS KTHX");
3659        return queryBroadcastReceiversAsUser(intent, flags, userId);
3660    }
3661
3662    /**
3663     * Determine the best service to handle for a given Intent.
3664     *
3665     * @param intent An intent containing all of the desired specification
3666     *               (action, data, type, category, and/or component).
3667     * @param flags Additional option flags. Use any combination of
3668     *         {@link #GET_META_DATA}, {@link #GET_RESOLVED_FILTER},
3669     *         {@link #GET_SHARED_LIBRARY_FILES}, {@link #MATCH_ALL},
3670     *         {@link #MATCH_DISABLED_COMPONENTS}, {@link #MATCH_DISABLED_UNTIL_USED_COMPONENTS},
3671     *         {@link #MATCH_DEFAULT_ONLY}, {@link #MATCH_ENCRYPTION_AWARE},
3672     *         {@link #MATCH_ENCRYPTION_AWARE_AND_UNAWARE}, {@link #MATCH_ENCRYPTION_UNAWARE},
3673     *         {@link #MATCH_SYSTEM_ONLY}, {@link #MATCH_UNINSTALLED_PACKAGES}
3674     *         to modify the data returned.
3675     *
3676     * @return Returns a ResolveInfo object containing the final service intent
3677     *         that was determined to be the best action.  Returns null if no
3678     *         matching service was found.
3679     *
3680     * @see #GET_META_DATA
3681     * @see #GET_RESOLVED_FILTER
3682     * @see #GET_SHARED_LIBRARY_FILES
3683     * @see #MATCH_ALL
3684     * @see #MATCH_DISABLED_COMPONENTS
3685     * @see #MATCH_DISABLED_UNTIL_USED_COMPONENTS
3686     * @see #MATCH_DEFAULT_ONLY
3687     * @see #MATCH_ENCRYPTION_AWARE
3688     * @see #MATCH_ENCRYPTION_AWARE_AND_UNAWARE
3689     * @see #MATCH_ENCRYPTION_UNAWARE
3690     * @see #MATCH_SYSTEM_ONLY
3691     * @see #MATCH_UNINSTALLED_PACKAGES
3692     */
3693    public abstract ResolveInfo resolveService(Intent intent, @ResolveInfoFlags int flags);
3694
3695    /**
3696     * Retrieve all services that can match the given intent.
3697     *
3698     * @param intent The desired intent as per resolveService().
3699     * @param flags Additional option flags. Use any combination of
3700     *         {@link #GET_META_DATA}, {@link #GET_RESOLVED_FILTER},
3701     *         {@link #GET_SHARED_LIBRARY_FILES}, {@link #MATCH_ALL},
3702     *         {@link #MATCH_DISABLED_COMPONENTS}, {@link #MATCH_DISABLED_UNTIL_USED_COMPONENTS},
3703     *         {@link #MATCH_DEFAULT_ONLY}, {@link #MATCH_ENCRYPTION_AWARE},
3704     *         {@link #MATCH_ENCRYPTION_AWARE_AND_UNAWARE}, {@link #MATCH_ENCRYPTION_UNAWARE},
3705     *         {@link #MATCH_SYSTEM_ONLY}, {@link #MATCH_UNINSTALLED_PACKAGES}
3706     *         to modify the data returned.
3707     *
3708     * @return Returns a List of ResolveInfo objects containing one entry for each
3709     *         matching service, ordered from best to worst. In other words, the first
3710     *         item is what would be returned by {@link #resolveService}. If there are
3711     *         no matching services, an empty list or null is returned.
3712     *
3713     * @see #GET_META_DATA
3714     * @see #GET_RESOLVED_FILTER
3715     * @see #GET_SHARED_LIBRARY_FILES
3716     * @see #MATCH_ALL
3717     * @see #MATCH_DISABLED_COMPONENTS
3718     * @see #MATCH_DISABLED_UNTIL_USED_COMPONENTS
3719     * @see #MATCH_DEFAULT_ONLY
3720     * @see #MATCH_ENCRYPTION_AWARE
3721     * @see #MATCH_ENCRYPTION_AWARE_AND_UNAWARE
3722     * @see #MATCH_ENCRYPTION_UNAWARE
3723     * @see #MATCH_SYSTEM_ONLY
3724     * @see #MATCH_UNINSTALLED_PACKAGES
3725     */
3726    public abstract List<ResolveInfo> queryIntentServices(Intent intent,
3727            @ResolveInfoFlags int flags);
3728
3729    /**
3730     * Retrieve all services that can match the given intent for a given user.
3731     *
3732     * @param intent The desired intent as per resolveService().
3733     * @param flags Additional option flags. Use any combination of
3734     *         {@link #GET_META_DATA}, {@link #GET_RESOLVED_FILTER},
3735     *         {@link #GET_SHARED_LIBRARY_FILES}, {@link #MATCH_ALL},
3736     *         {@link #MATCH_DISABLED_COMPONENTS}, {@link #MATCH_DISABLED_UNTIL_USED_COMPONENTS},
3737     *         {@link #MATCH_DEFAULT_ONLY}, {@link #MATCH_ENCRYPTION_AWARE},
3738     *         {@link #MATCH_ENCRYPTION_AWARE_AND_UNAWARE}, {@link #MATCH_ENCRYPTION_UNAWARE},
3739     *         {@link #MATCH_SYSTEM_ONLY}, {@link #MATCH_UNINSTALLED_PACKAGES}
3740     *         to modify the data returned.
3741     * @param userId The user id.
3742     *
3743     * @return Returns a List of ResolveInfo objects containing one entry for each
3744     *         matching service, ordered from best to worst. In other words, the first
3745     *         item is what would be returned by {@link #resolveService}. If there are
3746     *         no matching services, an empty list or null is returned.
3747     *
3748     * @see #GET_META_DATA
3749     * @see #GET_RESOLVED_FILTER
3750     * @see #GET_SHARED_LIBRARY_FILES
3751     * @see #MATCH_ALL
3752     * @see #MATCH_DISABLED_COMPONENTS
3753     * @see #MATCH_DISABLED_UNTIL_USED_COMPONENTS
3754     * @see #MATCH_DEFAULT_ONLY
3755     * @see #MATCH_ENCRYPTION_AWARE
3756     * @see #MATCH_ENCRYPTION_AWARE_AND_UNAWARE
3757     * @see #MATCH_ENCRYPTION_UNAWARE
3758     * @see #MATCH_SYSTEM_ONLY
3759     * @see #MATCH_UNINSTALLED_PACKAGES
3760     *
3761     * @hide
3762     */
3763    public abstract List<ResolveInfo> queryIntentServicesAsUser(Intent intent,
3764            @ResolveInfoFlags int flags, @UserIdInt int userId);
3765
3766    /**
3767     * Retrieve all providers that can match the given intent.
3768     *
3769     * @param intent An intent containing all of the desired specification
3770     *            (action, data, type, category, and/or component).
3771     * @param flags Additional option flags. Use any combination of
3772     *         {@link #GET_META_DATA}, {@link #GET_RESOLVED_FILTER},
3773     *         {@link #GET_SHARED_LIBRARY_FILES}, {@link #MATCH_ALL},
3774     *         {@link #MATCH_DISABLED_COMPONENTS}, {@link #MATCH_DISABLED_UNTIL_USED_COMPONENTS},
3775     *         {@link #MATCH_DEFAULT_ONLY}, {@link #MATCH_ENCRYPTION_AWARE},
3776     *         {@link #MATCH_ENCRYPTION_AWARE_AND_UNAWARE}, {@link #MATCH_ENCRYPTION_UNAWARE},
3777     *         {@link #MATCH_SYSTEM_ONLY}, {@link #MATCH_UNINSTALLED_PACKAGES}
3778     *         to modify the data returned.
3779     * @param userId The user id.
3780     *
3781     * @return Returns a List of ResolveInfo objects containing one entry for each
3782     *         matching provider, ordered from best to worst. If there are no
3783     *         matching services, an empty list or null is returned.
3784     *
3785     * @see #GET_META_DATA
3786     * @see #GET_RESOLVED_FILTER
3787     * @see #GET_SHARED_LIBRARY_FILES
3788     * @see #MATCH_ALL
3789     * @see #MATCH_DISABLED_COMPONENTS
3790     * @see #MATCH_DISABLED_UNTIL_USED_COMPONENTS
3791     * @see #MATCH_DEFAULT_ONLY
3792     * @see #MATCH_ENCRYPTION_AWARE
3793     * @see #MATCH_ENCRYPTION_AWARE_AND_UNAWARE
3794     * @see #MATCH_ENCRYPTION_UNAWARE
3795     * @see #MATCH_SYSTEM_ONLY
3796     * @see #MATCH_UNINSTALLED_PACKAGES
3797     *
3798     * @hide
3799     */
3800    public abstract List<ResolveInfo> queryIntentContentProvidersAsUser(
3801            Intent intent, @ResolveInfoFlags int flags, @UserIdInt int userId);
3802
3803    /**
3804     * Retrieve all providers that can match the given intent.
3805     *
3806     * @param intent An intent containing all of the desired specification
3807     *            (action, data, type, category, and/or component).
3808     * @param flags Additional option flags. Use any combination of
3809     *         {@link #GET_META_DATA}, {@link #GET_RESOLVED_FILTER},
3810     *         {@link #GET_SHARED_LIBRARY_FILES}, {@link #MATCH_ALL},
3811     *         {@link #MATCH_DISABLED_COMPONENTS}, {@link #MATCH_DISABLED_UNTIL_USED_COMPONENTS},
3812     *         {@link #MATCH_DEFAULT_ONLY}, {@link #MATCH_ENCRYPTION_AWARE},
3813     *         {@link #MATCH_ENCRYPTION_AWARE_AND_UNAWARE}, {@link #MATCH_ENCRYPTION_UNAWARE},
3814     *         {@link #MATCH_SYSTEM_ONLY}, {@link #MATCH_UNINSTALLED_PACKAGES}
3815     *         to modify the data returned.
3816     *
3817     * @return Returns a List of ResolveInfo objects containing one entry for each
3818     *         matching provider, ordered from best to worst. If there are no
3819     *         matching services, an empty list or null is returned.
3820     *
3821     * @see #GET_META_DATA
3822     * @see #GET_RESOLVED_FILTER
3823     * @see #GET_SHARED_LIBRARY_FILES
3824     * @see #MATCH_ALL
3825     * @see #MATCH_DISABLED_COMPONENTS
3826     * @see #MATCH_DISABLED_UNTIL_USED_COMPONENTS
3827     * @see #MATCH_DEFAULT_ONLY
3828     * @see #MATCH_ENCRYPTION_AWARE
3829     * @see #MATCH_ENCRYPTION_AWARE_AND_UNAWARE
3830     * @see #MATCH_ENCRYPTION_UNAWARE
3831     * @see #MATCH_SYSTEM_ONLY
3832     * @see #MATCH_UNINSTALLED_PACKAGES
3833     */
3834    public abstract List<ResolveInfo> queryIntentContentProviders(Intent intent,
3835            @ResolveInfoFlags int flags);
3836
3837    /**
3838     * Find a single content provider by its base path name.
3839     *
3840     * @param name The name of the provider to find.
3841     * @param flags Additional option flags. Use any combination of
3842     *         {@link #GET_META_DATA}, {@link #GET_SHARED_LIBRARY_FILES},
3843     *         {@link #MATCH_ALL}, {@link #MATCH_DEFAULT_ONLY},
3844     *         {@link #MATCH_DISABLED_COMPONENTS},  {@link #MATCH_DISABLED_UNTIL_USED_COMPONENTS},
3845     *         {@link #MATCH_ENCRYPTION_AWARE}, {@link #MATCH_ENCRYPTION_AWARE_AND_UNAWARE},
3846     *         {@link #MATCH_ENCRYPTION_UNAWARE}, {@link #MATCH_SYSTEM_ONLY}
3847     *         {@link #MATCH_UNINSTALLED_PACKAGES}
3848     *         to modify the data returned.
3849     *
3850     * @return A {@link ProviderInfo} object containing information about the provider.
3851     *         If a provider was not found, returns null.
3852     *
3853     * @see #GET_META_DATA
3854     * @see #GET_SHARED_LIBRARY_FILES
3855     * @see #MATCH_ALL
3856     * @see #MATCH_DEBUG_TRIAGED_MISSING
3857     * @see #MATCH_DEFAULT_ONLY
3858     * @see #MATCH_DISABLED_COMPONENTS
3859     * @see #MATCH_DISABLED_UNTIL_USED_COMPONENTS
3860     * @see #MATCH_ENCRYPTION_AWARE
3861     * @see #MATCH_ENCRYPTION_AWARE_AND_UNAWARE
3862     * @see #MATCH_ENCRYPTION_UNAWARE
3863     * @see #MATCH_SYSTEM_ONLY
3864     * @see #MATCH_UNINSTALLED_PACKAGES
3865     */
3866    public abstract ProviderInfo resolveContentProvider(String name,
3867            @ComponentInfoFlags int flags);
3868
3869    /**
3870     * Find a single content provider by its base path name.
3871     *
3872     * @param name The name of the provider to find.
3873     * @param flags Additional option flags. Use any combination of
3874     *         {@link #GET_META_DATA}, {@link #GET_SHARED_LIBRARY_FILES},
3875     *         {@link #MATCH_ALL}, {@link #MATCH_DEFAULT_ONLY},
3876     *         {@link #MATCH_DISABLED_COMPONENTS},  {@link #MATCH_DISABLED_UNTIL_USED_COMPONENTS},
3877     *         {@link #MATCH_ENCRYPTION_AWARE}, {@link #MATCH_ENCRYPTION_AWARE_AND_UNAWARE},
3878     *         {@link #MATCH_ENCRYPTION_UNAWARE}, {@link #MATCH_SYSTEM_ONLY}
3879     *         {@link #MATCH_UNINSTALLED_PACKAGES}
3880     *         to modify the data returned.
3881     * @param userId The user id.
3882     *
3883     * @return A {@link ProviderInfo} object containing information about the provider.
3884     *         If a provider was not found, returns null.
3885     *
3886     * @see #GET_META_DATA
3887     * @see #GET_SHARED_LIBRARY_FILES
3888     * @see #MATCH_ALL
3889     * @see #MATCH_DEBUG_TRIAGED_MISSING
3890     * @see #MATCH_DEFAULT_ONLY
3891     * @see #MATCH_DISABLED_COMPONENTS
3892     * @see #MATCH_DISABLED_UNTIL_USED_COMPONENTS
3893     * @see #MATCH_ENCRYPTION_AWARE
3894     * @see #MATCH_ENCRYPTION_AWARE_AND_UNAWARE
3895     * @see #MATCH_ENCRYPTION_UNAWARE
3896     * @see #MATCH_SYSTEM_ONLY
3897     * @see #MATCH_UNINSTALLED_PACKAGES
3898     *
3899     * @hide
3900     */
3901    public abstract ProviderInfo resolveContentProviderAsUser(String name,
3902            @ComponentInfoFlags int flags, @UserIdInt int userId);
3903
3904    /**
3905     * Retrieve content provider information.
3906     *
3907     * <p><em>Note: unlike most other methods, an empty result set is indicated
3908     * by a null return instead of an empty list.</em>
3909     *
3910     * @param processName If non-null, limits the returned providers to only
3911     *                    those that are hosted by the given process.  If null,
3912     *                    all content providers are returned.
3913     * @param uid If <var>processName</var> is non-null, this is the required
3914     *        uid owning the requested content providers.
3915     * @param flags Additional option flags. Use any combination of
3916     *         {@link #GET_META_DATA}, {@link #GET_SHARED_LIBRARY_FILES},
3917     *         {@link #MATCH_ALL}, {@link #MATCH_DEFAULT_ONLY},
3918     *         {@link #MATCH_DISABLED_COMPONENTS},  {@link #MATCH_DISABLED_UNTIL_USED_COMPONENTS},
3919     *         {@link #MATCH_ENCRYPTION_AWARE}, {@link #MATCH_ENCRYPTION_AWARE_AND_UNAWARE},
3920     *         {@link #MATCH_ENCRYPTION_UNAWARE}, {@link #MATCH_SYSTEM_ONLY}
3921     *         {@link #MATCH_UNINSTALLED_PACKAGES}
3922     *         to modify the data returned.
3923     *
3924     * @return A list of {@link ProviderInfo} objects containing one entry for
3925     *         each provider either matching <var>processName</var> or, if
3926     *         <var>processName</var> is null, all known content providers.
3927     *         <em>If there are no matching providers, null is returned.</em>
3928     *
3929     * @see #GET_META_DATA
3930     * @see #GET_SHARED_LIBRARY_FILES
3931     * @see #MATCH_ALL
3932     * @see #MATCH_DEBUG_TRIAGED_MISSING
3933     * @see #MATCH_DEFAULT_ONLY
3934     * @see #MATCH_DISABLED_COMPONENTS
3935     * @see #MATCH_DISABLED_UNTIL_USED_COMPONENTS
3936     * @see #MATCH_ENCRYPTION_AWARE
3937     * @see #MATCH_ENCRYPTION_AWARE_AND_UNAWARE
3938     * @see #MATCH_ENCRYPTION_UNAWARE
3939     * @see #MATCH_SYSTEM_ONLY
3940     * @see #MATCH_UNINSTALLED_PACKAGES
3941     */
3942    public abstract List<ProviderInfo> queryContentProviders(
3943            String processName, int uid, @ComponentInfoFlags int flags);
3944
3945    /**
3946     * Retrieve all of the information we know about a particular
3947     * instrumentation class.
3948     *
3949     * @param className The full name (i.e.
3950     *                  com.google.apps.contacts.InstrumentList) of an
3951     *                  Instrumentation class.
3952     * @param flags Additional option flags. Use any combination of
3953     *         {@link #GET_META_DATA}
3954     *         to modify the data returned.
3955     *
3956     * @return An {@link InstrumentationInfo} object containing information about the
3957     *         instrumentation.
3958     * @throws NameNotFoundException if a package with the given name cannot be
3959     *             found on the system.
3960     *
3961     * @see #GET_META_DATA
3962     */
3963    public abstract InstrumentationInfo getInstrumentationInfo(ComponentName className,
3964            @InstrumentationInfoFlags int flags) throws NameNotFoundException;
3965
3966    /**
3967     * Retrieve information about available instrumentation code.  May be used
3968     * to retrieve either all instrumentation code, or only the code targeting
3969     * a particular package.
3970     *
3971     * @param targetPackage If null, all instrumentation is returned; only the
3972     *                      instrumentation targeting this package name is
3973     *                      returned.
3974     * @param flags Additional option flags. Use any combination of
3975     *         {@link #GET_META_DATA}
3976     *         to modify the data returned.
3977     *
3978     * @return A list of {@link InstrumentationInfo} objects containing one
3979     *         entry for each matching instrumentation. If there are no
3980     *         instrumentation available, returns and empty list.
3981     *
3982     * @see #GET_META_DATA
3983     */
3984    public abstract List<InstrumentationInfo> queryInstrumentation(String targetPackage,
3985            @InstrumentationInfoFlags int flags);
3986
3987    /**
3988     * Retrieve an image from a package.  This is a low-level API used by
3989     * the various package manager info structures (such as
3990     * {@link ComponentInfo} to implement retrieval of their associated
3991     * icon.
3992     *
3993     * @param packageName The name of the package that this icon is coming from.
3994     * Cannot be null.
3995     * @param resid The resource identifier of the desired image.  Cannot be 0.
3996     * @param appInfo Overall information about <var>packageName</var>.  This
3997     * may be null, in which case the application information will be retrieved
3998     * for you if needed; if you already have this information around, it can
3999     * be much more efficient to supply it here.
4000     *
4001     * @return Returns a Drawable holding the requested image.  Returns null if
4002     * an image could not be found for any reason.
4003     */
4004    public abstract Drawable getDrawable(String packageName, @DrawableRes int resid,
4005            ApplicationInfo appInfo);
4006
4007    /**
4008     * Retrieve the icon associated with an activity.  Given the full name of
4009     * an activity, retrieves the information about it and calls
4010     * {@link ComponentInfo#loadIcon ComponentInfo.loadIcon()} to return its icon.
4011     * If the activity cannot be found, NameNotFoundException is thrown.
4012     *
4013     * @param activityName Name of the activity whose icon is to be retrieved.
4014     *
4015     * @return Returns the image of the icon, or the default activity icon if
4016     * it could not be found.  Does not return null.
4017     * @throws NameNotFoundException Thrown if the resources for the given
4018     * activity could not be loaded.
4019     *
4020     * @see #getActivityIcon(Intent)
4021     */
4022    public abstract Drawable getActivityIcon(ComponentName activityName)
4023            throws NameNotFoundException;
4024
4025    /**
4026     * Retrieve the icon associated with an Intent.  If intent.getClassName() is
4027     * set, this simply returns the result of
4028     * getActivityIcon(intent.getClassName()).  Otherwise it resolves the intent's
4029     * component and returns the icon associated with the resolved component.
4030     * If intent.getClassName() cannot be found or the Intent cannot be resolved
4031     * to a component, NameNotFoundException is thrown.
4032     *
4033     * @param intent The intent for which you would like to retrieve an icon.
4034     *
4035     * @return Returns the image of the icon, or the default activity icon if
4036     * it could not be found.  Does not return null.
4037     * @throws NameNotFoundException Thrown if the resources for application
4038     * matching the given intent could not be loaded.
4039     *
4040     * @see #getActivityIcon(ComponentName)
4041     */
4042    public abstract Drawable getActivityIcon(Intent intent)
4043            throws NameNotFoundException;
4044
4045    /**
4046     * Retrieve the banner associated with an activity. Given the full name of
4047     * an activity, retrieves the information about it and calls
4048     * {@link ComponentInfo#loadIcon ComponentInfo.loadIcon()} to return its
4049     * banner. If the activity cannot be found, NameNotFoundException is thrown.
4050     *
4051     * @param activityName Name of the activity whose banner is to be retrieved.
4052     * @return Returns the image of the banner, or null if the activity has no
4053     *         banner specified.
4054     * @throws NameNotFoundException Thrown if the resources for the given
4055     *             activity could not be loaded.
4056     * @see #getActivityBanner(Intent)
4057     */
4058    public abstract Drawable getActivityBanner(ComponentName activityName)
4059            throws NameNotFoundException;
4060
4061    /**
4062     * Retrieve the banner associated with an Intent. If intent.getClassName()
4063     * is set, this simply returns the result of
4064     * getActivityBanner(intent.getClassName()). Otherwise it resolves the
4065     * intent's component and returns the banner associated with the resolved
4066     * component. If intent.getClassName() cannot be found or the Intent cannot
4067     * be resolved to a component, NameNotFoundException is thrown.
4068     *
4069     * @param intent The intent for which you would like to retrieve a banner.
4070     * @return Returns the image of the banner, or null if the activity has no
4071     *         banner specified.
4072     * @throws NameNotFoundException Thrown if the resources for application
4073     *             matching the given intent could not be loaded.
4074     * @see #getActivityBanner(ComponentName)
4075     */
4076    public abstract Drawable getActivityBanner(Intent intent)
4077            throws NameNotFoundException;
4078
4079    /**
4080     * Return the generic icon for an activity that is used when no specific
4081     * icon is defined.
4082     *
4083     * @return Drawable Image of the icon.
4084     */
4085    public abstract Drawable getDefaultActivityIcon();
4086
4087    /**
4088     * Retrieve the icon associated with an application.  If it has not defined
4089     * an icon, the default app icon is returned.  Does not return null.
4090     *
4091     * @param info Information about application being queried.
4092     *
4093     * @return Returns the image of the icon, or the default application icon
4094     * if it could not be found.
4095     *
4096     * @see #getApplicationIcon(String)
4097     */
4098    public abstract Drawable getApplicationIcon(ApplicationInfo info);
4099
4100    /**
4101     * Retrieve the icon associated with an application.  Given the name of the
4102     * application's package, retrieves the information about it and calls
4103     * getApplicationIcon() to return its icon. If the application cannot be
4104     * found, NameNotFoundException is thrown.
4105     *
4106     * @param packageName Name of the package whose application icon is to be
4107     *                    retrieved.
4108     *
4109     * @return Returns the image of the icon, or the default application icon
4110     * if it could not be found.  Does not return null.
4111     * @throws NameNotFoundException Thrown if the resources for the given
4112     * application could not be loaded.
4113     *
4114     * @see #getApplicationIcon(ApplicationInfo)
4115     */
4116    public abstract Drawable getApplicationIcon(String packageName)
4117            throws NameNotFoundException;
4118
4119    /**
4120     * Retrieve the banner associated with an application.
4121     *
4122     * @param info Information about application being queried.
4123     * @return Returns the image of the banner or null if the application has no
4124     *         banner specified.
4125     * @see #getApplicationBanner(String)
4126     */
4127    public abstract Drawable getApplicationBanner(ApplicationInfo info);
4128
4129    /**
4130     * Retrieve the banner associated with an application. Given the name of the
4131     * application's package, retrieves the information about it and calls
4132     * getApplicationIcon() to return its banner. If the application cannot be
4133     * found, NameNotFoundException is thrown.
4134     *
4135     * @param packageName Name of the package whose application banner is to be
4136     *            retrieved.
4137     * @return Returns the image of the banner or null if the application has no
4138     *         banner specified.
4139     * @throws NameNotFoundException Thrown if the resources for the given
4140     *             application could not be loaded.
4141     * @see #getApplicationBanner(ApplicationInfo)
4142     */
4143    public abstract Drawable getApplicationBanner(String packageName)
4144            throws NameNotFoundException;
4145
4146    /**
4147     * Retrieve the logo associated with an activity. Given the full name of an
4148     * activity, retrieves the information about it and calls
4149     * {@link ComponentInfo#loadLogo ComponentInfo.loadLogo()} to return its
4150     * logo. If the activity cannot be found, NameNotFoundException is thrown.
4151     *
4152     * @param activityName Name of the activity whose logo is to be retrieved.
4153     * @return Returns the image of the logo or null if the activity has no logo
4154     *         specified.
4155     * @throws NameNotFoundException Thrown if the resources for the given
4156     *             activity could not be loaded.
4157     * @see #getActivityLogo(Intent)
4158     */
4159    public abstract Drawable getActivityLogo(ComponentName activityName)
4160            throws NameNotFoundException;
4161
4162    /**
4163     * Retrieve the logo associated with an Intent.  If intent.getClassName() is
4164     * set, this simply returns the result of
4165     * getActivityLogo(intent.getClassName()).  Otherwise it resolves the intent's
4166     * component and returns the logo associated with the resolved component.
4167     * If intent.getClassName() cannot be found or the Intent cannot be resolved
4168     * to a component, NameNotFoundException is thrown.
4169     *
4170     * @param intent The intent for which you would like to retrieve a logo.
4171     *
4172     * @return Returns the image of the logo, or null if the activity has no
4173     * logo specified.
4174     *
4175     * @throws NameNotFoundException Thrown if the resources for application
4176     * matching the given intent could not be loaded.
4177     *
4178     * @see #getActivityLogo(ComponentName)
4179     */
4180    public abstract Drawable getActivityLogo(Intent intent)
4181            throws NameNotFoundException;
4182
4183    /**
4184     * Retrieve the logo associated with an application.  If it has not specified
4185     * a logo, this method returns null.
4186     *
4187     * @param info Information about application being queried.
4188     *
4189     * @return Returns the image of the logo, or null if no logo is specified
4190     * by the application.
4191     *
4192     * @see #getApplicationLogo(String)
4193     */
4194    public abstract Drawable getApplicationLogo(ApplicationInfo info);
4195
4196    /**
4197     * Retrieve the logo associated with an application.  Given the name of the
4198     * application's package, retrieves the information about it and calls
4199     * getApplicationLogo() to return its logo. If the application cannot be
4200     * found, NameNotFoundException is thrown.
4201     *
4202     * @param packageName Name of the package whose application logo is to be
4203     *                    retrieved.
4204     *
4205     * @return Returns the image of the logo, or null if no application logo
4206     * has been specified.
4207     *
4208     * @throws NameNotFoundException Thrown if the resources for the given
4209     * application could not be loaded.
4210     *
4211     * @see #getApplicationLogo(ApplicationInfo)
4212     */
4213    public abstract Drawable getApplicationLogo(String packageName)
4214            throws NameNotFoundException;
4215
4216    /**
4217     * If the target user is a managed profile of the calling user or if the
4218     * target user is the caller and is itself a managed profile, then this
4219     * returns a badged copy of the given icon to be able to distinguish it from
4220     * the original icon. For badging an arbitrary drawable use
4221     * {@link #getUserBadgedDrawableForDensity(
4222     * android.graphics.drawable.Drawable, UserHandle, android.graphics.Rect, int)}.
4223     * <p>
4224     * If the original drawable is a BitmapDrawable and the backing bitmap is
4225     * mutable as per {@link android.graphics.Bitmap#isMutable()}, the badging
4226     * is performed in place and the original drawable is returned.
4227     * </p>
4228     *
4229     * @param icon The icon to badge.
4230     * @param user The target user.
4231     * @return A drawable that combines the original icon and a badge as
4232     *         determined by the system.
4233     */
4234    public abstract Drawable getUserBadgedIcon(Drawable icon, UserHandle user);
4235
4236    /**
4237     * If the target user is a managed profile of the calling user or the caller
4238     * is itself a managed profile, then this returns a badged copy of the given
4239     * drawable allowing the user to distinguish it from the original drawable.
4240     * The caller can specify the location in the bounds of the drawable to be
4241     * badged where the badge should be applied as well as the density of the
4242     * badge to be used.
4243     * <p>
4244     * If the original drawable is a BitmapDrawable and the backing bitmap is
4245     * mutable as per {@link android.graphics.Bitmap#isMutable()}, the bading
4246     * is performed in place and the original drawable is returned.
4247     * </p>
4248     *
4249     * @param drawable The drawable to badge.
4250     * @param user The target user.
4251     * @param badgeLocation Where in the bounds of the badged drawable to place
4252     *         the badge. If not provided, the badge is applied on top of the entire
4253     *         drawable being badged.
4254     * @param badgeDensity The optional desired density for the badge as per
4255     *         {@link android.util.DisplayMetrics#densityDpi}. If not provided,
4256     *         the density of the display is used.
4257     * @return A drawable that combines the original drawable and a badge as
4258     *         determined by the system.
4259     */
4260    public abstract Drawable getUserBadgedDrawableForDensity(Drawable drawable,
4261            UserHandle user, Rect badgeLocation, int badgeDensity);
4262
4263    /**
4264     * If the target user is a managed profile of the calling user or the caller
4265     * is itself a managed profile, then this returns a drawable to use as a small
4266     * icon to include in a view to distinguish it from the original icon.
4267     *
4268     * @param user The target user.
4269     * @param density The optional desired density for the badge as per
4270     *         {@link android.util.DisplayMetrics#densityDpi}. If not provided
4271     *         the density of the current display is used.
4272     * @return the drawable or null if no drawable is required.
4273     * @hide
4274     */
4275    public abstract Drawable getUserBadgeForDensity(UserHandle user, int density);
4276
4277    /**
4278     * If the target user is a managed profile of the calling user or the caller
4279     * is itself a managed profile, then this returns a drawable to use as a small
4280     * icon to include in a view to distinguish it from the original icon. This version
4281     * doesn't have background protection and should be used over a light background instead of
4282     * a badge.
4283     *
4284     * @param user The target user.
4285     * @param density The optional desired density for the badge as per
4286     *         {@link android.util.DisplayMetrics#densityDpi}. If not provided
4287     *         the density of the current display is used.
4288     * @return the drawable or null if no drawable is required.
4289     * @hide
4290     */
4291    public abstract Drawable getUserBadgeForDensityNoBackground(UserHandle user, int density);
4292
4293    /**
4294     * If the target user is a managed profile of the calling user or the caller
4295     * is itself a managed profile, then this returns a copy of the label with
4296     * badging for accessibility services like talkback. E.g. passing in "Email"
4297     * and it might return "Work Email" for Email in the work profile.
4298     *
4299     * @param label The label to change.
4300     * @param user The target user.
4301     * @return A label that combines the original label and a badge as
4302     *         determined by the system.
4303     */
4304    public abstract CharSequence getUserBadgedLabel(CharSequence label, UserHandle user);
4305
4306    /**
4307     * Retrieve text from a package.  This is a low-level API used by
4308     * the various package manager info structures (such as
4309     * {@link ComponentInfo} to implement retrieval of their associated
4310     * labels and other text.
4311     *
4312     * @param packageName The name of the package that this text is coming from.
4313     * Cannot be null.
4314     * @param resid The resource identifier of the desired text.  Cannot be 0.
4315     * @param appInfo Overall information about <var>packageName</var>.  This
4316     * may be null, in which case the application information will be retrieved
4317     * for you if needed; if you already have this information around, it can
4318     * be much more efficient to supply it here.
4319     *
4320     * @return Returns a CharSequence holding the requested text.  Returns null
4321     * if the text could not be found for any reason.
4322     */
4323    public abstract CharSequence getText(String packageName, @StringRes int resid,
4324            ApplicationInfo appInfo);
4325
4326    /**
4327     * Retrieve an XML file from a package.  This is a low-level API used to
4328     * retrieve XML meta data.
4329     *
4330     * @param packageName The name of the package that this xml is coming from.
4331     * Cannot be null.
4332     * @param resid The resource identifier of the desired xml.  Cannot be 0.
4333     * @param appInfo Overall information about <var>packageName</var>.  This
4334     * may be null, in which case the application information will be retrieved
4335     * for you if needed; if you already have this information around, it can
4336     * be much more efficient to supply it here.
4337     *
4338     * @return Returns an XmlPullParser allowing you to parse out the XML
4339     * data.  Returns null if the xml resource could not be found for any
4340     * reason.
4341     */
4342    public abstract XmlResourceParser getXml(String packageName, @XmlRes int resid,
4343            ApplicationInfo appInfo);
4344
4345    /**
4346     * Return the label to use for this application.
4347     *
4348     * @return Returns the label associated with this application, or null if
4349     * it could not be found for any reason.
4350     * @param info The application to get the label of.
4351     */
4352    public abstract CharSequence getApplicationLabel(ApplicationInfo info);
4353
4354    /**
4355     * Retrieve the resources associated with an activity.  Given the full
4356     * name of an activity, retrieves the information about it and calls
4357     * getResources() to return its application's resources.  If the activity
4358     * cannot be found, NameNotFoundException is thrown.
4359     *
4360     * @param activityName Name of the activity whose resources are to be
4361     *                     retrieved.
4362     *
4363     * @return Returns the application's Resources.
4364     * @throws NameNotFoundException Thrown if the resources for the given
4365     * application could not be loaded.
4366     *
4367     * @see #getResourcesForApplication(ApplicationInfo)
4368     */
4369    public abstract Resources getResourcesForActivity(ComponentName activityName)
4370            throws NameNotFoundException;
4371
4372    /**
4373     * Retrieve the resources for an application.  Throws NameNotFoundException
4374     * if the package is no longer installed.
4375     *
4376     * @param app Information about the desired application.
4377     *
4378     * @return Returns the application's Resources.
4379     * @throws NameNotFoundException Thrown if the resources for the given
4380     * application could not be loaded (most likely because it was uninstalled).
4381     */
4382    public abstract Resources getResourcesForApplication(ApplicationInfo app)
4383            throws NameNotFoundException;
4384
4385    /**
4386     * Retrieve the resources associated with an application.  Given the full
4387     * package name of an application, retrieves the information about it and
4388     * calls getResources() to return its application's resources.  If the
4389     * appPackageName cannot be found, NameNotFoundException is thrown.
4390     *
4391     * @param appPackageName Package name of the application whose resources
4392     *                       are to be retrieved.
4393     *
4394     * @return Returns the application's Resources.
4395     * @throws NameNotFoundException Thrown if the resources for the given
4396     * application could not be loaded.
4397     *
4398     * @see #getResourcesForApplication(ApplicationInfo)
4399     */
4400    public abstract Resources getResourcesForApplication(String appPackageName)
4401            throws NameNotFoundException;
4402
4403    /** @hide */
4404    public abstract Resources getResourcesForApplicationAsUser(String appPackageName,
4405            @UserIdInt int userId) throws NameNotFoundException;
4406
4407    /**
4408     * Retrieve overall information about an application package defined
4409     * in a package archive file
4410     *
4411     * @param archiveFilePath The path to the archive file
4412     * @param flags Additional option flags. Use any combination of
4413     *         {@link #GET_ACTIVITIES}, {@link #GET_CONFIGURATIONS},
4414     *         {@link #GET_GIDS}, {@link #GET_INSTRUMENTATION},
4415     *         {@link #GET_INTENT_FILTERS}, {@link #GET_META_DATA},
4416     *         {@link #GET_PERMISSIONS}, {@link #GET_PROVIDERS},
4417     *         {@link #GET_RECEIVERS}, {@link #GET_SERVICES},
4418     *         {@link #GET_SHARED_LIBRARY_FILES}, {@link #GET_SIGNATURES},
4419     *         {@link #GET_URI_PERMISSION_PATTERNS}, {@link #GET_UNINSTALLED_PACKAGES},
4420     *         {@link #MATCH_DISABLED_COMPONENTS}, {@link #MATCH_DISABLED_UNTIL_USED_COMPONENTS},
4421     *         {@link #MATCH_UNINSTALLED_PACKAGES}
4422     *         to modify the data returned.
4423     *
4424     * @return A PackageInfo object containing information about the
4425     *         package archive. If the package could not be parsed,
4426     *         returns null.
4427     *
4428     * @see #GET_ACTIVITIES
4429     * @see #GET_CONFIGURATIONS
4430     * @see #GET_GIDS
4431     * @see #GET_INSTRUMENTATION
4432     * @see #GET_INTENT_FILTERS
4433     * @see #GET_META_DATA
4434     * @see #GET_PERMISSIONS
4435     * @see #GET_PROVIDERS
4436     * @see #GET_RECEIVERS
4437     * @see #GET_SERVICES
4438     * @see #GET_SHARED_LIBRARY_FILES
4439     * @see #GET_SIGNATURES
4440     * @see #GET_URI_PERMISSION_PATTERNS
4441     * @see #MATCH_DISABLED_COMPONENTS
4442     * @see #MATCH_DISABLED_UNTIL_USED_COMPONENTS
4443     * @see #MATCH_UNINSTALLED_PACKAGES
4444     *
4445     */
4446    public PackageInfo getPackageArchiveInfo(String archiveFilePath, @PackageInfoFlags int flags) {
4447        final PackageParser parser = new PackageParser();
4448        final File apkFile = new File(archiveFilePath);
4449        try {
4450            if ((flags & (MATCH_ENCRYPTION_UNAWARE | MATCH_ENCRYPTION_AWARE)) != 0) {
4451                // Caller expressed an explicit opinion about what encryption
4452                // aware/unaware components they want to see, so fall through and
4453                // give them what they want
4454            } else {
4455                // Caller expressed no opinion, so match everything
4456                flags |= MATCH_ENCRYPTION_AWARE_AND_UNAWARE;
4457            }
4458
4459            PackageParser.Package pkg = parser.parseMonolithicPackage(apkFile, 0);
4460            if ((flags & GET_SIGNATURES) != 0) {
4461                parser.collectCertificates(pkg, 0);
4462            }
4463            PackageUserState state = new PackageUserState();
4464            return PackageParser.generatePackageInfo(pkg, null, flags, 0, 0, null, state);
4465        } catch (PackageParserException e) {
4466            return null;
4467        }
4468    }
4469
4470    /**
4471     * @deprecated replaced by {@link PackageInstaller}
4472     * @hide
4473     */
4474    @Deprecated
4475    public abstract void installPackage(
4476            Uri packageURI, IPackageInstallObserver observer, @InstallFlags int flags,
4477            String installerPackageName);
4478
4479    /**
4480     * @deprecated replaced by {@link PackageInstaller}
4481     * @hide
4482     */
4483    @Deprecated
4484    public abstract void installPackageWithVerification(Uri packageURI,
4485            IPackageInstallObserver observer, @InstallFlags int flags, String installerPackageName,
4486            Uri verificationURI, ContainerEncryptionParams encryptionParams);
4487
4488    /**
4489     * @deprecated replaced by {@link PackageInstaller}
4490     * @hide
4491     */
4492    @Deprecated
4493    public abstract void installPackageWithVerificationAndEncryption(Uri packageURI,
4494            IPackageInstallObserver observer, @InstallFlags int flags, String installerPackageName,
4495            VerificationParams verificationParams, ContainerEncryptionParams encryptionParams);
4496
4497    /**
4498     * @deprecated replaced by {@link PackageInstaller}
4499     * @hide
4500     */
4501    @Deprecated
4502    public abstract void installPackage(Uri packageURI, PackageInstallObserver observer,
4503            @InstallFlags int flags, String installerPackageName);
4504
4505    /**
4506     * @deprecated replaced by {@link PackageInstaller}
4507     * @hide
4508     */
4509    @Deprecated
4510    public abstract void installPackageAsUser(Uri packageURI, PackageInstallObserver observer,
4511            @InstallFlags int flags, String installerPackageName, @UserIdInt int userId);
4512
4513    /**
4514     * @deprecated replaced by {@link PackageInstaller}
4515     * @hide
4516     */
4517    @Deprecated
4518    public abstract void installPackageWithVerification(Uri packageURI,
4519            PackageInstallObserver observer, @InstallFlags int flags, String installerPackageName,
4520            Uri verificationURI, ContainerEncryptionParams encryptionParams);
4521
4522    /**
4523     * @deprecated replaced by {@link PackageInstaller}
4524     * @hide
4525     */
4526    @Deprecated
4527    public abstract void installPackageWithVerificationAndEncryption(Uri packageURI,
4528            PackageInstallObserver observer, @InstallFlags int flags, String installerPackageName,
4529            VerificationParams verificationParams, ContainerEncryptionParams encryptionParams);
4530
4531    /**
4532     * If there is already an application with the given package name installed
4533     * on the system for other users, also install it for the calling user.
4534     * @hide
4535     */
4536    public abstract int installExistingPackage(String packageName) throws NameNotFoundException;
4537
4538    /**
4539     * If there is already an application with the given package name installed
4540     * on the system for other users, also install it for the specified user.
4541     * @hide
4542     */
4543     @RequiresPermission(anyOf = {
4544            Manifest.permission.INSTALL_PACKAGES,
4545            Manifest.permission.INTERACT_ACROSS_USERS_FULL})
4546    public abstract int installExistingPackageAsUser(String packageName, @UserIdInt int userId)
4547            throws NameNotFoundException;
4548
4549    /**
4550     * Allows a package listening to the
4551     * {@link Intent#ACTION_PACKAGE_NEEDS_VERIFICATION package verification
4552     * broadcast} to respond to the package manager. The response must include
4553     * the {@code verificationCode} which is one of
4554     * {@link PackageManager#VERIFICATION_ALLOW} or
4555     * {@link PackageManager#VERIFICATION_REJECT}.
4556     *
4557     * @param id pending package identifier as passed via the
4558     *            {@link PackageManager#EXTRA_VERIFICATION_ID} Intent extra.
4559     * @param verificationCode either {@link PackageManager#VERIFICATION_ALLOW}
4560     *            or {@link PackageManager#VERIFICATION_REJECT}.
4561     * @throws SecurityException if the caller does not have the
4562     *            PACKAGE_VERIFICATION_AGENT permission.
4563     */
4564    public abstract void verifyPendingInstall(int id, int verificationCode);
4565
4566    /**
4567     * Allows a package listening to the
4568     * {@link Intent#ACTION_PACKAGE_NEEDS_VERIFICATION package verification
4569     * broadcast} to extend the default timeout for a response and declare what
4570     * action to perform after the timeout occurs. The response must include
4571     * the {@code verificationCodeAtTimeout} which is one of
4572     * {@link PackageManager#VERIFICATION_ALLOW} or
4573     * {@link PackageManager#VERIFICATION_REJECT}.
4574     *
4575     * This method may only be called once per package id. Additional calls
4576     * will have no effect.
4577     *
4578     * @param id pending package identifier as passed via the
4579     *            {@link PackageManager#EXTRA_VERIFICATION_ID} Intent extra.
4580     * @param verificationCodeAtTimeout either
4581     *            {@link PackageManager#VERIFICATION_ALLOW} or
4582     *            {@link PackageManager#VERIFICATION_REJECT}. If
4583     *            {@code verificationCodeAtTimeout} is neither
4584     *            {@link PackageManager#VERIFICATION_ALLOW} or
4585     *            {@link PackageManager#VERIFICATION_REJECT}, then
4586     *            {@code verificationCodeAtTimeout} will default to
4587     *            {@link PackageManager#VERIFICATION_REJECT}.
4588     * @param millisecondsToDelay the amount of time requested for the timeout.
4589     *            Must be positive and less than
4590     *            {@link PackageManager#MAXIMUM_VERIFICATION_TIMEOUT}. If
4591     *            {@code millisecondsToDelay} is out of bounds,
4592     *            {@code millisecondsToDelay} will be set to the closest in
4593     *            bounds value; namely, 0 or
4594     *            {@link PackageManager#MAXIMUM_VERIFICATION_TIMEOUT}.
4595     * @throws SecurityException if the caller does not have the
4596     *            PACKAGE_VERIFICATION_AGENT permission.
4597     */
4598    public abstract void extendVerificationTimeout(int id,
4599            int verificationCodeAtTimeout, long millisecondsToDelay);
4600
4601    /**
4602     * Allows a package listening to the
4603     * {@link Intent#ACTION_INTENT_FILTER_NEEDS_VERIFICATION intent filter verification
4604     * broadcast} to respond to the package manager. The response must include
4605     * the {@code verificationCode} which is one of
4606     * {@link PackageManager#INTENT_FILTER_VERIFICATION_SUCCESS} or
4607     * {@link PackageManager#INTENT_FILTER_VERIFICATION_FAILURE}.
4608     *
4609     * @param verificationId pending package identifier as passed via the
4610     *            {@link PackageManager#EXTRA_VERIFICATION_ID} Intent extra.
4611     * @param verificationCode either {@link PackageManager#INTENT_FILTER_VERIFICATION_SUCCESS}
4612     *            or {@link PackageManager#INTENT_FILTER_VERIFICATION_FAILURE}.
4613     * @param outFailedDomains a list of failed domains if the verificationCode is
4614     *            {@link PackageManager#INTENT_FILTER_VERIFICATION_FAILURE}, otherwise null;
4615     * @throws SecurityException if the caller does not have the
4616     *            INTENT_FILTER_VERIFICATION_AGENT permission.
4617     *
4618     * @hide
4619     */
4620    @SystemApi
4621    public abstract void verifyIntentFilter(int verificationId, int verificationCode,
4622            List<String> outFailedDomains);
4623
4624    /**
4625     * Get the status of a Domain Verification Result for an IntentFilter. This is
4626     * related to the {@link android.content.IntentFilter#setAutoVerify(boolean)} and
4627     * {@link android.content.IntentFilter#getAutoVerify()}
4628     *
4629     * This is used by the ResolverActivity to change the status depending on what the User select
4630     * in the Disambiguation Dialog and also used by the Settings App for changing the default App
4631     * for a domain.
4632     *
4633     * @param packageName The package name of the Activity associated with the IntentFilter.
4634     * @param userId The user id.
4635     *
4636     * @return The status to set to. This can be
4637     *              {@link #INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_ASK} or
4638     *              {@link #INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_ALWAYS} or
4639     *              {@link #INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_NEVER} or
4640     *              {@link #INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_UNDEFINED}
4641     *
4642     * @hide
4643     */
4644    public abstract int getIntentVerificationStatusAsUser(String packageName, @UserIdInt int userId);
4645
4646    /**
4647     * Allow to change the status of a Intent Verification status for all IntentFilter of an App.
4648     * This is related to the {@link android.content.IntentFilter#setAutoVerify(boolean)} and
4649     * {@link android.content.IntentFilter#getAutoVerify()}
4650     *
4651     * This is used by the ResolverActivity to change the status depending on what the User select
4652     * in the Disambiguation Dialog and also used by the Settings App for changing the default App
4653     * for a domain.
4654     *
4655     * @param packageName The package name of the Activity associated with the IntentFilter.
4656     * @param status The status to set to. This can be
4657     *              {@link #INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_ASK} or
4658     *              {@link #INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_ALWAYS} or
4659     *              {@link #INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_NEVER}
4660     * @param userId The user id.
4661     *
4662     * @return true if the status has been set. False otherwise.
4663     *
4664     * @hide
4665     */
4666    public abstract boolean updateIntentVerificationStatusAsUser(String packageName, int status,
4667            @UserIdInt int userId);
4668
4669    /**
4670     * Get the list of IntentFilterVerificationInfo for a specific package and User.
4671     *
4672     * @param packageName the package name. When this parameter is set to a non null value,
4673     *                    the results will be filtered by the package name provided.
4674     *                    Otherwise, there will be no filtering and it will return a list
4675     *                    corresponding for all packages
4676     *
4677     * @return a list of IntentFilterVerificationInfo for a specific package.
4678     *
4679     * @hide
4680     */
4681    public abstract List<IntentFilterVerificationInfo> getIntentFilterVerifications(
4682            String packageName);
4683
4684    /**
4685     * Get the list of IntentFilter for a specific package.
4686     *
4687     * @param packageName the package name. This parameter is set to a non null value,
4688     *                    the list will contain all the IntentFilter for that package.
4689     *                    Otherwise, the list will be empty.
4690     *
4691     * @return a list of IntentFilter for a specific package.
4692     *
4693     * @hide
4694     */
4695    public abstract List<IntentFilter> getAllIntentFilters(String packageName);
4696
4697    /**
4698     * Get the default Browser package name for a specific user.
4699     *
4700     * @param userId The user id.
4701     *
4702     * @return the package name of the default Browser for the specified user. If the user id passed
4703     *         is -1 (all users) it will return a null value.
4704     *
4705     * @hide
4706     */
4707    @TestApi
4708    public abstract String getDefaultBrowserPackageNameAsUser(@UserIdInt int userId);
4709
4710    /**
4711     * Set the default Browser package name for a specific user.
4712     *
4713     * @param packageName The package name of the default Browser.
4714     * @param userId The user id.
4715     *
4716     * @return true if the default Browser for the specified user has been set,
4717     *         otherwise return false. If the user id passed is -1 (all users) this call will not
4718     *         do anything and just return false.
4719     *
4720     * @hide
4721     */
4722    public abstract boolean setDefaultBrowserPackageNameAsUser(String packageName,
4723            @UserIdInt int userId);
4724
4725    /**
4726     * Change the installer associated with a given package.  There are limitations
4727     * on how the installer package can be changed; in particular:
4728     * <ul>
4729     * <li> A SecurityException will be thrown if <var>installerPackageName</var>
4730     * is not signed with the same certificate as the calling application.
4731     * <li> A SecurityException will be thrown if <var>targetPackage</var> already
4732     * has an installer package, and that installer package is not signed with
4733     * the same certificate as the calling application.
4734     * </ul>
4735     *
4736     * @param targetPackage The installed package whose installer will be changed.
4737     * @param installerPackageName The package name of the new installer.  May be
4738     * null to clear the association.
4739     */
4740    public abstract void setInstallerPackageName(String targetPackage,
4741            String installerPackageName);
4742
4743    /**
4744     * Attempts to delete a package. Since this may take a little while, the
4745     * result will be posted back to the given observer. A deletion will fail if
4746     * the calling context lacks the
4747     * {@link android.Manifest.permission#DELETE_PACKAGES} permission, if the
4748     * named package cannot be found, or if the named package is a system
4749     * package.
4750     *
4751     * @param packageName The name of the package to delete
4752     * @param observer An observer callback to get notified when the package
4753     *            deletion is complete.
4754     *            {@link android.content.pm.IPackageDeleteObserver#packageDeleted}
4755     *            will be called when that happens. observer may be null to
4756     *            indicate that no callback is desired.
4757     * @hide
4758     */
4759    public abstract void deletePackage(String packageName, IPackageDeleteObserver observer,
4760            @DeleteFlags int flags);
4761
4762    /**
4763     * Attempts to delete a package. Since this may take a little while, the
4764     * result will be posted back to the given observer. A deletion will fail if
4765     * the named package cannot be found, or if the named package is a system
4766     * package.
4767     *
4768     * @param packageName The name of the package to delete
4769     * @param observer An observer callback to get notified when the package
4770     *            deletion is complete.
4771     *            {@link android.content.pm.IPackageDeleteObserver#packageDeleted}
4772     *            will be called when that happens. observer may be null to
4773     *            indicate that no callback is desired.
4774     * @param userId The user Id
4775     * @hide
4776     */
4777     @RequiresPermission(anyOf = {
4778            Manifest.permission.DELETE_PACKAGES,
4779            Manifest.permission.INTERACT_ACROSS_USERS_FULL})
4780    public abstract void deletePackageAsUser(String packageName, IPackageDeleteObserver observer,
4781            @DeleteFlags int flags, @UserIdInt int userId);
4782
4783    /**
4784     * Retrieve the package name of the application that installed a package. This identifies
4785     * which market the package came from.
4786     *
4787     * @param packageName The name of the package to query
4788     */
4789    public abstract String getInstallerPackageName(String packageName);
4790
4791    /**
4792     * Attempts to clear the user data directory of an application.
4793     * Since this may take a little while, the result will
4794     * be posted back to the given observer.  A deletion will fail if the
4795     * named package cannot be found, or if the named package is a "system package".
4796     *
4797     * @param packageName The name of the package
4798     * @param observer An observer callback to get notified when the operation is finished
4799     * {@link android.content.pm.IPackageDataObserver#onRemoveCompleted(String, boolean)}
4800     * will be called when that happens.  observer may be null to indicate that
4801     * no callback is desired.
4802     *
4803     * @hide
4804     */
4805    public abstract void clearApplicationUserData(String packageName,
4806            IPackageDataObserver observer);
4807    /**
4808     * Attempts to delete the cache files associated with an application.
4809     * Since this may take a little while, the result will
4810     * be posted back to the given observer.  A deletion will fail if the calling context
4811     * lacks the {@link android.Manifest.permission#DELETE_CACHE_FILES} permission, if the
4812     * named package cannot be found, or if the named package is a "system package".
4813     *
4814     * @param packageName The name of the package to delete
4815     * @param observer An observer callback to get notified when the cache file deletion
4816     * is complete.
4817     * {@link android.content.pm.IPackageDataObserver#onRemoveCompleted(String, boolean)}
4818     * will be called when that happens.  observer may be null to indicate that
4819     * no callback is desired.
4820     *
4821     * @hide
4822     */
4823    public abstract void deleteApplicationCacheFiles(String packageName,
4824            IPackageDataObserver observer);
4825
4826    /**
4827     * Free storage by deleting LRU sorted list of cache files across
4828     * all applications. If the currently available free storage
4829     * on the device is greater than or equal to the requested
4830     * free storage, no cache files are cleared. If the currently
4831     * available storage on the device is less than the requested
4832     * free storage, some or all of the cache files across
4833     * all applications are deleted (based on last accessed time)
4834     * to increase the free storage space on the device to
4835     * the requested value. There is no guarantee that clearing all
4836     * the cache files from all applications will clear up
4837     * enough storage to achieve the desired value.
4838     * @param freeStorageSize The number of bytes of storage to be
4839     * freed by the system. Say if freeStorageSize is XX,
4840     * and the current free storage is YY,
4841     * if XX is less than YY, just return. if not free XX-YY number
4842     * of bytes if possible.
4843     * @param observer call back used to notify when
4844     * the operation is completed
4845     *
4846     * @hide
4847     */
4848    public void freeStorageAndNotify(long freeStorageSize, IPackageDataObserver observer) {
4849        freeStorageAndNotify(null, freeStorageSize, observer);
4850    }
4851
4852    /** {@hide} */
4853    public abstract void freeStorageAndNotify(String volumeUuid, long freeStorageSize,
4854            IPackageDataObserver observer);
4855
4856    /**
4857     * Free storage by deleting LRU sorted list of cache files across
4858     * all applications. If the currently available free storage
4859     * on the device is greater than or equal to the requested
4860     * free storage, no cache files are cleared. If the currently
4861     * available storage on the device is less than the requested
4862     * free storage, some or all of the cache files across
4863     * all applications are deleted (based on last accessed time)
4864     * to increase the free storage space on the device to
4865     * the requested value. There is no guarantee that clearing all
4866     * the cache files from all applications will clear up
4867     * enough storage to achieve the desired value.
4868     * @param freeStorageSize The number of bytes of storage to be
4869     * freed by the system. Say if freeStorageSize is XX,
4870     * and the current free storage is YY,
4871     * if XX is less than YY, just return. if not free XX-YY number
4872     * of bytes if possible.
4873     * @param pi IntentSender call back used to
4874     * notify when the operation is completed.May be null
4875     * to indicate that no call back is desired.
4876     *
4877     * @hide
4878     */
4879    public void freeStorage(long freeStorageSize, IntentSender pi) {
4880        freeStorage(null, freeStorageSize, pi);
4881    }
4882
4883    /** {@hide} */
4884    public abstract void freeStorage(String volumeUuid, long freeStorageSize, IntentSender pi);
4885
4886    /**
4887     * Retrieve the size information for a package.
4888     * Since this may take a little while, the result will
4889     * be posted back to the given observer.  The calling context
4890     * should have the {@link android.Manifest.permission#GET_PACKAGE_SIZE} permission.
4891     *
4892     * @param packageName The name of the package whose size information is to be retrieved
4893     * @param userId The user whose size information should be retrieved.
4894     * @param observer An observer callback to get notified when the operation
4895     * is complete.
4896     * {@link android.content.pm.IPackageStatsObserver#onGetStatsCompleted(PackageStats, boolean)}
4897     * The observer's callback is invoked with a PackageStats object(containing the
4898     * code, data and cache sizes of the package) and a boolean value representing
4899     * the status of the operation. observer may be null to indicate that
4900     * no callback is desired.
4901     *
4902     * @hide
4903     */
4904    public abstract void getPackageSizeInfoAsUser(String packageName, @UserIdInt int userId,
4905            IPackageStatsObserver observer);
4906
4907    /**
4908     * Like {@link #getPackageSizeInfoAsUser(String, int, IPackageStatsObserver)}, but
4909     * returns the size for the calling user.
4910     *
4911     * @hide
4912     */
4913    public void getPackageSizeInfo(String packageName, IPackageStatsObserver observer) {
4914        getPackageSizeInfoAsUser(packageName, UserHandle.myUserId(), observer);
4915    }
4916
4917    /**
4918     * @deprecated This function no longer does anything; it was an old
4919     * approach to managing preferred activities, which has been superseded
4920     * by (and conflicts with) the modern activity-based preferences.
4921     */
4922    @Deprecated
4923    public abstract void addPackageToPreferred(String packageName);
4924
4925    /**
4926     * @deprecated This function no longer does anything; it was an old
4927     * approach to managing preferred activities, which has been superseded
4928     * by (and conflicts with) the modern activity-based preferences.
4929     */
4930    @Deprecated
4931    public abstract void removePackageFromPreferred(String packageName);
4932
4933    /**
4934     * Retrieve the list of all currently configured preferred packages.  The
4935     * first package on the list is the most preferred, the last is the
4936     * least preferred.
4937     *
4938     * @param flags Additional option flags. Use any combination of
4939     *         {@link #GET_ACTIVITIES}, {@link #GET_CONFIGURATIONS},
4940     *         {@link #GET_GIDS}, {@link #GET_INSTRUMENTATION},
4941     *         {@link #GET_INTENT_FILTERS}, {@link #GET_META_DATA},
4942     *         {@link #GET_PERMISSIONS}, {@link #GET_PROVIDERS},
4943     *         {@link #GET_RECEIVERS}, {@link #GET_SERVICES},
4944     *         {@link #GET_SHARED_LIBRARY_FILES}, {@link #GET_SIGNATURES},
4945     *         {@link #GET_URI_PERMISSION_PATTERNS}, {@link #GET_UNINSTALLED_PACKAGES},
4946     *         {@link #MATCH_DISABLED_COMPONENTS}, {@link #MATCH_DISABLED_UNTIL_USED_COMPONENTS},
4947     *         {@link #MATCH_UNINSTALLED_PACKAGES}
4948     *         to modify the data returned.
4949     *
4950     * @return A List of PackageInfo objects, one for each preferred application,
4951     *         in order of preference.
4952     *
4953     * @see #GET_ACTIVITIES
4954     * @see #GET_CONFIGURATIONS
4955     * @see #GET_GIDS
4956     * @see #GET_INSTRUMENTATION
4957     * @see #GET_INTENT_FILTERS
4958     * @see #GET_META_DATA
4959     * @see #GET_PERMISSIONS
4960     * @see #GET_PROVIDERS
4961     * @see #GET_RECEIVERS
4962     * @see #GET_SERVICES
4963     * @see #GET_SHARED_LIBRARY_FILES
4964     * @see #GET_SIGNATURES
4965     * @see #GET_URI_PERMISSION_PATTERNS
4966     * @see #MATCH_DISABLED_COMPONENTS
4967     * @see #MATCH_DISABLED_UNTIL_USED_COMPONENTS
4968     * @see #MATCH_UNINSTALLED_PACKAGES
4969     */
4970    public abstract List<PackageInfo> getPreferredPackages(@PackageInfoFlags int flags);
4971
4972    /**
4973     * @deprecated This is a protected API that should not have been available
4974     * to third party applications.  It is the platform's responsibility for
4975     * assigning preferred activities and this cannot be directly modified.
4976     *
4977     * Add a new preferred activity mapping to the system.  This will be used
4978     * to automatically select the given activity component when
4979     * {@link Context#startActivity(Intent) Context.startActivity()} finds
4980     * multiple matching activities and also matches the given filter.
4981     *
4982     * @param filter The set of intents under which this activity will be
4983     * made preferred.
4984     * @param match The IntentFilter match category that this preference
4985     * applies to.
4986     * @param set The set of activities that the user was picking from when
4987     * this preference was made.
4988     * @param activity The component name of the activity that is to be
4989     * preferred.
4990     */
4991    @Deprecated
4992    public abstract void addPreferredActivity(IntentFilter filter, int match,
4993            ComponentName[] set, ComponentName activity);
4994
4995    /**
4996     * Same as {@link #addPreferredActivity(IntentFilter, int,
4997            ComponentName[], ComponentName)}, but with a specific userId to apply the preference
4998            to.
4999     * @hide
5000     */
5001    public void addPreferredActivityAsUser(IntentFilter filter, int match,
5002            ComponentName[] set, ComponentName activity, @UserIdInt int userId) {
5003        throw new RuntimeException("Not implemented. Must override in a subclass.");
5004    }
5005
5006    /**
5007     * @deprecated This is a protected API that should not have been available
5008     * to third party applications.  It is the platform's responsibility for
5009     * assigning preferred activities and this cannot be directly modified.
5010     *
5011     * Replaces an existing preferred activity mapping to the system, and if that were not present
5012     * adds a new preferred activity.  This will be used
5013     * to automatically select the given activity component when
5014     * {@link Context#startActivity(Intent) Context.startActivity()} finds
5015     * multiple matching activities and also matches the given filter.
5016     *
5017     * @param filter The set of intents under which this activity will be
5018     * made preferred.
5019     * @param match The IntentFilter match category that this preference
5020     * applies to.
5021     * @param set The set of activities that the user was picking from when
5022     * this preference was made.
5023     * @param activity The component name of the activity that is to be
5024     * preferred.
5025     * @hide
5026     */
5027    @Deprecated
5028    public abstract void replacePreferredActivity(IntentFilter filter, int match,
5029            ComponentName[] set, ComponentName activity);
5030
5031    /**
5032     * @hide
5033     */
5034    @Deprecated
5035    public void replacePreferredActivityAsUser(IntentFilter filter, int match,
5036           ComponentName[] set, ComponentName activity, @UserIdInt int userId) {
5037        throw new RuntimeException("Not implemented. Must override in a subclass.");
5038    }
5039
5040    /**
5041     * Remove all preferred activity mappings, previously added with
5042     * {@link #addPreferredActivity}, from the
5043     * system whose activities are implemented in the given package name.
5044     * An application can only clear its own package(s).
5045     *
5046     * @param packageName The name of the package whose preferred activity
5047     * mappings are to be removed.
5048     */
5049    public abstract void clearPackagePreferredActivities(String packageName);
5050
5051    /**
5052     * Retrieve all preferred activities, previously added with
5053     * {@link #addPreferredActivity}, that are
5054     * currently registered with the system.
5055     *
5056     * @param outFilters A required list in which to place the filters of all of the
5057     * preferred activities.
5058     * @param outActivities A required list in which to place the component names of
5059     * all of the preferred activities.
5060     * @param packageName An optional package in which you would like to limit
5061     * the list.  If null, all activities will be returned; if non-null, only
5062     * those activities in the given package are returned.
5063     *
5064     * @return Returns the total number of registered preferred activities
5065     * (the number of distinct IntentFilter records, not the number of unique
5066     * activity components) that were found.
5067     */
5068    public abstract int getPreferredActivities(@NonNull List<IntentFilter> outFilters,
5069            @NonNull List<ComponentName> outActivities, String packageName);
5070
5071    /**
5072     * Ask for the set of available 'home' activities and the current explicit
5073     * default, if any.
5074     * @hide
5075     */
5076    public abstract ComponentName getHomeActivities(List<ResolveInfo> outActivities);
5077
5078    /**
5079     * Set the enabled setting for a package component (activity, receiver, service, provider).
5080     * This setting will override any enabled state which may have been set by the component in its
5081     * manifest.
5082     *
5083     * @param componentName The component to enable
5084     * @param newState The new enabled state for the component.  The legal values for this state
5085     *                 are:
5086     *                   {@link #COMPONENT_ENABLED_STATE_ENABLED},
5087     *                   {@link #COMPONENT_ENABLED_STATE_DISABLED}
5088     *                   and
5089     *                   {@link #COMPONENT_ENABLED_STATE_DEFAULT}
5090     *                 The last one removes the setting, thereby restoring the component's state to
5091     *                 whatever was set in it's manifest (or enabled, by default).
5092     * @param flags Optional behavior flags: {@link #DONT_KILL_APP} or 0.
5093     */
5094    public abstract void setComponentEnabledSetting(ComponentName componentName,
5095            int newState, int flags);
5096
5097
5098    /**
5099     * Return the enabled setting for a package component (activity,
5100     * receiver, service, provider).  This returns the last value set by
5101     * {@link #setComponentEnabledSetting(ComponentName, int, int)}; in most
5102     * cases this value will be {@link #COMPONENT_ENABLED_STATE_DEFAULT} since
5103     * the value originally specified in the manifest has not been modified.
5104     *
5105     * @param componentName The component to retrieve.
5106     * @return Returns the current enabled state for the component.  May
5107     * be one of {@link #COMPONENT_ENABLED_STATE_ENABLED},
5108     * {@link #COMPONENT_ENABLED_STATE_DISABLED}, or
5109     * {@link #COMPONENT_ENABLED_STATE_DEFAULT}.  The last one means the
5110     * component's enabled state is based on the original information in
5111     * the manifest as found in {@link ComponentInfo}.
5112     */
5113    public abstract int getComponentEnabledSetting(ComponentName componentName);
5114
5115    /**
5116     * Set the enabled setting for an application
5117     * This setting will override any enabled state which may have been set by the application in
5118     * its manifest.  It also overrides the enabled state set in the manifest for any of the
5119     * application's components.  It does not override any enabled state set by
5120     * {@link #setComponentEnabledSetting} for any of the application's components.
5121     *
5122     * @param packageName The package name of the application to enable
5123     * @param newState The new enabled state for the component.  The legal values for this state
5124     *                 are:
5125     *                   {@link #COMPONENT_ENABLED_STATE_ENABLED},
5126     *                   {@link #COMPONENT_ENABLED_STATE_DISABLED}
5127     *                   and
5128     *                   {@link #COMPONENT_ENABLED_STATE_DEFAULT}
5129     *                 The last one removes the setting, thereby restoring the applications's state to
5130     *                 whatever was set in its manifest (or enabled, by default).
5131     * @param flags Optional behavior flags: {@link #DONT_KILL_APP} or 0.
5132     */
5133    public abstract void setApplicationEnabledSetting(String packageName,
5134            int newState, int flags);
5135
5136    /**
5137     * Return the enabled setting for an application. This returns
5138     * the last value set by
5139     * {@link #setApplicationEnabledSetting(String, int, int)}; in most
5140     * cases this value will be {@link #COMPONENT_ENABLED_STATE_DEFAULT} since
5141     * the value originally specified in the manifest has not been modified.
5142     *
5143     * @param packageName The package name of the application to retrieve.
5144     * @return Returns the current enabled state for the application.  May
5145     * be one of {@link #COMPONENT_ENABLED_STATE_ENABLED},
5146     * {@link #COMPONENT_ENABLED_STATE_DISABLED}, or
5147     * {@link #COMPONENT_ENABLED_STATE_DEFAULT}.  The last one means the
5148     * application's enabled state is based on the original information in
5149     * the manifest as found in {@link ComponentInfo}.
5150     * @throws IllegalArgumentException if the named package does not exist.
5151     */
5152    public abstract int getApplicationEnabledSetting(String packageName);
5153
5154    /**
5155     * Puts the package in a hidden state, which is almost like an uninstalled state,
5156     * making the package unavailable, but it doesn't remove the data or the actual
5157     * package file. Application can be unhidden by either resetting the hidden state
5158     * or by installing it, such as with {@link #installExistingPackage(String)}
5159     * @hide
5160     */
5161    public abstract boolean setApplicationHiddenSettingAsUser(String packageName, boolean hidden,
5162            UserHandle userHandle);
5163
5164    /**
5165     * Returns the hidden state of a package.
5166     * @see #setApplicationHiddenSettingAsUser(String, boolean, UserHandle)
5167     * @hide
5168     */
5169    public abstract boolean getApplicationHiddenSettingAsUser(String packageName,
5170            UserHandle userHandle);
5171
5172    /**
5173     * Return whether the device has been booted into safe mode.
5174     */
5175    public abstract boolean isSafeMode();
5176
5177    /**
5178     * Adds a listener for permission changes for installed packages.
5179     *
5180     * @param listener The listener to add.
5181     *
5182     * @hide
5183     */
5184    @SystemApi
5185    @RequiresPermission(Manifest.permission.OBSERVE_GRANT_REVOKE_PERMISSIONS)
5186    public abstract void addOnPermissionsChangeListener(OnPermissionsChangedListener listener);
5187
5188    /**
5189     * Remvoes a listener for permission changes for installed packages.
5190     *
5191     * @param listener The listener to remove.
5192     *
5193     * @hide
5194     */
5195    @SystemApi
5196    public abstract void removeOnPermissionsChangeListener(OnPermissionsChangedListener listener);
5197
5198    /**
5199     * Return the {@link KeySet} associated with the String alias for this
5200     * application.
5201     *
5202     * @param alias The alias for a given {@link KeySet} as defined in the
5203     *        application's AndroidManifest.xml.
5204     * @hide
5205     */
5206    public abstract KeySet getKeySetByAlias(String packageName, String alias);
5207
5208    /** Return the signing {@link KeySet} for this application.
5209     * @hide
5210     */
5211    public abstract KeySet getSigningKeySet(String packageName);
5212
5213    /**
5214     * Return whether the package denoted by packageName has been signed by all
5215     * of the keys specified by the {@link KeySet} ks.  This will return true if
5216     * the package has been signed by additional keys (a superset) as well.
5217     * Compare to {@link #isSignedByExactly(String packageName, KeySet ks)}.
5218     * @hide
5219     */
5220    public abstract boolean isSignedBy(String packageName, KeySet ks);
5221
5222    /**
5223     * Return whether the package denoted by packageName has been signed by all
5224     * of, and only, the keys specified by the {@link KeySet} ks. Compare to
5225     * {@link #isSignedBy(String packageName, KeySet ks)}.
5226     * @hide
5227     */
5228    public abstract boolean isSignedByExactly(String packageName, KeySet ks);
5229
5230    /**
5231     * Puts the package in a suspended state, making the package un-runnable,
5232     * but it doesn't remove the data or the actual package file. The application notifications
5233     * will be hidden and also the application will not show up in recents.
5234     *
5235     * @param packageName The name of the package to set the suspended status.
5236     * @param suspended If set to {@code true} than the package will be suspended, if set to
5237     * {@code false} the package will be unsuspended.
5238     * @param userId The user id.
5239     *
5240     * @hide
5241     */
5242    public abstract boolean setPackageSuspendedAsUser(
5243            String packageName, boolean suspended, @UserIdInt int userId);
5244
5245    /** {@hide} */
5246    public static boolean isMoveStatusFinished(int status) {
5247        return (status < 0 || status > 100);
5248    }
5249
5250    /** {@hide} */
5251    public static abstract class MoveCallback {
5252        public void onCreated(int moveId, Bundle extras) {}
5253        public abstract void onStatusChanged(int moveId, int status, long estMillis);
5254    }
5255
5256    /** {@hide} */
5257    public abstract int getMoveStatus(int moveId);
5258
5259    /** {@hide} */
5260    public abstract void registerMoveCallback(MoveCallback callback, Handler handler);
5261    /** {@hide} */
5262    public abstract void unregisterMoveCallback(MoveCallback callback);
5263
5264    /** {@hide} */
5265    public abstract int movePackage(String packageName, VolumeInfo vol);
5266    /** {@hide} */
5267    public abstract @Nullable VolumeInfo getPackageCurrentVolume(ApplicationInfo app);
5268    /** {@hide} */
5269    public abstract @NonNull List<VolumeInfo> getPackageCandidateVolumes(ApplicationInfo app);
5270
5271    /** {@hide} */
5272    public abstract int movePrimaryStorage(VolumeInfo vol);
5273    /** {@hide} */
5274    public abstract @Nullable VolumeInfo getPrimaryStorageCurrentVolume();
5275    /** {@hide} */
5276    public abstract @NonNull List<VolumeInfo> getPrimaryStorageCandidateVolumes();
5277
5278    /**
5279     * Returns the device identity that verifiers can use to associate their scheme to a particular
5280     * device. This should not be used by anything other than a package verifier.
5281     *
5282     * @return identity that uniquely identifies current device
5283     * @hide
5284     */
5285    public abstract VerifierDeviceIdentity getVerifierDeviceIdentity();
5286
5287    /**
5288     * Returns true if the device is upgrading, such as first boot after OTA.
5289     *
5290     * @hide
5291     */
5292    public abstract boolean isUpgrade();
5293
5294    /**
5295     * Return interface that offers the ability to install, upgrade, and remove
5296     * applications on the device.
5297     */
5298    public abstract @NonNull PackageInstaller getPackageInstaller();
5299
5300    /**
5301     * Adds a {@code CrossProfileIntentFilter}. After calling this method all
5302     * intents sent from the user with id sourceUserId can also be be resolved
5303     * by activities in the user with id targetUserId if they match the
5304     * specified intent filter.
5305     *
5306     * @param filter The {@link IntentFilter} the intent has to match
5307     * @param sourceUserId The source user id.
5308     * @param targetUserId The target user id.
5309     * @param flags The possible values are {@link #SKIP_CURRENT_PROFILE} and
5310     *            {@link #ONLY_IF_NO_MATCH_FOUND}.
5311     * @hide
5312     */
5313    public abstract void addCrossProfileIntentFilter(IntentFilter filter, int sourceUserId,
5314            int targetUserId, int flags);
5315
5316    /**
5317     * Clearing {@code CrossProfileIntentFilter}s which have the specified user
5318     * as their source, and have been set by the app calling this method.
5319     *
5320     * @param sourceUserId The source user id.
5321     * @hide
5322     */
5323    public abstract void clearCrossProfileIntentFilters(int sourceUserId);
5324
5325    /**
5326     * @hide
5327     */
5328    public abstract Drawable loadItemIcon(PackageItemInfo itemInfo, ApplicationInfo appInfo);
5329
5330    /**
5331     * @hide
5332     */
5333    public abstract Drawable loadUnbadgedItemIcon(PackageItemInfo itemInfo, ApplicationInfo appInfo);
5334
5335    /** {@hide} */
5336    public abstract boolean isPackageAvailable(String packageName);
5337
5338    /** {@hide} */
5339    public static String installStatusToString(int status, String msg) {
5340        final String str = installStatusToString(status);
5341        if (msg != null) {
5342            return str + ": " + msg;
5343        } else {
5344            return str;
5345        }
5346    }
5347
5348    /** {@hide} */
5349    public static String installStatusToString(int status) {
5350        switch (status) {
5351            case INSTALL_SUCCEEDED: return "INSTALL_SUCCEEDED";
5352            case INSTALL_FAILED_ALREADY_EXISTS: return "INSTALL_FAILED_ALREADY_EXISTS";
5353            case INSTALL_FAILED_INVALID_APK: return "INSTALL_FAILED_INVALID_APK";
5354            case INSTALL_FAILED_INVALID_URI: return "INSTALL_FAILED_INVALID_URI";
5355            case INSTALL_FAILED_INSUFFICIENT_STORAGE: return "INSTALL_FAILED_INSUFFICIENT_STORAGE";
5356            case INSTALL_FAILED_DUPLICATE_PACKAGE: return "INSTALL_FAILED_DUPLICATE_PACKAGE";
5357            case INSTALL_FAILED_NO_SHARED_USER: return "INSTALL_FAILED_NO_SHARED_USER";
5358            case INSTALL_FAILED_UPDATE_INCOMPATIBLE: return "INSTALL_FAILED_UPDATE_INCOMPATIBLE";
5359            case INSTALL_FAILED_SHARED_USER_INCOMPATIBLE: return "INSTALL_FAILED_SHARED_USER_INCOMPATIBLE";
5360            case INSTALL_FAILED_MISSING_SHARED_LIBRARY: return "INSTALL_FAILED_MISSING_SHARED_LIBRARY";
5361            case INSTALL_FAILED_REPLACE_COULDNT_DELETE: return "INSTALL_FAILED_REPLACE_COULDNT_DELETE";
5362            case INSTALL_FAILED_DEXOPT: return "INSTALL_FAILED_DEXOPT";
5363            case INSTALL_FAILED_OLDER_SDK: return "INSTALL_FAILED_OLDER_SDK";
5364            case INSTALL_FAILED_CONFLICTING_PROVIDER: return "INSTALL_FAILED_CONFLICTING_PROVIDER";
5365            case INSTALL_FAILED_NEWER_SDK: return "INSTALL_FAILED_NEWER_SDK";
5366            case INSTALL_FAILED_TEST_ONLY: return "INSTALL_FAILED_TEST_ONLY";
5367            case INSTALL_FAILED_CPU_ABI_INCOMPATIBLE: return "INSTALL_FAILED_CPU_ABI_INCOMPATIBLE";
5368            case INSTALL_FAILED_MISSING_FEATURE: return "INSTALL_FAILED_MISSING_FEATURE";
5369            case INSTALL_FAILED_CONTAINER_ERROR: return "INSTALL_FAILED_CONTAINER_ERROR";
5370            case INSTALL_FAILED_INVALID_INSTALL_LOCATION: return "INSTALL_FAILED_INVALID_INSTALL_LOCATION";
5371            case INSTALL_FAILED_MEDIA_UNAVAILABLE: return "INSTALL_FAILED_MEDIA_UNAVAILABLE";
5372            case INSTALL_FAILED_VERIFICATION_TIMEOUT: return "INSTALL_FAILED_VERIFICATION_TIMEOUT";
5373            case INSTALL_FAILED_VERIFICATION_FAILURE: return "INSTALL_FAILED_VERIFICATION_FAILURE";
5374            case INSTALL_FAILED_PACKAGE_CHANGED: return "INSTALL_FAILED_PACKAGE_CHANGED";
5375            case INSTALL_FAILED_UID_CHANGED: return "INSTALL_FAILED_UID_CHANGED";
5376            case INSTALL_FAILED_VERSION_DOWNGRADE: return "INSTALL_FAILED_VERSION_DOWNGRADE";
5377            case INSTALL_PARSE_FAILED_NOT_APK: return "INSTALL_PARSE_FAILED_NOT_APK";
5378            case INSTALL_PARSE_FAILED_BAD_MANIFEST: return "INSTALL_PARSE_FAILED_BAD_MANIFEST";
5379            case INSTALL_PARSE_FAILED_UNEXPECTED_EXCEPTION: return "INSTALL_PARSE_FAILED_UNEXPECTED_EXCEPTION";
5380            case INSTALL_PARSE_FAILED_NO_CERTIFICATES: return "INSTALL_PARSE_FAILED_NO_CERTIFICATES";
5381            case INSTALL_PARSE_FAILED_INCONSISTENT_CERTIFICATES: return "INSTALL_PARSE_FAILED_INCONSISTENT_CERTIFICATES";
5382            case INSTALL_PARSE_FAILED_CERTIFICATE_ENCODING: return "INSTALL_PARSE_FAILED_CERTIFICATE_ENCODING";
5383            case INSTALL_PARSE_FAILED_BAD_PACKAGE_NAME: return "INSTALL_PARSE_FAILED_BAD_PACKAGE_NAME";
5384            case INSTALL_PARSE_FAILED_BAD_SHARED_USER_ID: return "INSTALL_PARSE_FAILED_BAD_SHARED_USER_ID";
5385            case INSTALL_PARSE_FAILED_MANIFEST_MALFORMED: return "INSTALL_PARSE_FAILED_MANIFEST_MALFORMED";
5386            case INSTALL_PARSE_FAILED_MANIFEST_EMPTY: return "INSTALL_PARSE_FAILED_MANIFEST_EMPTY";
5387            case INSTALL_FAILED_INTERNAL_ERROR: return "INSTALL_FAILED_INTERNAL_ERROR";
5388            case INSTALL_FAILED_USER_RESTRICTED: return "INSTALL_FAILED_USER_RESTRICTED";
5389            case INSTALL_FAILED_DUPLICATE_PERMISSION: return "INSTALL_FAILED_DUPLICATE_PERMISSION";
5390            case INSTALL_FAILED_NO_MATCHING_ABIS: return "INSTALL_FAILED_NO_MATCHING_ABIS";
5391            case INSTALL_FAILED_ABORTED: return "INSTALL_FAILED_ABORTED";
5392            default: return Integer.toString(status);
5393        }
5394    }
5395
5396    /** {@hide} */
5397    public static int installStatusToPublicStatus(int status) {
5398        switch (status) {
5399            case INSTALL_SUCCEEDED: return PackageInstaller.STATUS_SUCCESS;
5400            case INSTALL_FAILED_ALREADY_EXISTS: return PackageInstaller.STATUS_FAILURE_CONFLICT;
5401            case INSTALL_FAILED_INVALID_APK: return PackageInstaller.STATUS_FAILURE_INVALID;
5402            case INSTALL_FAILED_INVALID_URI: return PackageInstaller.STATUS_FAILURE_INVALID;
5403            case INSTALL_FAILED_INSUFFICIENT_STORAGE: return PackageInstaller.STATUS_FAILURE_STORAGE;
5404            case INSTALL_FAILED_DUPLICATE_PACKAGE: return PackageInstaller.STATUS_FAILURE_CONFLICT;
5405            case INSTALL_FAILED_NO_SHARED_USER: return PackageInstaller.STATUS_FAILURE_CONFLICT;
5406            case INSTALL_FAILED_UPDATE_INCOMPATIBLE: return PackageInstaller.STATUS_FAILURE_CONFLICT;
5407            case INSTALL_FAILED_SHARED_USER_INCOMPATIBLE: return PackageInstaller.STATUS_FAILURE_CONFLICT;
5408            case INSTALL_FAILED_MISSING_SHARED_LIBRARY: return PackageInstaller.STATUS_FAILURE_INCOMPATIBLE;
5409            case INSTALL_FAILED_REPLACE_COULDNT_DELETE: return PackageInstaller.STATUS_FAILURE_CONFLICT;
5410            case INSTALL_FAILED_DEXOPT: return PackageInstaller.STATUS_FAILURE_INVALID;
5411            case INSTALL_FAILED_OLDER_SDK: return PackageInstaller.STATUS_FAILURE_INCOMPATIBLE;
5412            case INSTALL_FAILED_CONFLICTING_PROVIDER: return PackageInstaller.STATUS_FAILURE_CONFLICT;
5413            case INSTALL_FAILED_NEWER_SDK: return PackageInstaller.STATUS_FAILURE_INCOMPATIBLE;
5414            case INSTALL_FAILED_TEST_ONLY: return PackageInstaller.STATUS_FAILURE_INVALID;
5415            case INSTALL_FAILED_CPU_ABI_INCOMPATIBLE: return PackageInstaller.STATUS_FAILURE_INCOMPATIBLE;
5416            case INSTALL_FAILED_MISSING_FEATURE: return PackageInstaller.STATUS_FAILURE_INCOMPATIBLE;
5417            case INSTALL_FAILED_CONTAINER_ERROR: return PackageInstaller.STATUS_FAILURE_STORAGE;
5418            case INSTALL_FAILED_INVALID_INSTALL_LOCATION: return PackageInstaller.STATUS_FAILURE_STORAGE;
5419            case INSTALL_FAILED_MEDIA_UNAVAILABLE: return PackageInstaller.STATUS_FAILURE_STORAGE;
5420            case INSTALL_FAILED_VERIFICATION_TIMEOUT: return PackageInstaller.STATUS_FAILURE_ABORTED;
5421            case INSTALL_FAILED_VERIFICATION_FAILURE: return PackageInstaller.STATUS_FAILURE_ABORTED;
5422            case INSTALL_FAILED_PACKAGE_CHANGED: return PackageInstaller.STATUS_FAILURE_INVALID;
5423            case INSTALL_FAILED_UID_CHANGED: return PackageInstaller.STATUS_FAILURE_INVALID;
5424            case INSTALL_FAILED_VERSION_DOWNGRADE: return PackageInstaller.STATUS_FAILURE_INVALID;
5425            case INSTALL_FAILED_PERMISSION_MODEL_DOWNGRADE: return PackageInstaller.STATUS_FAILURE_INVALID;
5426            case INSTALL_PARSE_FAILED_NOT_APK: return PackageInstaller.STATUS_FAILURE_INVALID;
5427            case INSTALL_PARSE_FAILED_BAD_MANIFEST: return PackageInstaller.STATUS_FAILURE_INVALID;
5428            case INSTALL_PARSE_FAILED_UNEXPECTED_EXCEPTION: return PackageInstaller.STATUS_FAILURE_INVALID;
5429            case INSTALL_PARSE_FAILED_NO_CERTIFICATES: return PackageInstaller.STATUS_FAILURE_INVALID;
5430            case INSTALL_PARSE_FAILED_INCONSISTENT_CERTIFICATES: return PackageInstaller.STATUS_FAILURE_INVALID;
5431            case INSTALL_PARSE_FAILED_CERTIFICATE_ENCODING: return PackageInstaller.STATUS_FAILURE_INVALID;
5432            case INSTALL_PARSE_FAILED_BAD_PACKAGE_NAME: return PackageInstaller.STATUS_FAILURE_INVALID;
5433            case INSTALL_PARSE_FAILED_BAD_SHARED_USER_ID: return PackageInstaller.STATUS_FAILURE_INVALID;
5434            case INSTALL_PARSE_FAILED_MANIFEST_MALFORMED: return PackageInstaller.STATUS_FAILURE_INVALID;
5435            case INSTALL_PARSE_FAILED_MANIFEST_EMPTY: return PackageInstaller.STATUS_FAILURE_INVALID;
5436            case INSTALL_FAILED_INTERNAL_ERROR: return PackageInstaller.STATUS_FAILURE;
5437            case INSTALL_FAILED_USER_RESTRICTED: return PackageInstaller.STATUS_FAILURE_INCOMPATIBLE;
5438            case INSTALL_FAILED_DUPLICATE_PERMISSION: return PackageInstaller.STATUS_FAILURE_CONFLICT;
5439            case INSTALL_FAILED_NO_MATCHING_ABIS: return PackageInstaller.STATUS_FAILURE_INCOMPATIBLE;
5440            case INSTALL_FAILED_ABORTED: return PackageInstaller.STATUS_FAILURE_ABORTED;
5441            default: return PackageInstaller.STATUS_FAILURE;
5442        }
5443    }
5444
5445    /** {@hide} */
5446    public static String deleteStatusToString(int status, String msg) {
5447        final String str = deleteStatusToString(status);
5448        if (msg != null) {
5449            return str + ": " + msg;
5450        } else {
5451            return str;
5452        }
5453    }
5454
5455    /** {@hide} */
5456    public static String deleteStatusToString(int status) {
5457        switch (status) {
5458            case DELETE_SUCCEEDED: return "DELETE_SUCCEEDED";
5459            case DELETE_FAILED_INTERNAL_ERROR: return "DELETE_FAILED_INTERNAL_ERROR";
5460            case DELETE_FAILED_DEVICE_POLICY_MANAGER: return "DELETE_FAILED_DEVICE_POLICY_MANAGER";
5461            case DELETE_FAILED_USER_RESTRICTED: return "DELETE_FAILED_USER_RESTRICTED";
5462            case DELETE_FAILED_OWNER_BLOCKED: return "DELETE_FAILED_OWNER_BLOCKED";
5463            case DELETE_FAILED_ABORTED: return "DELETE_FAILED_ABORTED";
5464            default: return Integer.toString(status);
5465        }
5466    }
5467
5468    /** {@hide} */
5469    public static int deleteStatusToPublicStatus(int status) {
5470        switch (status) {
5471            case DELETE_SUCCEEDED: return PackageInstaller.STATUS_SUCCESS;
5472            case DELETE_FAILED_INTERNAL_ERROR: return PackageInstaller.STATUS_FAILURE;
5473            case DELETE_FAILED_DEVICE_POLICY_MANAGER: return PackageInstaller.STATUS_FAILURE_BLOCKED;
5474            case DELETE_FAILED_USER_RESTRICTED: return PackageInstaller.STATUS_FAILURE_BLOCKED;
5475            case DELETE_FAILED_OWNER_BLOCKED: return PackageInstaller.STATUS_FAILURE_BLOCKED;
5476            case DELETE_FAILED_ABORTED: return PackageInstaller.STATUS_FAILURE_ABORTED;
5477            default: return PackageInstaller.STATUS_FAILURE;
5478        }
5479    }
5480
5481    /** {@hide} */
5482    public static String permissionFlagToString(int flag) {
5483        switch (flag) {
5484            case FLAG_PERMISSION_GRANTED_BY_DEFAULT: return "GRANTED_BY_DEFAULT";
5485            case FLAG_PERMISSION_POLICY_FIXED: return "POLICY_FIXED";
5486            case FLAG_PERMISSION_SYSTEM_FIXED: return "SYSTEM_FIXED";
5487            case FLAG_PERMISSION_USER_SET: return "USER_SET";
5488            case FLAG_PERMISSION_REVOKE_ON_UPGRADE: return "REVOKE_ON_UPGRADE";
5489            case FLAG_PERMISSION_USER_FIXED: return "USER_FIXED";
5490            case FLAG_PERMISSION_REVIEW_REQUIRED: return "REVIEW_REQUIRED";
5491            default: return Integer.toString(flag);
5492        }
5493    }
5494
5495    /** {@hide} */
5496    public static class LegacyPackageInstallObserver extends PackageInstallObserver {
5497        private final IPackageInstallObserver mLegacy;
5498
5499        public LegacyPackageInstallObserver(IPackageInstallObserver legacy) {
5500            mLegacy = legacy;
5501        }
5502
5503        @Override
5504        public void onPackageInstalled(String basePackageName, int returnCode, String msg,
5505                Bundle extras) {
5506            if (mLegacy == null) return;
5507            try {
5508                mLegacy.packageInstalled(basePackageName, returnCode);
5509            } catch (RemoteException ignored) {
5510            }
5511        }
5512    }
5513
5514    /** {@hide} */
5515    public static class LegacyPackageDeleteObserver extends PackageDeleteObserver {
5516        private final IPackageDeleteObserver mLegacy;
5517
5518        public LegacyPackageDeleteObserver(IPackageDeleteObserver legacy) {
5519            mLegacy = legacy;
5520        }
5521
5522        @Override
5523        public void onPackageDeleted(String basePackageName, int returnCode, String msg) {
5524            if (mLegacy == null) return;
5525            try {
5526                mLegacy.packageDeleted(basePackageName, returnCode);
5527            } catch (RemoteException ignored) {
5528            }
5529        }
5530    }
5531}
5532