PackageManager.java revision 940e8577a1569140521fb605336997863529f7ad
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 userHandle UserHandle 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    @SystemApi
3652    public List<ResolveInfo> queryBroadcastReceiversAsUser(Intent intent,
3653            @ResolveInfoFlags int flags, UserHandle userHandle) {
3654        return queryBroadcastReceiversAsUser(intent, flags, userHandle.getIdentifier());
3655    }
3656
3657    /**
3658     * @hide
3659     */
3660    public abstract List<ResolveInfo> queryBroadcastReceiversAsUser(Intent intent,
3661            @ResolveInfoFlags int flags, @UserIdInt int userId);
3662
3663
3664    /** {@hide} */
3665    @Deprecated
3666    public List<ResolveInfo> queryBroadcastReceivers(Intent intent,
3667            @ResolveInfoFlags int flags, @UserIdInt int userId) {
3668        Log.w(TAG, "STAHP USING HIDDEN APIS KTHX");
3669        return queryBroadcastReceiversAsUser(intent, flags, userId);
3670    }
3671
3672    /**
3673     * Determine the best service to handle for a given Intent.
3674     *
3675     * @param intent An intent containing all of the desired specification
3676     *               (action, data, type, category, and/or component).
3677     * @param flags Additional option flags. Use any combination of
3678     *         {@link #GET_META_DATA}, {@link #GET_RESOLVED_FILTER},
3679     *         {@link #GET_SHARED_LIBRARY_FILES}, {@link #MATCH_ALL},
3680     *         {@link #MATCH_DISABLED_COMPONENTS}, {@link #MATCH_DISABLED_UNTIL_USED_COMPONENTS},
3681     *         {@link #MATCH_DEFAULT_ONLY}, {@link #MATCH_ENCRYPTION_AWARE},
3682     *         {@link #MATCH_ENCRYPTION_AWARE_AND_UNAWARE}, {@link #MATCH_ENCRYPTION_UNAWARE},
3683     *         {@link #MATCH_SYSTEM_ONLY}, {@link #MATCH_UNINSTALLED_PACKAGES}
3684     *         to modify the data returned.
3685     *
3686     * @return Returns a ResolveInfo object containing the final service intent
3687     *         that was determined to be the best action.  Returns null if no
3688     *         matching service was found.
3689     *
3690     * @see #GET_META_DATA
3691     * @see #GET_RESOLVED_FILTER
3692     * @see #GET_SHARED_LIBRARY_FILES
3693     * @see #MATCH_ALL
3694     * @see #MATCH_DISABLED_COMPONENTS
3695     * @see #MATCH_DISABLED_UNTIL_USED_COMPONENTS
3696     * @see #MATCH_DEFAULT_ONLY
3697     * @see #MATCH_ENCRYPTION_AWARE
3698     * @see #MATCH_ENCRYPTION_AWARE_AND_UNAWARE
3699     * @see #MATCH_ENCRYPTION_UNAWARE
3700     * @see #MATCH_SYSTEM_ONLY
3701     * @see #MATCH_UNINSTALLED_PACKAGES
3702     */
3703    public abstract ResolveInfo resolveService(Intent intent, @ResolveInfoFlags int flags);
3704
3705    /**
3706     * Retrieve all services that can match the given intent.
3707     *
3708     * @param intent The desired intent as per resolveService().
3709     * @param flags Additional option flags. Use any combination of
3710     *         {@link #GET_META_DATA}, {@link #GET_RESOLVED_FILTER},
3711     *         {@link #GET_SHARED_LIBRARY_FILES}, {@link #MATCH_ALL},
3712     *         {@link #MATCH_DISABLED_COMPONENTS}, {@link #MATCH_DISABLED_UNTIL_USED_COMPONENTS},
3713     *         {@link #MATCH_DEFAULT_ONLY}, {@link #MATCH_ENCRYPTION_AWARE},
3714     *         {@link #MATCH_ENCRYPTION_AWARE_AND_UNAWARE}, {@link #MATCH_ENCRYPTION_UNAWARE},
3715     *         {@link #MATCH_SYSTEM_ONLY}, {@link #MATCH_UNINSTALLED_PACKAGES}
3716     *         to modify the data returned.
3717     *
3718     * @return Returns a List of ResolveInfo objects containing one entry for each
3719     *         matching service, ordered from best to worst. In other words, the first
3720     *         item is what would be returned by {@link #resolveService}. If there are
3721     *         no matching services, an empty list or null is returned.
3722     *
3723     * @see #GET_META_DATA
3724     * @see #GET_RESOLVED_FILTER
3725     * @see #GET_SHARED_LIBRARY_FILES
3726     * @see #MATCH_ALL
3727     * @see #MATCH_DISABLED_COMPONENTS
3728     * @see #MATCH_DISABLED_UNTIL_USED_COMPONENTS
3729     * @see #MATCH_DEFAULT_ONLY
3730     * @see #MATCH_ENCRYPTION_AWARE
3731     * @see #MATCH_ENCRYPTION_AWARE_AND_UNAWARE
3732     * @see #MATCH_ENCRYPTION_UNAWARE
3733     * @see #MATCH_SYSTEM_ONLY
3734     * @see #MATCH_UNINSTALLED_PACKAGES
3735     */
3736    public abstract List<ResolveInfo> queryIntentServices(Intent intent,
3737            @ResolveInfoFlags int flags);
3738
3739    /**
3740     * Retrieve all services that can match the given intent for a given user.
3741     *
3742     * @param intent The desired intent as per resolveService().
3743     * @param flags Additional option flags. Use any combination of
3744     *         {@link #GET_META_DATA}, {@link #GET_RESOLVED_FILTER},
3745     *         {@link #GET_SHARED_LIBRARY_FILES}, {@link #MATCH_ALL},
3746     *         {@link #MATCH_DISABLED_COMPONENTS}, {@link #MATCH_DISABLED_UNTIL_USED_COMPONENTS},
3747     *         {@link #MATCH_DEFAULT_ONLY}, {@link #MATCH_ENCRYPTION_AWARE},
3748     *         {@link #MATCH_ENCRYPTION_AWARE_AND_UNAWARE}, {@link #MATCH_ENCRYPTION_UNAWARE},
3749     *         {@link #MATCH_SYSTEM_ONLY}, {@link #MATCH_UNINSTALLED_PACKAGES}
3750     *         to modify the data returned.
3751     * @param userId The user id.
3752     *
3753     * @return Returns a List of ResolveInfo objects containing one entry for each
3754     *         matching service, ordered from best to worst. In other words, the first
3755     *         item is what would be returned by {@link #resolveService}. If there are
3756     *         no matching services, an empty list or null is returned.
3757     *
3758     * @see #GET_META_DATA
3759     * @see #GET_RESOLVED_FILTER
3760     * @see #GET_SHARED_LIBRARY_FILES
3761     * @see #MATCH_ALL
3762     * @see #MATCH_DISABLED_COMPONENTS
3763     * @see #MATCH_DISABLED_UNTIL_USED_COMPONENTS
3764     * @see #MATCH_DEFAULT_ONLY
3765     * @see #MATCH_ENCRYPTION_AWARE
3766     * @see #MATCH_ENCRYPTION_AWARE_AND_UNAWARE
3767     * @see #MATCH_ENCRYPTION_UNAWARE
3768     * @see #MATCH_SYSTEM_ONLY
3769     * @see #MATCH_UNINSTALLED_PACKAGES
3770     *
3771     * @hide
3772     */
3773    public abstract List<ResolveInfo> queryIntentServicesAsUser(Intent intent,
3774            @ResolveInfoFlags int flags, @UserIdInt int userId);
3775
3776    /**
3777     * Retrieve all providers that can match the given intent.
3778     *
3779     * @param intent An intent containing all of the desired specification
3780     *            (action, data, type, category, and/or component).
3781     * @param flags Additional option flags. Use any combination of
3782     *         {@link #GET_META_DATA}, {@link #GET_RESOLVED_FILTER},
3783     *         {@link #GET_SHARED_LIBRARY_FILES}, {@link #MATCH_ALL},
3784     *         {@link #MATCH_DISABLED_COMPONENTS}, {@link #MATCH_DISABLED_UNTIL_USED_COMPONENTS},
3785     *         {@link #MATCH_DEFAULT_ONLY}, {@link #MATCH_ENCRYPTION_AWARE},
3786     *         {@link #MATCH_ENCRYPTION_AWARE_AND_UNAWARE}, {@link #MATCH_ENCRYPTION_UNAWARE},
3787     *         {@link #MATCH_SYSTEM_ONLY}, {@link #MATCH_UNINSTALLED_PACKAGES}
3788     *         to modify the data returned.
3789     * @param userId The user id.
3790     *
3791     * @return Returns a List of ResolveInfo objects containing one entry for each
3792     *         matching provider, ordered from best to worst. If there are no
3793     *         matching services, an empty list or null is returned.
3794     *
3795     * @see #GET_META_DATA
3796     * @see #GET_RESOLVED_FILTER
3797     * @see #GET_SHARED_LIBRARY_FILES
3798     * @see #MATCH_ALL
3799     * @see #MATCH_DISABLED_COMPONENTS
3800     * @see #MATCH_DISABLED_UNTIL_USED_COMPONENTS
3801     * @see #MATCH_DEFAULT_ONLY
3802     * @see #MATCH_ENCRYPTION_AWARE
3803     * @see #MATCH_ENCRYPTION_AWARE_AND_UNAWARE
3804     * @see #MATCH_ENCRYPTION_UNAWARE
3805     * @see #MATCH_SYSTEM_ONLY
3806     * @see #MATCH_UNINSTALLED_PACKAGES
3807     *
3808     * @hide
3809     */
3810    public abstract List<ResolveInfo> queryIntentContentProvidersAsUser(
3811            Intent intent, @ResolveInfoFlags int flags, @UserIdInt int userId);
3812
3813    /**
3814     * Retrieve all providers that can match the given intent.
3815     *
3816     * @param intent An intent containing all of the desired specification
3817     *            (action, data, type, category, and/or component).
3818     * @param flags Additional option flags. Use any combination of
3819     *         {@link #GET_META_DATA}, {@link #GET_RESOLVED_FILTER},
3820     *         {@link #GET_SHARED_LIBRARY_FILES}, {@link #MATCH_ALL},
3821     *         {@link #MATCH_DISABLED_COMPONENTS}, {@link #MATCH_DISABLED_UNTIL_USED_COMPONENTS},
3822     *         {@link #MATCH_DEFAULT_ONLY}, {@link #MATCH_ENCRYPTION_AWARE},
3823     *         {@link #MATCH_ENCRYPTION_AWARE_AND_UNAWARE}, {@link #MATCH_ENCRYPTION_UNAWARE},
3824     *         {@link #MATCH_SYSTEM_ONLY}, {@link #MATCH_UNINSTALLED_PACKAGES}
3825     *         to modify the data returned.
3826     *
3827     * @return Returns a List of ResolveInfo objects containing one entry for each
3828     *         matching provider, ordered from best to worst. If there are no
3829     *         matching services, an empty list or null is returned.
3830     *
3831     * @see #GET_META_DATA
3832     * @see #GET_RESOLVED_FILTER
3833     * @see #GET_SHARED_LIBRARY_FILES
3834     * @see #MATCH_ALL
3835     * @see #MATCH_DISABLED_COMPONENTS
3836     * @see #MATCH_DISABLED_UNTIL_USED_COMPONENTS
3837     * @see #MATCH_DEFAULT_ONLY
3838     * @see #MATCH_ENCRYPTION_AWARE
3839     * @see #MATCH_ENCRYPTION_AWARE_AND_UNAWARE
3840     * @see #MATCH_ENCRYPTION_UNAWARE
3841     * @see #MATCH_SYSTEM_ONLY
3842     * @see #MATCH_UNINSTALLED_PACKAGES
3843     */
3844    public abstract List<ResolveInfo> queryIntentContentProviders(Intent intent,
3845            @ResolveInfoFlags int flags);
3846
3847    /**
3848     * Find a single content provider by its base path name.
3849     *
3850     * @param name The name of the provider to find.
3851     * @param flags Additional option flags. Use any combination of
3852     *         {@link #GET_META_DATA}, {@link #GET_SHARED_LIBRARY_FILES},
3853     *         {@link #MATCH_ALL}, {@link #MATCH_DEFAULT_ONLY},
3854     *         {@link #MATCH_DISABLED_COMPONENTS},  {@link #MATCH_DISABLED_UNTIL_USED_COMPONENTS},
3855     *         {@link #MATCH_ENCRYPTION_AWARE}, {@link #MATCH_ENCRYPTION_AWARE_AND_UNAWARE},
3856     *         {@link #MATCH_ENCRYPTION_UNAWARE}, {@link #MATCH_SYSTEM_ONLY}
3857     *         {@link #MATCH_UNINSTALLED_PACKAGES}
3858     *         to modify the data returned.
3859     *
3860     * @return A {@link ProviderInfo} object containing information about the provider.
3861     *         If a provider was not found, returns null.
3862     *
3863     * @see #GET_META_DATA
3864     * @see #GET_SHARED_LIBRARY_FILES
3865     * @see #MATCH_ALL
3866     * @see #MATCH_DEBUG_TRIAGED_MISSING
3867     * @see #MATCH_DEFAULT_ONLY
3868     * @see #MATCH_DISABLED_COMPONENTS
3869     * @see #MATCH_DISABLED_UNTIL_USED_COMPONENTS
3870     * @see #MATCH_ENCRYPTION_AWARE
3871     * @see #MATCH_ENCRYPTION_AWARE_AND_UNAWARE
3872     * @see #MATCH_ENCRYPTION_UNAWARE
3873     * @see #MATCH_SYSTEM_ONLY
3874     * @see #MATCH_UNINSTALLED_PACKAGES
3875     */
3876    public abstract ProviderInfo resolveContentProvider(String name,
3877            @ComponentInfoFlags int flags);
3878
3879    /**
3880     * Find a single content provider by its base path name.
3881     *
3882     * @param name The name of the provider to find.
3883     * @param flags Additional option flags. Use any combination of
3884     *         {@link #GET_META_DATA}, {@link #GET_SHARED_LIBRARY_FILES},
3885     *         {@link #MATCH_ALL}, {@link #MATCH_DEFAULT_ONLY},
3886     *         {@link #MATCH_DISABLED_COMPONENTS},  {@link #MATCH_DISABLED_UNTIL_USED_COMPONENTS},
3887     *         {@link #MATCH_ENCRYPTION_AWARE}, {@link #MATCH_ENCRYPTION_AWARE_AND_UNAWARE},
3888     *         {@link #MATCH_ENCRYPTION_UNAWARE}, {@link #MATCH_SYSTEM_ONLY}
3889     *         {@link #MATCH_UNINSTALLED_PACKAGES}
3890     *         to modify the data returned.
3891     * @param userId The user id.
3892     *
3893     * @return A {@link ProviderInfo} object containing information about the provider.
3894     *         If a provider was not found, returns null.
3895     *
3896     * @see #GET_META_DATA
3897     * @see #GET_SHARED_LIBRARY_FILES
3898     * @see #MATCH_ALL
3899     * @see #MATCH_DEBUG_TRIAGED_MISSING
3900     * @see #MATCH_DEFAULT_ONLY
3901     * @see #MATCH_DISABLED_COMPONENTS
3902     * @see #MATCH_DISABLED_UNTIL_USED_COMPONENTS
3903     * @see #MATCH_ENCRYPTION_AWARE
3904     * @see #MATCH_ENCRYPTION_AWARE_AND_UNAWARE
3905     * @see #MATCH_ENCRYPTION_UNAWARE
3906     * @see #MATCH_SYSTEM_ONLY
3907     * @see #MATCH_UNINSTALLED_PACKAGES
3908     *
3909     * @hide
3910     */
3911    public abstract ProviderInfo resolveContentProviderAsUser(String name,
3912            @ComponentInfoFlags int flags, @UserIdInt int userId);
3913
3914    /**
3915     * Retrieve content provider information.
3916     *
3917     * <p><em>Note: unlike most other methods, an empty result set is indicated
3918     * by a null return instead of an empty list.</em>
3919     *
3920     * @param processName If non-null, limits the returned providers to only
3921     *                    those that are hosted by the given process.  If null,
3922     *                    all content providers are returned.
3923     * @param uid If <var>processName</var> is non-null, this is the required
3924     *        uid owning the requested content providers.
3925     * @param flags Additional option flags. Use any combination of
3926     *         {@link #GET_META_DATA}, {@link #GET_SHARED_LIBRARY_FILES},
3927     *         {@link #MATCH_ALL}, {@link #MATCH_DEFAULT_ONLY},
3928     *         {@link #MATCH_DISABLED_COMPONENTS},  {@link #MATCH_DISABLED_UNTIL_USED_COMPONENTS},
3929     *         {@link #MATCH_ENCRYPTION_AWARE}, {@link #MATCH_ENCRYPTION_AWARE_AND_UNAWARE},
3930     *         {@link #MATCH_ENCRYPTION_UNAWARE}, {@link #MATCH_SYSTEM_ONLY}
3931     *         {@link #MATCH_UNINSTALLED_PACKAGES}
3932     *         to modify the data returned.
3933     *
3934     * @return A list of {@link ProviderInfo} objects containing one entry for
3935     *         each provider either matching <var>processName</var> or, if
3936     *         <var>processName</var> is null, all known content providers.
3937     *         <em>If there are no matching providers, null is returned.</em>
3938     *
3939     * @see #GET_META_DATA
3940     * @see #GET_SHARED_LIBRARY_FILES
3941     * @see #MATCH_ALL
3942     * @see #MATCH_DEBUG_TRIAGED_MISSING
3943     * @see #MATCH_DEFAULT_ONLY
3944     * @see #MATCH_DISABLED_COMPONENTS
3945     * @see #MATCH_DISABLED_UNTIL_USED_COMPONENTS
3946     * @see #MATCH_ENCRYPTION_AWARE
3947     * @see #MATCH_ENCRYPTION_AWARE_AND_UNAWARE
3948     * @see #MATCH_ENCRYPTION_UNAWARE
3949     * @see #MATCH_SYSTEM_ONLY
3950     * @see #MATCH_UNINSTALLED_PACKAGES
3951     */
3952    public abstract List<ProviderInfo> queryContentProviders(
3953            String processName, int uid, @ComponentInfoFlags int flags);
3954
3955    /**
3956     * Retrieve all of the information we know about a particular
3957     * instrumentation class.
3958     *
3959     * @param className The full name (i.e.
3960     *                  com.google.apps.contacts.InstrumentList) of an
3961     *                  Instrumentation class.
3962     * @param flags Additional option flags. Use any combination of
3963     *         {@link #GET_META_DATA}
3964     *         to modify the data returned.
3965     *
3966     * @return An {@link InstrumentationInfo} object containing information about the
3967     *         instrumentation.
3968     * @throws NameNotFoundException if a package with the given name cannot be
3969     *             found on the system.
3970     *
3971     * @see #GET_META_DATA
3972     */
3973    public abstract InstrumentationInfo getInstrumentationInfo(ComponentName className,
3974            @InstrumentationInfoFlags int flags) throws NameNotFoundException;
3975
3976    /**
3977     * Retrieve information about available instrumentation code.  May be used
3978     * to retrieve either all instrumentation code, or only the code targeting
3979     * a particular package.
3980     *
3981     * @param targetPackage If null, all instrumentation is returned; only the
3982     *                      instrumentation targeting this package name is
3983     *                      returned.
3984     * @param flags Additional option flags. Use any combination of
3985     *         {@link #GET_META_DATA}
3986     *         to modify the data returned.
3987     *
3988     * @return A list of {@link InstrumentationInfo} objects containing one
3989     *         entry for each matching instrumentation. If there are no
3990     *         instrumentation available, returns and empty list.
3991     *
3992     * @see #GET_META_DATA
3993     */
3994    public abstract List<InstrumentationInfo> queryInstrumentation(String targetPackage,
3995            @InstrumentationInfoFlags int flags);
3996
3997    /**
3998     * Retrieve an image from a package.  This is a low-level API used by
3999     * the various package manager info structures (such as
4000     * {@link ComponentInfo} to implement retrieval of their associated
4001     * icon.
4002     *
4003     * @param packageName The name of the package that this icon is coming from.
4004     * Cannot be null.
4005     * @param resid The resource identifier of the desired image.  Cannot be 0.
4006     * @param appInfo Overall information about <var>packageName</var>.  This
4007     * may be null, in which case the application information will be retrieved
4008     * for you if needed; if you already have this information around, it can
4009     * be much more efficient to supply it here.
4010     *
4011     * @return Returns a Drawable holding the requested image.  Returns null if
4012     * an image could not be found for any reason.
4013     */
4014    public abstract Drawable getDrawable(String packageName, @DrawableRes int resid,
4015            ApplicationInfo appInfo);
4016
4017    /**
4018     * Retrieve the icon associated with an activity.  Given the full name of
4019     * an activity, retrieves the information about it and calls
4020     * {@link ComponentInfo#loadIcon ComponentInfo.loadIcon()} to return its icon.
4021     * If the activity cannot be found, NameNotFoundException is thrown.
4022     *
4023     * @param activityName Name of the activity whose icon is to be retrieved.
4024     *
4025     * @return Returns the image of the icon, or the default activity icon if
4026     * it could not be found.  Does not return null.
4027     * @throws NameNotFoundException Thrown if the resources for the given
4028     * activity could not be loaded.
4029     *
4030     * @see #getActivityIcon(Intent)
4031     */
4032    public abstract Drawable getActivityIcon(ComponentName activityName)
4033            throws NameNotFoundException;
4034
4035    /**
4036     * Retrieve the icon associated with an Intent.  If intent.getClassName() is
4037     * set, this simply returns the result of
4038     * getActivityIcon(intent.getClassName()).  Otherwise it resolves the intent's
4039     * component and returns the icon associated with the resolved component.
4040     * If intent.getClassName() cannot be found or the Intent cannot be resolved
4041     * to a component, NameNotFoundException is thrown.
4042     *
4043     * @param intent The intent for which you would like to retrieve an icon.
4044     *
4045     * @return Returns the image of the icon, or the default activity icon if
4046     * it could not be found.  Does not return null.
4047     * @throws NameNotFoundException Thrown if the resources for application
4048     * matching the given intent could not be loaded.
4049     *
4050     * @see #getActivityIcon(ComponentName)
4051     */
4052    public abstract Drawable getActivityIcon(Intent intent)
4053            throws NameNotFoundException;
4054
4055    /**
4056     * Retrieve the banner associated with an activity. Given the full name of
4057     * an activity, retrieves the information about it and calls
4058     * {@link ComponentInfo#loadIcon ComponentInfo.loadIcon()} to return its
4059     * banner. If the activity cannot be found, NameNotFoundException is thrown.
4060     *
4061     * @param activityName Name of the activity whose banner is to be retrieved.
4062     * @return Returns the image of the banner, or null if the activity has no
4063     *         banner specified.
4064     * @throws NameNotFoundException Thrown if the resources for the given
4065     *             activity could not be loaded.
4066     * @see #getActivityBanner(Intent)
4067     */
4068    public abstract Drawable getActivityBanner(ComponentName activityName)
4069            throws NameNotFoundException;
4070
4071    /**
4072     * Retrieve the banner associated with an Intent. If intent.getClassName()
4073     * is set, this simply returns the result of
4074     * getActivityBanner(intent.getClassName()). Otherwise it resolves the
4075     * intent's component and returns the banner associated with the resolved
4076     * component. If intent.getClassName() cannot be found or the Intent cannot
4077     * be resolved to a component, NameNotFoundException is thrown.
4078     *
4079     * @param intent The intent for which you would like to retrieve a banner.
4080     * @return Returns the image of the banner, or null if the activity has no
4081     *         banner specified.
4082     * @throws NameNotFoundException Thrown if the resources for application
4083     *             matching the given intent could not be loaded.
4084     * @see #getActivityBanner(ComponentName)
4085     */
4086    public abstract Drawable getActivityBanner(Intent intent)
4087            throws NameNotFoundException;
4088
4089    /**
4090     * Return the generic icon for an activity that is used when no specific
4091     * icon is defined.
4092     *
4093     * @return Drawable Image of the icon.
4094     */
4095    public abstract Drawable getDefaultActivityIcon();
4096
4097    /**
4098     * Retrieve the icon associated with an application.  If it has not defined
4099     * an icon, the default app icon is returned.  Does not return null.
4100     *
4101     * @param info Information about application being queried.
4102     *
4103     * @return Returns the image of the icon, or the default application icon
4104     * if it could not be found.
4105     *
4106     * @see #getApplicationIcon(String)
4107     */
4108    public abstract Drawable getApplicationIcon(ApplicationInfo info);
4109
4110    /**
4111     * Retrieve the icon associated with an application.  Given the name of the
4112     * application's package, retrieves the information about it and calls
4113     * getApplicationIcon() to return its icon. If the application cannot be
4114     * found, NameNotFoundException is thrown.
4115     *
4116     * @param packageName Name of the package whose application icon is to be
4117     *                    retrieved.
4118     *
4119     * @return Returns the image of the icon, or the default application icon
4120     * if it could not be found.  Does not return null.
4121     * @throws NameNotFoundException Thrown if the resources for the given
4122     * application could not be loaded.
4123     *
4124     * @see #getApplicationIcon(ApplicationInfo)
4125     */
4126    public abstract Drawable getApplicationIcon(String packageName)
4127            throws NameNotFoundException;
4128
4129    /**
4130     * Retrieve the banner associated with an application.
4131     *
4132     * @param info Information about application being queried.
4133     * @return Returns the image of the banner or null if the application has no
4134     *         banner specified.
4135     * @see #getApplicationBanner(String)
4136     */
4137    public abstract Drawable getApplicationBanner(ApplicationInfo info);
4138
4139    /**
4140     * Retrieve the banner associated with an application. Given the name of the
4141     * application's package, retrieves the information about it and calls
4142     * getApplicationIcon() to return its banner. If the application cannot be
4143     * found, NameNotFoundException is thrown.
4144     *
4145     * @param packageName Name of the package whose application banner is to be
4146     *            retrieved.
4147     * @return Returns the image of the banner or null if the application has no
4148     *         banner specified.
4149     * @throws NameNotFoundException Thrown if the resources for the given
4150     *             application could not be loaded.
4151     * @see #getApplicationBanner(ApplicationInfo)
4152     */
4153    public abstract Drawable getApplicationBanner(String packageName)
4154            throws NameNotFoundException;
4155
4156    /**
4157     * Retrieve the logo associated with an activity. Given the full name of an
4158     * activity, retrieves the information about it and calls
4159     * {@link ComponentInfo#loadLogo ComponentInfo.loadLogo()} to return its
4160     * logo. If the activity cannot be found, NameNotFoundException is thrown.
4161     *
4162     * @param activityName Name of the activity whose logo is to be retrieved.
4163     * @return Returns the image of the logo or null if the activity has no logo
4164     *         specified.
4165     * @throws NameNotFoundException Thrown if the resources for the given
4166     *             activity could not be loaded.
4167     * @see #getActivityLogo(Intent)
4168     */
4169    public abstract Drawable getActivityLogo(ComponentName activityName)
4170            throws NameNotFoundException;
4171
4172    /**
4173     * Retrieve the logo associated with an Intent.  If intent.getClassName() is
4174     * set, this simply returns the result of
4175     * getActivityLogo(intent.getClassName()).  Otherwise it resolves the intent's
4176     * component and returns the logo associated with the resolved component.
4177     * If intent.getClassName() cannot be found or the Intent cannot be resolved
4178     * to a component, NameNotFoundException is thrown.
4179     *
4180     * @param intent The intent for which you would like to retrieve a logo.
4181     *
4182     * @return Returns the image of the logo, or null if the activity has no
4183     * logo specified.
4184     *
4185     * @throws NameNotFoundException Thrown if the resources for application
4186     * matching the given intent could not be loaded.
4187     *
4188     * @see #getActivityLogo(ComponentName)
4189     */
4190    public abstract Drawable getActivityLogo(Intent intent)
4191            throws NameNotFoundException;
4192
4193    /**
4194     * Retrieve the logo associated with an application.  If it has not specified
4195     * a logo, this method returns null.
4196     *
4197     * @param info Information about application being queried.
4198     *
4199     * @return Returns the image of the logo, or null if no logo is specified
4200     * by the application.
4201     *
4202     * @see #getApplicationLogo(String)
4203     */
4204    public abstract Drawable getApplicationLogo(ApplicationInfo info);
4205
4206    /**
4207     * Retrieve the logo associated with an application.  Given the name of the
4208     * application's package, retrieves the information about it and calls
4209     * getApplicationLogo() to return its logo. If the application cannot be
4210     * found, NameNotFoundException is thrown.
4211     *
4212     * @param packageName Name of the package whose application logo is to be
4213     *                    retrieved.
4214     *
4215     * @return Returns the image of the logo, or null if no application logo
4216     * has been specified.
4217     *
4218     * @throws NameNotFoundException Thrown if the resources for the given
4219     * application could not be loaded.
4220     *
4221     * @see #getApplicationLogo(ApplicationInfo)
4222     */
4223    public abstract Drawable getApplicationLogo(String packageName)
4224            throws NameNotFoundException;
4225
4226    /**
4227     * If the target user is a managed profile of the calling user or if the
4228     * target user is the caller and is itself a managed profile, then this
4229     * returns a badged copy of the given icon to be able to distinguish it from
4230     * the original icon. For badging an arbitrary drawable use
4231     * {@link #getUserBadgedDrawableForDensity(
4232     * android.graphics.drawable.Drawable, UserHandle, android.graphics.Rect, int)}.
4233     * <p>
4234     * If the original drawable is a BitmapDrawable and the backing bitmap is
4235     * mutable as per {@link android.graphics.Bitmap#isMutable()}, the badging
4236     * is performed in place and the original drawable is returned.
4237     * </p>
4238     *
4239     * @param icon The icon to badge.
4240     * @param user The target user.
4241     * @return A drawable that combines the original icon and a badge as
4242     *         determined by the system.
4243     */
4244    public abstract Drawable getUserBadgedIcon(Drawable icon, UserHandle user);
4245
4246    /**
4247     * If the target user is a managed profile of the calling user or the caller
4248     * is itself a managed profile, then this returns a badged copy of the given
4249     * drawable allowing the user to distinguish it from the original drawable.
4250     * The caller can specify the location in the bounds of the drawable to be
4251     * badged where the badge should be applied as well as the density of the
4252     * badge to be used.
4253     * <p>
4254     * If the original drawable is a BitmapDrawable and the backing bitmap is
4255     * mutable as per {@link android.graphics.Bitmap#isMutable()}, the bading
4256     * is performed in place and the original drawable is returned.
4257     * </p>
4258     *
4259     * @param drawable The drawable to badge.
4260     * @param user The target user.
4261     * @param badgeLocation Where in the bounds of the badged drawable to place
4262     *         the badge. If not provided, the badge is applied on top of the entire
4263     *         drawable being badged.
4264     * @param badgeDensity The optional desired density for the badge as per
4265     *         {@link android.util.DisplayMetrics#densityDpi}. If not provided,
4266     *         the density of the display is used.
4267     * @return A drawable that combines the original drawable and a badge as
4268     *         determined by the system.
4269     */
4270    public abstract Drawable getUserBadgedDrawableForDensity(Drawable drawable,
4271            UserHandle user, Rect badgeLocation, int badgeDensity);
4272
4273    /**
4274     * If the target user is a managed profile of the calling user or the caller
4275     * is itself a managed profile, then this returns a drawable to use as a small
4276     * icon to include in a view to distinguish it from the original icon.
4277     *
4278     * @param user The target user.
4279     * @param density The optional desired density for the badge as per
4280     *         {@link android.util.DisplayMetrics#densityDpi}. If not provided
4281     *         the density of the current display is used.
4282     * @return the drawable or null if no drawable is required.
4283     * @hide
4284     */
4285    public abstract Drawable getUserBadgeForDensity(UserHandle user, int density);
4286
4287    /**
4288     * If the target user is a managed profile of the calling user or the caller
4289     * is itself a managed profile, then this returns a drawable to use as a small
4290     * icon to include in a view to distinguish it from the original icon. This version
4291     * doesn't have background protection and should be used over a light background instead of
4292     * a badge.
4293     *
4294     * @param user The target user.
4295     * @param density The optional desired density for the badge as per
4296     *         {@link android.util.DisplayMetrics#densityDpi}. If not provided
4297     *         the density of the current display is used.
4298     * @return the drawable or null if no drawable is required.
4299     * @hide
4300     */
4301    public abstract Drawable getUserBadgeForDensityNoBackground(UserHandle user, int density);
4302
4303    /**
4304     * If the target user is a managed profile of the calling user or the caller
4305     * is itself a managed profile, then this returns a copy of the label with
4306     * badging for accessibility services like talkback. E.g. passing in "Email"
4307     * and it might return "Work Email" for Email in the work profile.
4308     *
4309     * @param label The label to change.
4310     * @param user The target user.
4311     * @return A label that combines the original label and a badge as
4312     *         determined by the system.
4313     */
4314    public abstract CharSequence getUserBadgedLabel(CharSequence label, UserHandle user);
4315
4316    /**
4317     * Retrieve text from a package.  This is a low-level API used by
4318     * the various package manager info structures (such as
4319     * {@link ComponentInfo} to implement retrieval of their associated
4320     * labels and other text.
4321     *
4322     * @param packageName The name of the package that this text is coming from.
4323     * Cannot be null.
4324     * @param resid The resource identifier of the desired text.  Cannot be 0.
4325     * @param appInfo Overall information about <var>packageName</var>.  This
4326     * may be null, in which case the application information will be retrieved
4327     * for you if needed; if you already have this information around, it can
4328     * be much more efficient to supply it here.
4329     *
4330     * @return Returns a CharSequence holding the requested text.  Returns null
4331     * if the text could not be found for any reason.
4332     */
4333    public abstract CharSequence getText(String packageName, @StringRes int resid,
4334            ApplicationInfo appInfo);
4335
4336    /**
4337     * Retrieve an XML file from a package.  This is a low-level API used to
4338     * retrieve XML meta data.
4339     *
4340     * @param packageName The name of the package that this xml is coming from.
4341     * Cannot be null.
4342     * @param resid The resource identifier of the desired xml.  Cannot be 0.
4343     * @param appInfo Overall information about <var>packageName</var>.  This
4344     * may be null, in which case the application information will be retrieved
4345     * for you if needed; if you already have this information around, it can
4346     * be much more efficient to supply it here.
4347     *
4348     * @return Returns an XmlPullParser allowing you to parse out the XML
4349     * data.  Returns null if the xml resource could not be found for any
4350     * reason.
4351     */
4352    public abstract XmlResourceParser getXml(String packageName, @XmlRes int resid,
4353            ApplicationInfo appInfo);
4354
4355    /**
4356     * Return the label to use for this application.
4357     *
4358     * @return Returns the label associated with this application, or null if
4359     * it could not be found for any reason.
4360     * @param info The application to get the label of.
4361     */
4362    public abstract CharSequence getApplicationLabel(ApplicationInfo info);
4363
4364    /**
4365     * Retrieve the resources associated with an activity.  Given the full
4366     * name of an activity, retrieves the information about it and calls
4367     * getResources() to return its application's resources.  If the activity
4368     * cannot be found, NameNotFoundException is thrown.
4369     *
4370     * @param activityName Name of the activity whose resources are to be
4371     *                     retrieved.
4372     *
4373     * @return Returns the application's Resources.
4374     * @throws NameNotFoundException Thrown if the resources for the given
4375     * application could not be loaded.
4376     *
4377     * @see #getResourcesForApplication(ApplicationInfo)
4378     */
4379    public abstract Resources getResourcesForActivity(ComponentName activityName)
4380            throws NameNotFoundException;
4381
4382    /**
4383     * Retrieve the resources for an application.  Throws NameNotFoundException
4384     * if the package is no longer installed.
4385     *
4386     * @param app Information about the desired application.
4387     *
4388     * @return Returns the application's Resources.
4389     * @throws NameNotFoundException Thrown if the resources for the given
4390     * application could not be loaded (most likely because it was uninstalled).
4391     */
4392    public abstract Resources getResourcesForApplication(ApplicationInfo app)
4393            throws NameNotFoundException;
4394
4395    /**
4396     * Retrieve the resources associated with an application.  Given the full
4397     * package name of an application, retrieves the information about it and
4398     * calls getResources() to return its application's resources.  If the
4399     * appPackageName cannot be found, NameNotFoundException is thrown.
4400     *
4401     * @param appPackageName Package name of the application whose resources
4402     *                       are to be retrieved.
4403     *
4404     * @return Returns the application's Resources.
4405     * @throws NameNotFoundException Thrown if the resources for the given
4406     * application could not be loaded.
4407     *
4408     * @see #getResourcesForApplication(ApplicationInfo)
4409     */
4410    public abstract Resources getResourcesForApplication(String appPackageName)
4411            throws NameNotFoundException;
4412
4413    /** @hide */
4414    public abstract Resources getResourcesForApplicationAsUser(String appPackageName,
4415            @UserIdInt int userId) throws NameNotFoundException;
4416
4417    /**
4418     * Retrieve overall information about an application package defined
4419     * in a package archive file
4420     *
4421     * @param archiveFilePath The path to the archive file
4422     * @param flags Additional option flags. Use any combination of
4423     *         {@link #GET_ACTIVITIES}, {@link #GET_CONFIGURATIONS},
4424     *         {@link #GET_GIDS}, {@link #GET_INSTRUMENTATION},
4425     *         {@link #GET_INTENT_FILTERS}, {@link #GET_META_DATA},
4426     *         {@link #GET_PERMISSIONS}, {@link #GET_PROVIDERS},
4427     *         {@link #GET_RECEIVERS}, {@link #GET_SERVICES},
4428     *         {@link #GET_SHARED_LIBRARY_FILES}, {@link #GET_SIGNATURES},
4429     *         {@link #GET_URI_PERMISSION_PATTERNS}, {@link #GET_UNINSTALLED_PACKAGES},
4430     *         {@link #MATCH_DISABLED_COMPONENTS}, {@link #MATCH_DISABLED_UNTIL_USED_COMPONENTS},
4431     *         {@link #MATCH_UNINSTALLED_PACKAGES}
4432     *         to modify the data returned.
4433     *
4434     * @return A PackageInfo object containing information about the
4435     *         package archive. If the package could not be parsed,
4436     *         returns null.
4437     *
4438     * @see #GET_ACTIVITIES
4439     * @see #GET_CONFIGURATIONS
4440     * @see #GET_GIDS
4441     * @see #GET_INSTRUMENTATION
4442     * @see #GET_INTENT_FILTERS
4443     * @see #GET_META_DATA
4444     * @see #GET_PERMISSIONS
4445     * @see #GET_PROVIDERS
4446     * @see #GET_RECEIVERS
4447     * @see #GET_SERVICES
4448     * @see #GET_SHARED_LIBRARY_FILES
4449     * @see #GET_SIGNATURES
4450     * @see #GET_URI_PERMISSION_PATTERNS
4451     * @see #MATCH_DISABLED_COMPONENTS
4452     * @see #MATCH_DISABLED_UNTIL_USED_COMPONENTS
4453     * @see #MATCH_UNINSTALLED_PACKAGES
4454     *
4455     */
4456    public PackageInfo getPackageArchiveInfo(String archiveFilePath, @PackageInfoFlags int flags) {
4457        final PackageParser parser = new PackageParser();
4458        final File apkFile = new File(archiveFilePath);
4459        try {
4460            if ((flags & (MATCH_ENCRYPTION_UNAWARE | MATCH_ENCRYPTION_AWARE)) != 0) {
4461                // Caller expressed an explicit opinion about what encryption
4462                // aware/unaware components they want to see, so fall through and
4463                // give them what they want
4464            } else {
4465                // Caller expressed no opinion, so match everything
4466                flags |= MATCH_ENCRYPTION_AWARE_AND_UNAWARE;
4467            }
4468
4469            PackageParser.Package pkg = parser.parseMonolithicPackage(apkFile, 0);
4470            if ((flags & GET_SIGNATURES) != 0) {
4471                parser.collectCertificates(pkg, 0);
4472            }
4473            PackageUserState state = new PackageUserState();
4474            return PackageParser.generatePackageInfo(pkg, null, flags, 0, 0, null, state);
4475        } catch (PackageParserException e) {
4476            return null;
4477        }
4478    }
4479
4480    /**
4481     * @deprecated replaced by {@link PackageInstaller}
4482     * @hide
4483     */
4484    @Deprecated
4485    public abstract void installPackage(
4486            Uri packageURI, IPackageInstallObserver observer, @InstallFlags int flags,
4487            String installerPackageName);
4488
4489    /**
4490     * @deprecated replaced by {@link PackageInstaller}
4491     * @hide
4492     */
4493    @Deprecated
4494    public abstract void installPackageWithVerification(Uri packageURI,
4495            IPackageInstallObserver observer, @InstallFlags int flags, String installerPackageName,
4496            Uri verificationURI, ContainerEncryptionParams encryptionParams);
4497
4498    /**
4499     * @deprecated replaced by {@link PackageInstaller}
4500     * @hide
4501     */
4502    @Deprecated
4503    public abstract void installPackageWithVerificationAndEncryption(Uri packageURI,
4504            IPackageInstallObserver observer, @InstallFlags int flags, String installerPackageName,
4505            VerificationParams verificationParams, ContainerEncryptionParams encryptionParams);
4506
4507    /**
4508     * @deprecated replaced by {@link PackageInstaller}
4509     * @hide
4510     */
4511    @Deprecated
4512    public abstract void installPackage(Uri packageURI, PackageInstallObserver observer,
4513            @InstallFlags int flags, String installerPackageName);
4514
4515    /**
4516     * @deprecated replaced by {@link PackageInstaller}
4517     * @hide
4518     */
4519    @Deprecated
4520    public abstract void installPackageAsUser(Uri packageURI, PackageInstallObserver observer,
4521            @InstallFlags int flags, String installerPackageName, @UserIdInt int userId);
4522
4523    /**
4524     * @deprecated replaced by {@link PackageInstaller}
4525     * @hide
4526     */
4527    @Deprecated
4528    public abstract void installPackageWithVerification(Uri packageURI,
4529            PackageInstallObserver observer, @InstallFlags int flags, String installerPackageName,
4530            Uri verificationURI, ContainerEncryptionParams encryptionParams);
4531
4532    /**
4533     * @deprecated replaced by {@link PackageInstaller}
4534     * @hide
4535     */
4536    @Deprecated
4537    public abstract void installPackageWithVerificationAndEncryption(Uri packageURI,
4538            PackageInstallObserver observer, @InstallFlags int flags, String installerPackageName,
4539            VerificationParams verificationParams, ContainerEncryptionParams encryptionParams);
4540
4541    /**
4542     * If there is already an application with the given package name installed
4543     * on the system for other users, also install it for the calling user.
4544     * @hide
4545     */
4546    public abstract int installExistingPackage(String packageName) throws NameNotFoundException;
4547
4548    /**
4549     * If there is already an application with the given package name installed
4550     * on the system for other users, also install it for the specified user.
4551     * @hide
4552     */
4553     @RequiresPermission(anyOf = {
4554            Manifest.permission.INSTALL_PACKAGES,
4555            Manifest.permission.INTERACT_ACROSS_USERS_FULL})
4556    public abstract int installExistingPackageAsUser(String packageName, @UserIdInt int userId)
4557            throws NameNotFoundException;
4558
4559    /**
4560     * Allows a package listening to the
4561     * {@link Intent#ACTION_PACKAGE_NEEDS_VERIFICATION package verification
4562     * broadcast} to respond to the package manager. The response must include
4563     * the {@code verificationCode} which is one of
4564     * {@link PackageManager#VERIFICATION_ALLOW} or
4565     * {@link PackageManager#VERIFICATION_REJECT}.
4566     *
4567     * @param id pending package identifier as passed via the
4568     *            {@link PackageManager#EXTRA_VERIFICATION_ID} Intent extra.
4569     * @param verificationCode either {@link PackageManager#VERIFICATION_ALLOW}
4570     *            or {@link PackageManager#VERIFICATION_REJECT}.
4571     * @throws SecurityException if the caller does not have the
4572     *            PACKAGE_VERIFICATION_AGENT permission.
4573     */
4574    public abstract void verifyPendingInstall(int id, int verificationCode);
4575
4576    /**
4577     * Allows a package listening to the
4578     * {@link Intent#ACTION_PACKAGE_NEEDS_VERIFICATION package verification
4579     * broadcast} to extend the default timeout for a response and declare what
4580     * action to perform after the timeout occurs. The response must include
4581     * the {@code verificationCodeAtTimeout} which is one of
4582     * {@link PackageManager#VERIFICATION_ALLOW} or
4583     * {@link PackageManager#VERIFICATION_REJECT}.
4584     *
4585     * This method may only be called once per package id. Additional calls
4586     * will have no effect.
4587     *
4588     * @param id pending package identifier as passed via the
4589     *            {@link PackageManager#EXTRA_VERIFICATION_ID} Intent extra.
4590     * @param verificationCodeAtTimeout either
4591     *            {@link PackageManager#VERIFICATION_ALLOW} or
4592     *            {@link PackageManager#VERIFICATION_REJECT}. If
4593     *            {@code verificationCodeAtTimeout} is neither
4594     *            {@link PackageManager#VERIFICATION_ALLOW} or
4595     *            {@link PackageManager#VERIFICATION_REJECT}, then
4596     *            {@code verificationCodeAtTimeout} will default to
4597     *            {@link PackageManager#VERIFICATION_REJECT}.
4598     * @param millisecondsToDelay the amount of time requested for the timeout.
4599     *            Must be positive and less than
4600     *            {@link PackageManager#MAXIMUM_VERIFICATION_TIMEOUT}. If
4601     *            {@code millisecondsToDelay} is out of bounds,
4602     *            {@code millisecondsToDelay} will be set to the closest in
4603     *            bounds value; namely, 0 or
4604     *            {@link PackageManager#MAXIMUM_VERIFICATION_TIMEOUT}.
4605     * @throws SecurityException if the caller does not have the
4606     *            PACKAGE_VERIFICATION_AGENT permission.
4607     */
4608    public abstract void extendVerificationTimeout(int id,
4609            int verificationCodeAtTimeout, long millisecondsToDelay);
4610
4611    /**
4612     * Allows a package listening to the
4613     * {@link Intent#ACTION_INTENT_FILTER_NEEDS_VERIFICATION intent filter verification
4614     * broadcast} to respond to the package manager. The response must include
4615     * the {@code verificationCode} which is one of
4616     * {@link PackageManager#INTENT_FILTER_VERIFICATION_SUCCESS} or
4617     * {@link PackageManager#INTENT_FILTER_VERIFICATION_FAILURE}.
4618     *
4619     * @param verificationId pending package identifier as passed via the
4620     *            {@link PackageManager#EXTRA_VERIFICATION_ID} Intent extra.
4621     * @param verificationCode either {@link PackageManager#INTENT_FILTER_VERIFICATION_SUCCESS}
4622     *            or {@link PackageManager#INTENT_FILTER_VERIFICATION_FAILURE}.
4623     * @param outFailedDomains a list of failed domains if the verificationCode is
4624     *            {@link PackageManager#INTENT_FILTER_VERIFICATION_FAILURE}, otherwise null;
4625     * @throws SecurityException if the caller does not have the
4626     *            INTENT_FILTER_VERIFICATION_AGENT permission.
4627     *
4628     * @hide
4629     */
4630    @SystemApi
4631    public abstract void verifyIntentFilter(int verificationId, int verificationCode,
4632            List<String> outFailedDomains);
4633
4634    /**
4635     * Get the status of a Domain Verification Result for an IntentFilter. This is
4636     * related to the {@link android.content.IntentFilter#setAutoVerify(boolean)} and
4637     * {@link android.content.IntentFilter#getAutoVerify()}
4638     *
4639     * This is used by the ResolverActivity to change the status depending on what the User select
4640     * in the Disambiguation Dialog and also used by the Settings App for changing the default App
4641     * for a domain.
4642     *
4643     * @param packageName The package name of the Activity associated with the IntentFilter.
4644     * @param userId The user id.
4645     *
4646     * @return The status to set to. This can be
4647     *              {@link #INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_ASK} or
4648     *              {@link #INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_ALWAYS} or
4649     *              {@link #INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_NEVER} or
4650     *              {@link #INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_UNDEFINED}
4651     *
4652     * @hide
4653     */
4654    public abstract int getIntentVerificationStatusAsUser(String packageName, @UserIdInt int userId);
4655
4656    /**
4657     * Allow to change the status of a Intent Verification status for all IntentFilter of an App.
4658     * This is related to the {@link android.content.IntentFilter#setAutoVerify(boolean)} and
4659     * {@link android.content.IntentFilter#getAutoVerify()}
4660     *
4661     * This is used by the ResolverActivity to change the status depending on what the User select
4662     * in the Disambiguation Dialog and also used by the Settings App for changing the default App
4663     * for a domain.
4664     *
4665     * @param packageName The package name of the Activity associated with the IntentFilter.
4666     * @param status The status to set to. This can be
4667     *              {@link #INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_ASK} or
4668     *              {@link #INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_ALWAYS} or
4669     *              {@link #INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_NEVER}
4670     * @param userId The user id.
4671     *
4672     * @return true if the status has been set. False otherwise.
4673     *
4674     * @hide
4675     */
4676    public abstract boolean updateIntentVerificationStatusAsUser(String packageName, int status,
4677            @UserIdInt int userId);
4678
4679    /**
4680     * Get the list of IntentFilterVerificationInfo for a specific package and User.
4681     *
4682     * @param packageName the package name. When this parameter is set to a non null value,
4683     *                    the results will be filtered by the package name provided.
4684     *                    Otherwise, there will be no filtering and it will return a list
4685     *                    corresponding for all packages
4686     *
4687     * @return a list of IntentFilterVerificationInfo for a specific package.
4688     *
4689     * @hide
4690     */
4691    public abstract List<IntentFilterVerificationInfo> getIntentFilterVerifications(
4692            String packageName);
4693
4694    /**
4695     * Get the list of IntentFilter for a specific package.
4696     *
4697     * @param packageName the package name. This parameter is set to a non null value,
4698     *                    the list will contain all the IntentFilter for that package.
4699     *                    Otherwise, the list will be empty.
4700     *
4701     * @return a list of IntentFilter for a specific package.
4702     *
4703     * @hide
4704     */
4705    public abstract List<IntentFilter> getAllIntentFilters(String packageName);
4706
4707    /**
4708     * Get the default Browser package name for a specific user.
4709     *
4710     * @param userId The user id.
4711     *
4712     * @return the package name of the default Browser for the specified user. If the user id passed
4713     *         is -1 (all users) it will return a null value.
4714     *
4715     * @hide
4716     */
4717    @TestApi
4718    public abstract String getDefaultBrowserPackageNameAsUser(@UserIdInt int userId);
4719
4720    /**
4721     * Set the default Browser package name for a specific user.
4722     *
4723     * @param packageName The package name of the default Browser.
4724     * @param userId The user id.
4725     *
4726     * @return true if the default Browser for the specified user has been set,
4727     *         otherwise return false. If the user id passed is -1 (all users) this call will not
4728     *         do anything and just return false.
4729     *
4730     * @hide
4731     */
4732    public abstract boolean setDefaultBrowserPackageNameAsUser(String packageName,
4733            @UserIdInt int userId);
4734
4735    /**
4736     * Change the installer associated with a given package.  There are limitations
4737     * on how the installer package can be changed; in particular:
4738     * <ul>
4739     * <li> A SecurityException will be thrown if <var>installerPackageName</var>
4740     * is not signed with the same certificate as the calling application.
4741     * <li> A SecurityException will be thrown if <var>targetPackage</var> already
4742     * has an installer package, and that installer package is not signed with
4743     * the same certificate as the calling application.
4744     * </ul>
4745     *
4746     * @param targetPackage The installed package whose installer will be changed.
4747     * @param installerPackageName The package name of the new installer.  May be
4748     * null to clear the association.
4749     */
4750    public abstract void setInstallerPackageName(String targetPackage,
4751            String installerPackageName);
4752
4753    /**
4754     * Attempts to delete a package. Since this may take a little while, the
4755     * result will be posted back to the given observer. A deletion will fail if
4756     * the calling context lacks the
4757     * {@link android.Manifest.permission#DELETE_PACKAGES} permission, if the
4758     * named package cannot be found, or if the named package is a system
4759     * package.
4760     *
4761     * @param packageName The name of the package to delete
4762     * @param observer An observer callback to get notified when the package
4763     *            deletion is complete.
4764     *            {@link android.content.pm.IPackageDeleteObserver#packageDeleted}
4765     *            will be called when that happens. observer may be null to
4766     *            indicate that no callback is desired.
4767     * @hide
4768     */
4769    public abstract void deletePackage(String packageName, IPackageDeleteObserver observer,
4770            @DeleteFlags int flags);
4771
4772    /**
4773     * Attempts to delete a package. Since this may take a little while, the
4774     * result will be posted back to the given observer. A deletion will fail if
4775     * the named package cannot be found, or if the named package is a system
4776     * package.
4777     *
4778     * @param packageName The name of the package to delete
4779     * @param observer An observer callback to get notified when the package
4780     *            deletion is complete.
4781     *            {@link android.content.pm.IPackageDeleteObserver#packageDeleted}
4782     *            will be called when that happens. observer may be null to
4783     *            indicate that no callback is desired.
4784     * @param userId The user Id
4785     * @hide
4786     */
4787     @RequiresPermission(anyOf = {
4788            Manifest.permission.DELETE_PACKAGES,
4789            Manifest.permission.INTERACT_ACROSS_USERS_FULL})
4790    public abstract void deletePackageAsUser(String packageName, IPackageDeleteObserver observer,
4791            @DeleteFlags int flags, @UserIdInt int userId);
4792
4793    /**
4794     * Retrieve the package name of the application that installed a package. This identifies
4795     * which market the package came from.
4796     *
4797     * @param packageName The name of the package to query
4798     */
4799    public abstract String getInstallerPackageName(String packageName);
4800
4801    /**
4802     * Attempts to clear the user data directory of an application.
4803     * Since this may take a little while, the result will
4804     * be posted back to the given observer.  A deletion will fail if the
4805     * named package cannot be found, or if the named package is a "system package".
4806     *
4807     * @param packageName The name of the package
4808     * @param observer An observer callback to get notified when the operation is finished
4809     * {@link android.content.pm.IPackageDataObserver#onRemoveCompleted(String, boolean)}
4810     * will be called when that happens.  observer may be null to indicate that
4811     * no callback is desired.
4812     *
4813     * @hide
4814     */
4815    public abstract void clearApplicationUserData(String packageName,
4816            IPackageDataObserver observer);
4817    /**
4818     * Attempts to delete the cache files associated with an application.
4819     * Since this may take a little while, the result will
4820     * be posted back to the given observer.  A deletion will fail if the calling context
4821     * lacks the {@link android.Manifest.permission#DELETE_CACHE_FILES} permission, if the
4822     * named package cannot be found, or if the named package is a "system package".
4823     *
4824     * @param packageName The name of the package to delete
4825     * @param observer An observer callback to get notified when the cache file deletion
4826     * is complete.
4827     * {@link android.content.pm.IPackageDataObserver#onRemoveCompleted(String, boolean)}
4828     * will be called when that happens.  observer may be null to indicate that
4829     * no callback is desired.
4830     *
4831     * @hide
4832     */
4833    public abstract void deleteApplicationCacheFiles(String packageName,
4834            IPackageDataObserver observer);
4835
4836    /**
4837     * Free storage by deleting LRU sorted list of cache files across
4838     * all applications. If the currently available free storage
4839     * on the device is greater than or equal to the requested
4840     * free storage, no cache files are cleared. If the currently
4841     * available storage on the device is less than the requested
4842     * free storage, some or all of the cache files across
4843     * all applications are deleted (based on last accessed time)
4844     * to increase the free storage space on the device to
4845     * the requested value. There is no guarantee that clearing all
4846     * the cache files from all applications will clear up
4847     * enough storage to achieve the desired value.
4848     * @param freeStorageSize The number of bytes of storage to be
4849     * freed by the system. Say if freeStorageSize is XX,
4850     * and the current free storage is YY,
4851     * if XX is less than YY, just return. if not free XX-YY number
4852     * of bytes if possible.
4853     * @param observer call back used to notify when
4854     * the operation is completed
4855     *
4856     * @hide
4857     */
4858    public void freeStorageAndNotify(long freeStorageSize, IPackageDataObserver observer) {
4859        freeStorageAndNotify(null, freeStorageSize, observer);
4860    }
4861
4862    /** {@hide} */
4863    public abstract void freeStorageAndNotify(String volumeUuid, long freeStorageSize,
4864            IPackageDataObserver observer);
4865
4866    /**
4867     * Free storage by deleting LRU sorted list of cache files across
4868     * all applications. If the currently available free storage
4869     * on the device is greater than or equal to the requested
4870     * free storage, no cache files are cleared. If the currently
4871     * available storage on the device is less than the requested
4872     * free storage, some or all of the cache files across
4873     * all applications are deleted (based on last accessed time)
4874     * to increase the free storage space on the device to
4875     * the requested value. There is no guarantee that clearing all
4876     * the cache files from all applications will clear up
4877     * enough storage to achieve the desired value.
4878     * @param freeStorageSize The number of bytes of storage to be
4879     * freed by the system. Say if freeStorageSize is XX,
4880     * and the current free storage is YY,
4881     * if XX is less than YY, just return. if not free XX-YY number
4882     * of bytes if possible.
4883     * @param pi IntentSender call back used to
4884     * notify when the operation is completed.May be null
4885     * to indicate that no call back is desired.
4886     *
4887     * @hide
4888     */
4889    public void freeStorage(long freeStorageSize, IntentSender pi) {
4890        freeStorage(null, freeStorageSize, pi);
4891    }
4892
4893    /** {@hide} */
4894    public abstract void freeStorage(String volumeUuid, long freeStorageSize, IntentSender pi);
4895
4896    /**
4897     * Retrieve the size information for a package.
4898     * Since this may take a little while, the result will
4899     * be posted back to the given observer.  The calling context
4900     * should have the {@link android.Manifest.permission#GET_PACKAGE_SIZE} permission.
4901     *
4902     * @param packageName The name of the package whose size information is to be retrieved
4903     * @param userId The user whose size information should be retrieved.
4904     * @param observer An observer callback to get notified when the operation
4905     * is complete.
4906     * {@link android.content.pm.IPackageStatsObserver#onGetStatsCompleted(PackageStats, boolean)}
4907     * The observer's callback is invoked with a PackageStats object(containing the
4908     * code, data and cache sizes of the package) and a boolean value representing
4909     * the status of the operation. observer may be null to indicate that
4910     * no callback is desired.
4911     *
4912     * @hide
4913     */
4914    public abstract void getPackageSizeInfoAsUser(String packageName, @UserIdInt int userId,
4915            IPackageStatsObserver observer);
4916
4917    /**
4918     * Like {@link #getPackageSizeInfoAsUser(String, int, IPackageStatsObserver)}, but
4919     * returns the size for the calling user.
4920     *
4921     * @hide
4922     */
4923    public void getPackageSizeInfo(String packageName, IPackageStatsObserver observer) {
4924        getPackageSizeInfoAsUser(packageName, UserHandle.myUserId(), observer);
4925    }
4926
4927    /**
4928     * @deprecated This function no longer does anything; it was an old
4929     * approach to managing preferred activities, which has been superseded
4930     * by (and conflicts with) the modern activity-based preferences.
4931     */
4932    @Deprecated
4933    public abstract void addPackageToPreferred(String packageName);
4934
4935    /**
4936     * @deprecated This function no longer does anything; it was an old
4937     * approach to managing preferred activities, which has been superseded
4938     * by (and conflicts with) the modern activity-based preferences.
4939     */
4940    @Deprecated
4941    public abstract void removePackageFromPreferred(String packageName);
4942
4943    /**
4944     * Retrieve the list of all currently configured preferred packages.  The
4945     * first package on the list is the most preferred, the last is the
4946     * least preferred.
4947     *
4948     * @param flags Additional option flags. Use any combination of
4949     *         {@link #GET_ACTIVITIES}, {@link #GET_CONFIGURATIONS},
4950     *         {@link #GET_GIDS}, {@link #GET_INSTRUMENTATION},
4951     *         {@link #GET_INTENT_FILTERS}, {@link #GET_META_DATA},
4952     *         {@link #GET_PERMISSIONS}, {@link #GET_PROVIDERS},
4953     *         {@link #GET_RECEIVERS}, {@link #GET_SERVICES},
4954     *         {@link #GET_SHARED_LIBRARY_FILES}, {@link #GET_SIGNATURES},
4955     *         {@link #GET_URI_PERMISSION_PATTERNS}, {@link #GET_UNINSTALLED_PACKAGES},
4956     *         {@link #MATCH_DISABLED_COMPONENTS}, {@link #MATCH_DISABLED_UNTIL_USED_COMPONENTS},
4957     *         {@link #MATCH_UNINSTALLED_PACKAGES}
4958     *         to modify the data returned.
4959     *
4960     * @return A List of PackageInfo objects, one for each preferred application,
4961     *         in order of preference.
4962     *
4963     * @see #GET_ACTIVITIES
4964     * @see #GET_CONFIGURATIONS
4965     * @see #GET_GIDS
4966     * @see #GET_INSTRUMENTATION
4967     * @see #GET_INTENT_FILTERS
4968     * @see #GET_META_DATA
4969     * @see #GET_PERMISSIONS
4970     * @see #GET_PROVIDERS
4971     * @see #GET_RECEIVERS
4972     * @see #GET_SERVICES
4973     * @see #GET_SHARED_LIBRARY_FILES
4974     * @see #GET_SIGNATURES
4975     * @see #GET_URI_PERMISSION_PATTERNS
4976     * @see #MATCH_DISABLED_COMPONENTS
4977     * @see #MATCH_DISABLED_UNTIL_USED_COMPONENTS
4978     * @see #MATCH_UNINSTALLED_PACKAGES
4979     */
4980    public abstract List<PackageInfo> getPreferredPackages(@PackageInfoFlags int flags);
4981
4982    /**
4983     * @deprecated This is a protected API that should not have been available
4984     * to third party applications.  It is the platform's responsibility for
4985     * assigning preferred activities and this cannot be directly modified.
4986     *
4987     * Add a new preferred activity mapping to the system.  This will be used
4988     * to automatically select the given activity component when
4989     * {@link Context#startActivity(Intent) Context.startActivity()} finds
4990     * multiple matching activities and also matches the given filter.
4991     *
4992     * @param filter The set of intents under which this activity will be
4993     * made preferred.
4994     * @param match The IntentFilter match category that this preference
4995     * applies to.
4996     * @param set The set of activities that the user was picking from when
4997     * this preference was made.
4998     * @param activity The component name of the activity that is to be
4999     * preferred.
5000     */
5001    @Deprecated
5002    public abstract void addPreferredActivity(IntentFilter filter, int match,
5003            ComponentName[] set, ComponentName activity);
5004
5005    /**
5006     * Same as {@link #addPreferredActivity(IntentFilter, int,
5007            ComponentName[], ComponentName)}, but with a specific userId to apply the preference
5008            to.
5009     * @hide
5010     */
5011    public void addPreferredActivityAsUser(IntentFilter filter, int match,
5012            ComponentName[] set, ComponentName activity, @UserIdInt int userId) {
5013        throw new RuntimeException("Not implemented. Must override in a subclass.");
5014    }
5015
5016    /**
5017     * @deprecated This is a protected API that should not have been available
5018     * to third party applications.  It is the platform's responsibility for
5019     * assigning preferred activities and this cannot be directly modified.
5020     *
5021     * Replaces an existing preferred activity mapping to the system, and if that were not present
5022     * adds a new preferred activity.  This will be used
5023     * to automatically select the given activity component when
5024     * {@link Context#startActivity(Intent) Context.startActivity()} finds
5025     * multiple matching activities and also matches the given filter.
5026     *
5027     * @param filter The set of intents under which this activity will be
5028     * made preferred.
5029     * @param match The IntentFilter match category that this preference
5030     * applies to.
5031     * @param set The set of activities that the user was picking from when
5032     * this preference was made.
5033     * @param activity The component name of the activity that is to be
5034     * preferred.
5035     * @hide
5036     */
5037    @Deprecated
5038    public abstract void replacePreferredActivity(IntentFilter filter, int match,
5039            ComponentName[] set, ComponentName activity);
5040
5041    /**
5042     * @hide
5043     */
5044    @Deprecated
5045    public void replacePreferredActivityAsUser(IntentFilter filter, int match,
5046           ComponentName[] set, ComponentName activity, @UserIdInt int userId) {
5047        throw new RuntimeException("Not implemented. Must override in a subclass.");
5048    }
5049
5050    /**
5051     * Remove all preferred activity mappings, previously added with
5052     * {@link #addPreferredActivity}, from the
5053     * system whose activities are implemented in the given package name.
5054     * An application can only clear its own package(s).
5055     *
5056     * @param packageName The name of the package whose preferred activity
5057     * mappings are to be removed.
5058     */
5059    public abstract void clearPackagePreferredActivities(String packageName);
5060
5061    /**
5062     * Retrieve all preferred activities, previously added with
5063     * {@link #addPreferredActivity}, that are
5064     * currently registered with the system.
5065     *
5066     * @param outFilters A required list in which to place the filters of all of the
5067     * preferred activities.
5068     * @param outActivities A required list in which to place the component names of
5069     * all of the preferred activities.
5070     * @param packageName An optional package in which you would like to limit
5071     * the list.  If null, all activities will be returned; if non-null, only
5072     * those activities in the given package are returned.
5073     *
5074     * @return Returns the total number of registered preferred activities
5075     * (the number of distinct IntentFilter records, not the number of unique
5076     * activity components) that were found.
5077     */
5078    public abstract int getPreferredActivities(@NonNull List<IntentFilter> outFilters,
5079            @NonNull List<ComponentName> outActivities, String packageName);
5080
5081    /**
5082     * Ask for the set of available 'home' activities and the current explicit
5083     * default, if any.
5084     * @hide
5085     */
5086    public abstract ComponentName getHomeActivities(List<ResolveInfo> outActivities);
5087
5088    /**
5089     * Set the enabled setting for a package component (activity, receiver, service, provider).
5090     * This setting will override any enabled state which may have been set by the component in its
5091     * manifest.
5092     *
5093     * @param componentName The component to enable
5094     * @param newState The new enabled state for the component.  The legal values for this state
5095     *                 are:
5096     *                   {@link #COMPONENT_ENABLED_STATE_ENABLED},
5097     *                   {@link #COMPONENT_ENABLED_STATE_DISABLED}
5098     *                   and
5099     *                   {@link #COMPONENT_ENABLED_STATE_DEFAULT}
5100     *                 The last one removes the setting, thereby restoring the component's state to
5101     *                 whatever was set in it's manifest (or enabled, by default).
5102     * @param flags Optional behavior flags: {@link #DONT_KILL_APP} or 0.
5103     */
5104    public abstract void setComponentEnabledSetting(ComponentName componentName,
5105            int newState, int flags);
5106
5107
5108    /**
5109     * Return the enabled setting for a package component (activity,
5110     * receiver, service, provider).  This returns the last value set by
5111     * {@link #setComponentEnabledSetting(ComponentName, int, int)}; in most
5112     * cases this value will be {@link #COMPONENT_ENABLED_STATE_DEFAULT} since
5113     * the value originally specified in the manifest has not been modified.
5114     *
5115     * @param componentName The component to retrieve.
5116     * @return Returns the current enabled state for the component.  May
5117     * be one of {@link #COMPONENT_ENABLED_STATE_ENABLED},
5118     * {@link #COMPONENT_ENABLED_STATE_DISABLED}, or
5119     * {@link #COMPONENT_ENABLED_STATE_DEFAULT}.  The last one means the
5120     * component's enabled state is based on the original information in
5121     * the manifest as found in {@link ComponentInfo}.
5122     */
5123    public abstract int getComponentEnabledSetting(ComponentName componentName);
5124
5125    /**
5126     * Set the enabled setting for an application
5127     * This setting will override any enabled state which may have been set by the application in
5128     * its manifest.  It also overrides the enabled state set in the manifest for any of the
5129     * application's components.  It does not override any enabled state set by
5130     * {@link #setComponentEnabledSetting} for any of the application's components.
5131     *
5132     * @param packageName The package name of the application to enable
5133     * @param newState The new enabled state for the component.  The legal values for this state
5134     *                 are:
5135     *                   {@link #COMPONENT_ENABLED_STATE_ENABLED},
5136     *                   {@link #COMPONENT_ENABLED_STATE_DISABLED}
5137     *                   and
5138     *                   {@link #COMPONENT_ENABLED_STATE_DEFAULT}
5139     *                 The last one removes the setting, thereby restoring the applications's state to
5140     *                 whatever was set in its manifest (or enabled, by default).
5141     * @param flags Optional behavior flags: {@link #DONT_KILL_APP} or 0.
5142     */
5143    public abstract void setApplicationEnabledSetting(String packageName,
5144            int newState, int flags);
5145
5146    /**
5147     * Return the enabled setting for an application. This returns
5148     * the last value set by
5149     * {@link #setApplicationEnabledSetting(String, int, int)}; in most
5150     * cases this value will be {@link #COMPONENT_ENABLED_STATE_DEFAULT} since
5151     * the value originally specified in the manifest has not been modified.
5152     *
5153     * @param packageName The package name of the application to retrieve.
5154     * @return Returns the current enabled state for the application.  May
5155     * be one of {@link #COMPONENT_ENABLED_STATE_ENABLED},
5156     * {@link #COMPONENT_ENABLED_STATE_DISABLED}, or
5157     * {@link #COMPONENT_ENABLED_STATE_DEFAULT}.  The last one means the
5158     * application's enabled state is based on the original information in
5159     * the manifest as found in {@link ComponentInfo}.
5160     * @throws IllegalArgumentException if the named package does not exist.
5161     */
5162    public abstract int getApplicationEnabledSetting(String packageName);
5163
5164    /**
5165     * Puts the package in a hidden state, which is almost like an uninstalled state,
5166     * making the package unavailable, but it doesn't remove the data or the actual
5167     * package file. Application can be unhidden by either resetting the hidden state
5168     * or by installing it, such as with {@link #installExistingPackage(String)}
5169     * @hide
5170     */
5171    public abstract boolean setApplicationHiddenSettingAsUser(String packageName, boolean hidden,
5172            UserHandle userHandle);
5173
5174    /**
5175     * Returns the hidden state of a package.
5176     * @see #setApplicationHiddenSettingAsUser(String, boolean, UserHandle)
5177     * @hide
5178     */
5179    public abstract boolean getApplicationHiddenSettingAsUser(String packageName,
5180            UserHandle userHandle);
5181
5182    /**
5183     * Return whether the device has been booted into safe mode.
5184     */
5185    public abstract boolean isSafeMode();
5186
5187    /**
5188     * Adds a listener for permission changes for installed packages.
5189     *
5190     * @param listener The listener to add.
5191     *
5192     * @hide
5193     */
5194    @SystemApi
5195    @RequiresPermission(Manifest.permission.OBSERVE_GRANT_REVOKE_PERMISSIONS)
5196    public abstract void addOnPermissionsChangeListener(OnPermissionsChangedListener listener);
5197
5198    /**
5199     * Remvoes a listener for permission changes for installed packages.
5200     *
5201     * @param listener The listener to remove.
5202     *
5203     * @hide
5204     */
5205    @SystemApi
5206    public abstract void removeOnPermissionsChangeListener(OnPermissionsChangedListener listener);
5207
5208    /**
5209     * Return the {@link KeySet} associated with the String alias for this
5210     * application.
5211     *
5212     * @param alias The alias for a given {@link KeySet} as defined in the
5213     *        application's AndroidManifest.xml.
5214     * @hide
5215     */
5216    public abstract KeySet getKeySetByAlias(String packageName, String alias);
5217
5218    /** Return the signing {@link KeySet} for this application.
5219     * @hide
5220     */
5221    public abstract KeySet getSigningKeySet(String packageName);
5222
5223    /**
5224     * Return whether the package denoted by packageName has been signed by all
5225     * of the keys specified by the {@link KeySet} ks.  This will return true if
5226     * the package has been signed by additional keys (a superset) as well.
5227     * Compare to {@link #isSignedByExactly(String packageName, KeySet ks)}.
5228     * @hide
5229     */
5230    public abstract boolean isSignedBy(String packageName, KeySet ks);
5231
5232    /**
5233     * Return whether the package denoted by packageName has been signed by all
5234     * of, and only, the keys specified by the {@link KeySet} ks. Compare to
5235     * {@link #isSignedBy(String packageName, KeySet ks)}.
5236     * @hide
5237     */
5238    public abstract boolean isSignedByExactly(String packageName, KeySet ks);
5239
5240    /**
5241     * Puts the package in a suspended state, making the package un-runnable,
5242     * but it doesn't remove the data or the actual package file. The application notifications
5243     * will be hidden and also the application will not show up in recents.
5244     *
5245     * @param packageName The name of the package to set the suspended status.
5246     * @param suspended If set to {@code true} than the package will be suspended, if set to
5247     * {@code false} the package will be unsuspended.
5248     * @param userId The user id.
5249     *
5250     * @hide
5251     */
5252    public abstract boolean setPackageSuspendedAsUser(
5253            String packageName, boolean suspended, @UserIdInt int userId);
5254
5255    /** {@hide} */
5256    public static boolean isMoveStatusFinished(int status) {
5257        return (status < 0 || status > 100);
5258    }
5259
5260    /** {@hide} */
5261    public static abstract class MoveCallback {
5262        public void onCreated(int moveId, Bundle extras) {}
5263        public abstract void onStatusChanged(int moveId, int status, long estMillis);
5264    }
5265
5266    /** {@hide} */
5267    public abstract int getMoveStatus(int moveId);
5268
5269    /** {@hide} */
5270    public abstract void registerMoveCallback(MoveCallback callback, Handler handler);
5271    /** {@hide} */
5272    public abstract void unregisterMoveCallback(MoveCallback callback);
5273
5274    /** {@hide} */
5275    public abstract int movePackage(String packageName, VolumeInfo vol);
5276    /** {@hide} */
5277    public abstract @Nullable VolumeInfo getPackageCurrentVolume(ApplicationInfo app);
5278    /** {@hide} */
5279    public abstract @NonNull List<VolumeInfo> getPackageCandidateVolumes(ApplicationInfo app);
5280
5281    /** {@hide} */
5282    public abstract int movePrimaryStorage(VolumeInfo vol);
5283    /** {@hide} */
5284    public abstract @Nullable VolumeInfo getPrimaryStorageCurrentVolume();
5285    /** {@hide} */
5286    public abstract @NonNull List<VolumeInfo> getPrimaryStorageCandidateVolumes();
5287
5288    /**
5289     * Returns the device identity that verifiers can use to associate their scheme to a particular
5290     * device. This should not be used by anything other than a package verifier.
5291     *
5292     * @return identity that uniquely identifies current device
5293     * @hide
5294     */
5295    public abstract VerifierDeviceIdentity getVerifierDeviceIdentity();
5296
5297    /**
5298     * Returns true if the device is upgrading, such as first boot after OTA.
5299     *
5300     * @hide
5301     */
5302    public abstract boolean isUpgrade();
5303
5304    /**
5305     * Return interface that offers the ability to install, upgrade, and remove
5306     * applications on the device.
5307     */
5308    public abstract @NonNull PackageInstaller getPackageInstaller();
5309
5310    /**
5311     * Adds a {@code CrossProfileIntentFilter}. After calling this method all
5312     * intents sent from the user with id sourceUserId can also be be resolved
5313     * by activities in the user with id targetUserId if they match the
5314     * specified intent filter.
5315     *
5316     * @param filter The {@link IntentFilter} the intent has to match
5317     * @param sourceUserId The source user id.
5318     * @param targetUserId The target user id.
5319     * @param flags The possible values are {@link #SKIP_CURRENT_PROFILE} and
5320     *            {@link #ONLY_IF_NO_MATCH_FOUND}.
5321     * @hide
5322     */
5323    public abstract void addCrossProfileIntentFilter(IntentFilter filter, int sourceUserId,
5324            int targetUserId, int flags);
5325
5326    /**
5327     * Clearing {@code CrossProfileIntentFilter}s which have the specified user
5328     * as their source, and have been set by the app calling this method.
5329     *
5330     * @param sourceUserId The source user id.
5331     * @hide
5332     */
5333    public abstract void clearCrossProfileIntentFilters(int sourceUserId);
5334
5335    /**
5336     * @hide
5337     */
5338    public abstract Drawable loadItemIcon(PackageItemInfo itemInfo, ApplicationInfo appInfo);
5339
5340    /**
5341     * @hide
5342     */
5343    public abstract Drawable loadUnbadgedItemIcon(PackageItemInfo itemInfo, ApplicationInfo appInfo);
5344
5345    /** {@hide} */
5346    public abstract boolean isPackageAvailable(String packageName);
5347
5348    /** {@hide} */
5349    public static String installStatusToString(int status, String msg) {
5350        final String str = installStatusToString(status);
5351        if (msg != null) {
5352            return str + ": " + msg;
5353        } else {
5354            return str;
5355        }
5356    }
5357
5358    /** {@hide} */
5359    public static String installStatusToString(int status) {
5360        switch (status) {
5361            case INSTALL_SUCCEEDED: return "INSTALL_SUCCEEDED";
5362            case INSTALL_FAILED_ALREADY_EXISTS: return "INSTALL_FAILED_ALREADY_EXISTS";
5363            case INSTALL_FAILED_INVALID_APK: return "INSTALL_FAILED_INVALID_APK";
5364            case INSTALL_FAILED_INVALID_URI: return "INSTALL_FAILED_INVALID_URI";
5365            case INSTALL_FAILED_INSUFFICIENT_STORAGE: return "INSTALL_FAILED_INSUFFICIENT_STORAGE";
5366            case INSTALL_FAILED_DUPLICATE_PACKAGE: return "INSTALL_FAILED_DUPLICATE_PACKAGE";
5367            case INSTALL_FAILED_NO_SHARED_USER: return "INSTALL_FAILED_NO_SHARED_USER";
5368            case INSTALL_FAILED_UPDATE_INCOMPATIBLE: return "INSTALL_FAILED_UPDATE_INCOMPATIBLE";
5369            case INSTALL_FAILED_SHARED_USER_INCOMPATIBLE: return "INSTALL_FAILED_SHARED_USER_INCOMPATIBLE";
5370            case INSTALL_FAILED_MISSING_SHARED_LIBRARY: return "INSTALL_FAILED_MISSING_SHARED_LIBRARY";
5371            case INSTALL_FAILED_REPLACE_COULDNT_DELETE: return "INSTALL_FAILED_REPLACE_COULDNT_DELETE";
5372            case INSTALL_FAILED_DEXOPT: return "INSTALL_FAILED_DEXOPT";
5373            case INSTALL_FAILED_OLDER_SDK: return "INSTALL_FAILED_OLDER_SDK";
5374            case INSTALL_FAILED_CONFLICTING_PROVIDER: return "INSTALL_FAILED_CONFLICTING_PROVIDER";
5375            case INSTALL_FAILED_NEWER_SDK: return "INSTALL_FAILED_NEWER_SDK";
5376            case INSTALL_FAILED_TEST_ONLY: return "INSTALL_FAILED_TEST_ONLY";
5377            case INSTALL_FAILED_CPU_ABI_INCOMPATIBLE: return "INSTALL_FAILED_CPU_ABI_INCOMPATIBLE";
5378            case INSTALL_FAILED_MISSING_FEATURE: return "INSTALL_FAILED_MISSING_FEATURE";
5379            case INSTALL_FAILED_CONTAINER_ERROR: return "INSTALL_FAILED_CONTAINER_ERROR";
5380            case INSTALL_FAILED_INVALID_INSTALL_LOCATION: return "INSTALL_FAILED_INVALID_INSTALL_LOCATION";
5381            case INSTALL_FAILED_MEDIA_UNAVAILABLE: return "INSTALL_FAILED_MEDIA_UNAVAILABLE";
5382            case INSTALL_FAILED_VERIFICATION_TIMEOUT: return "INSTALL_FAILED_VERIFICATION_TIMEOUT";
5383            case INSTALL_FAILED_VERIFICATION_FAILURE: return "INSTALL_FAILED_VERIFICATION_FAILURE";
5384            case INSTALL_FAILED_PACKAGE_CHANGED: return "INSTALL_FAILED_PACKAGE_CHANGED";
5385            case INSTALL_FAILED_UID_CHANGED: return "INSTALL_FAILED_UID_CHANGED";
5386            case INSTALL_FAILED_VERSION_DOWNGRADE: return "INSTALL_FAILED_VERSION_DOWNGRADE";
5387            case INSTALL_PARSE_FAILED_NOT_APK: return "INSTALL_PARSE_FAILED_NOT_APK";
5388            case INSTALL_PARSE_FAILED_BAD_MANIFEST: return "INSTALL_PARSE_FAILED_BAD_MANIFEST";
5389            case INSTALL_PARSE_FAILED_UNEXPECTED_EXCEPTION: return "INSTALL_PARSE_FAILED_UNEXPECTED_EXCEPTION";
5390            case INSTALL_PARSE_FAILED_NO_CERTIFICATES: return "INSTALL_PARSE_FAILED_NO_CERTIFICATES";
5391            case INSTALL_PARSE_FAILED_INCONSISTENT_CERTIFICATES: return "INSTALL_PARSE_FAILED_INCONSISTENT_CERTIFICATES";
5392            case INSTALL_PARSE_FAILED_CERTIFICATE_ENCODING: return "INSTALL_PARSE_FAILED_CERTIFICATE_ENCODING";
5393            case INSTALL_PARSE_FAILED_BAD_PACKAGE_NAME: return "INSTALL_PARSE_FAILED_BAD_PACKAGE_NAME";
5394            case INSTALL_PARSE_FAILED_BAD_SHARED_USER_ID: return "INSTALL_PARSE_FAILED_BAD_SHARED_USER_ID";
5395            case INSTALL_PARSE_FAILED_MANIFEST_MALFORMED: return "INSTALL_PARSE_FAILED_MANIFEST_MALFORMED";
5396            case INSTALL_PARSE_FAILED_MANIFEST_EMPTY: return "INSTALL_PARSE_FAILED_MANIFEST_EMPTY";
5397            case INSTALL_FAILED_INTERNAL_ERROR: return "INSTALL_FAILED_INTERNAL_ERROR";
5398            case INSTALL_FAILED_USER_RESTRICTED: return "INSTALL_FAILED_USER_RESTRICTED";
5399            case INSTALL_FAILED_DUPLICATE_PERMISSION: return "INSTALL_FAILED_DUPLICATE_PERMISSION";
5400            case INSTALL_FAILED_NO_MATCHING_ABIS: return "INSTALL_FAILED_NO_MATCHING_ABIS";
5401            case INSTALL_FAILED_ABORTED: return "INSTALL_FAILED_ABORTED";
5402            default: return Integer.toString(status);
5403        }
5404    }
5405
5406    /** {@hide} */
5407    public static int installStatusToPublicStatus(int status) {
5408        switch (status) {
5409            case INSTALL_SUCCEEDED: return PackageInstaller.STATUS_SUCCESS;
5410            case INSTALL_FAILED_ALREADY_EXISTS: return PackageInstaller.STATUS_FAILURE_CONFLICT;
5411            case INSTALL_FAILED_INVALID_APK: return PackageInstaller.STATUS_FAILURE_INVALID;
5412            case INSTALL_FAILED_INVALID_URI: return PackageInstaller.STATUS_FAILURE_INVALID;
5413            case INSTALL_FAILED_INSUFFICIENT_STORAGE: return PackageInstaller.STATUS_FAILURE_STORAGE;
5414            case INSTALL_FAILED_DUPLICATE_PACKAGE: return PackageInstaller.STATUS_FAILURE_CONFLICT;
5415            case INSTALL_FAILED_NO_SHARED_USER: return PackageInstaller.STATUS_FAILURE_CONFLICT;
5416            case INSTALL_FAILED_UPDATE_INCOMPATIBLE: return PackageInstaller.STATUS_FAILURE_CONFLICT;
5417            case INSTALL_FAILED_SHARED_USER_INCOMPATIBLE: return PackageInstaller.STATUS_FAILURE_CONFLICT;
5418            case INSTALL_FAILED_MISSING_SHARED_LIBRARY: return PackageInstaller.STATUS_FAILURE_INCOMPATIBLE;
5419            case INSTALL_FAILED_REPLACE_COULDNT_DELETE: return PackageInstaller.STATUS_FAILURE_CONFLICT;
5420            case INSTALL_FAILED_DEXOPT: return PackageInstaller.STATUS_FAILURE_INVALID;
5421            case INSTALL_FAILED_OLDER_SDK: return PackageInstaller.STATUS_FAILURE_INCOMPATIBLE;
5422            case INSTALL_FAILED_CONFLICTING_PROVIDER: return PackageInstaller.STATUS_FAILURE_CONFLICT;
5423            case INSTALL_FAILED_NEWER_SDK: return PackageInstaller.STATUS_FAILURE_INCOMPATIBLE;
5424            case INSTALL_FAILED_TEST_ONLY: return PackageInstaller.STATUS_FAILURE_INVALID;
5425            case INSTALL_FAILED_CPU_ABI_INCOMPATIBLE: return PackageInstaller.STATUS_FAILURE_INCOMPATIBLE;
5426            case INSTALL_FAILED_MISSING_FEATURE: return PackageInstaller.STATUS_FAILURE_INCOMPATIBLE;
5427            case INSTALL_FAILED_CONTAINER_ERROR: return PackageInstaller.STATUS_FAILURE_STORAGE;
5428            case INSTALL_FAILED_INVALID_INSTALL_LOCATION: return PackageInstaller.STATUS_FAILURE_STORAGE;
5429            case INSTALL_FAILED_MEDIA_UNAVAILABLE: return PackageInstaller.STATUS_FAILURE_STORAGE;
5430            case INSTALL_FAILED_VERIFICATION_TIMEOUT: return PackageInstaller.STATUS_FAILURE_ABORTED;
5431            case INSTALL_FAILED_VERIFICATION_FAILURE: return PackageInstaller.STATUS_FAILURE_ABORTED;
5432            case INSTALL_FAILED_PACKAGE_CHANGED: return PackageInstaller.STATUS_FAILURE_INVALID;
5433            case INSTALL_FAILED_UID_CHANGED: return PackageInstaller.STATUS_FAILURE_INVALID;
5434            case INSTALL_FAILED_VERSION_DOWNGRADE: return PackageInstaller.STATUS_FAILURE_INVALID;
5435            case INSTALL_FAILED_PERMISSION_MODEL_DOWNGRADE: return PackageInstaller.STATUS_FAILURE_INVALID;
5436            case INSTALL_PARSE_FAILED_NOT_APK: return PackageInstaller.STATUS_FAILURE_INVALID;
5437            case INSTALL_PARSE_FAILED_BAD_MANIFEST: return PackageInstaller.STATUS_FAILURE_INVALID;
5438            case INSTALL_PARSE_FAILED_UNEXPECTED_EXCEPTION: return PackageInstaller.STATUS_FAILURE_INVALID;
5439            case INSTALL_PARSE_FAILED_NO_CERTIFICATES: return PackageInstaller.STATUS_FAILURE_INVALID;
5440            case INSTALL_PARSE_FAILED_INCONSISTENT_CERTIFICATES: return PackageInstaller.STATUS_FAILURE_INVALID;
5441            case INSTALL_PARSE_FAILED_CERTIFICATE_ENCODING: return PackageInstaller.STATUS_FAILURE_INVALID;
5442            case INSTALL_PARSE_FAILED_BAD_PACKAGE_NAME: return PackageInstaller.STATUS_FAILURE_INVALID;
5443            case INSTALL_PARSE_FAILED_BAD_SHARED_USER_ID: return PackageInstaller.STATUS_FAILURE_INVALID;
5444            case INSTALL_PARSE_FAILED_MANIFEST_MALFORMED: return PackageInstaller.STATUS_FAILURE_INVALID;
5445            case INSTALL_PARSE_FAILED_MANIFEST_EMPTY: return PackageInstaller.STATUS_FAILURE_INVALID;
5446            case INSTALL_FAILED_INTERNAL_ERROR: return PackageInstaller.STATUS_FAILURE;
5447            case INSTALL_FAILED_USER_RESTRICTED: return PackageInstaller.STATUS_FAILURE_INCOMPATIBLE;
5448            case INSTALL_FAILED_DUPLICATE_PERMISSION: return PackageInstaller.STATUS_FAILURE_CONFLICT;
5449            case INSTALL_FAILED_NO_MATCHING_ABIS: return PackageInstaller.STATUS_FAILURE_INCOMPATIBLE;
5450            case INSTALL_FAILED_ABORTED: return PackageInstaller.STATUS_FAILURE_ABORTED;
5451            default: return PackageInstaller.STATUS_FAILURE;
5452        }
5453    }
5454
5455    /** {@hide} */
5456    public static String deleteStatusToString(int status, String msg) {
5457        final String str = deleteStatusToString(status);
5458        if (msg != null) {
5459            return str + ": " + msg;
5460        } else {
5461            return str;
5462        }
5463    }
5464
5465    /** {@hide} */
5466    public static String deleteStatusToString(int status) {
5467        switch (status) {
5468            case DELETE_SUCCEEDED: return "DELETE_SUCCEEDED";
5469            case DELETE_FAILED_INTERNAL_ERROR: return "DELETE_FAILED_INTERNAL_ERROR";
5470            case DELETE_FAILED_DEVICE_POLICY_MANAGER: return "DELETE_FAILED_DEVICE_POLICY_MANAGER";
5471            case DELETE_FAILED_USER_RESTRICTED: return "DELETE_FAILED_USER_RESTRICTED";
5472            case DELETE_FAILED_OWNER_BLOCKED: return "DELETE_FAILED_OWNER_BLOCKED";
5473            case DELETE_FAILED_ABORTED: return "DELETE_FAILED_ABORTED";
5474            default: return Integer.toString(status);
5475        }
5476    }
5477
5478    /** {@hide} */
5479    public static int deleteStatusToPublicStatus(int status) {
5480        switch (status) {
5481            case DELETE_SUCCEEDED: return PackageInstaller.STATUS_SUCCESS;
5482            case DELETE_FAILED_INTERNAL_ERROR: return PackageInstaller.STATUS_FAILURE;
5483            case DELETE_FAILED_DEVICE_POLICY_MANAGER: return PackageInstaller.STATUS_FAILURE_BLOCKED;
5484            case DELETE_FAILED_USER_RESTRICTED: return PackageInstaller.STATUS_FAILURE_BLOCKED;
5485            case DELETE_FAILED_OWNER_BLOCKED: return PackageInstaller.STATUS_FAILURE_BLOCKED;
5486            case DELETE_FAILED_ABORTED: return PackageInstaller.STATUS_FAILURE_ABORTED;
5487            default: return PackageInstaller.STATUS_FAILURE;
5488        }
5489    }
5490
5491    /** {@hide} */
5492    public static String permissionFlagToString(int flag) {
5493        switch (flag) {
5494            case FLAG_PERMISSION_GRANTED_BY_DEFAULT: return "GRANTED_BY_DEFAULT";
5495            case FLAG_PERMISSION_POLICY_FIXED: return "POLICY_FIXED";
5496            case FLAG_PERMISSION_SYSTEM_FIXED: return "SYSTEM_FIXED";
5497            case FLAG_PERMISSION_USER_SET: return "USER_SET";
5498            case FLAG_PERMISSION_REVOKE_ON_UPGRADE: return "REVOKE_ON_UPGRADE";
5499            case FLAG_PERMISSION_USER_FIXED: return "USER_FIXED";
5500            case FLAG_PERMISSION_REVIEW_REQUIRED: return "REVIEW_REQUIRED";
5501            default: return Integer.toString(flag);
5502        }
5503    }
5504
5505    /** {@hide} */
5506    public static class LegacyPackageInstallObserver extends PackageInstallObserver {
5507        private final IPackageInstallObserver mLegacy;
5508
5509        public LegacyPackageInstallObserver(IPackageInstallObserver legacy) {
5510            mLegacy = legacy;
5511        }
5512
5513        @Override
5514        public void onPackageInstalled(String basePackageName, int returnCode, String msg,
5515                Bundle extras) {
5516            if (mLegacy == null) return;
5517            try {
5518                mLegacy.packageInstalled(basePackageName, returnCode);
5519            } catch (RemoteException ignored) {
5520            }
5521        }
5522    }
5523
5524    /** {@hide} */
5525    public static class LegacyPackageDeleteObserver extends PackageDeleteObserver {
5526        private final IPackageDeleteObserver mLegacy;
5527
5528        public LegacyPackageDeleteObserver(IPackageDeleteObserver legacy) {
5529            mLegacy = legacy;
5530        }
5531
5532        @Override
5533        public void onPackageDeleted(String basePackageName, int returnCode, String msg) {
5534            if (mLegacy == null) return;
5535            try {
5536                mLegacy.packageDeleted(basePackageName, returnCode);
5537            } catch (RemoteException ignored) {
5538            }
5539        }
5540    }
5541}
5542