blob: 1c3c5c7f4021319e2de00a43664d54abdb46d718 [file] [log] [blame]
Svet Ganovadc1cf42015-06-15 16:36:24 -07001/*
2 * Copyright (C) 2015 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
Todd Kennedy82b08422017-09-28 13:32:05 -070019import android.annotation.IntDef;
20import android.annotation.NonNull;
21import android.annotation.Nullable;
Makoto Onuki2d5b4652016-03-11 16:09:54 -080022import android.content.ComponentName;
Todd Kennedy01ad0c72016-11-11 15:33:12 -080023import android.content.Intent;
Todd Kennedy18211fd2017-06-06 09:15:46 -070024import android.content.pm.PackageManager.ApplicationInfoFlags;
25import android.content.pm.PackageManager.ComponentInfoFlags;
Todd Kennedy18211fd2017-06-06 09:15:46 -070026import android.content.pm.PackageManager.PackageInfoFlags;
27import android.content.pm.PackageManager.ResolveInfoFlags;
Chad Brubaker06068612017-04-06 09:43:47 -070028import android.os.Bundle;
Suprabh Shukla19b41f32018-03-26 22:35:13 -070029import android.os.PersistableBundle;
Makoto Onukic29f62c2016-06-07 12:19:46 -070030import android.util.SparseArray;
Todd Kennedy39bfee52016-02-24 10:28:21 -080031
Todd Kennedy82b08422017-09-28 13:32:05 -070032import java.lang.annotation.Retention;
33import java.lang.annotation.RetentionPolicy;
Fyodor Kupolovcb6fd802015-11-05 14:27:06 -080034import java.util.List;
Svet Ganovadc1cf42015-06-15 16:36:24 -070035
36/**
37 * Package manager local system service interface.
38 *
39 * @hide Only for use within the system server.
40 */
41public abstract class PackageManagerInternal {
Todd Kennedy82b08422017-09-28 13:32:05 -070042 public static final int PACKAGE_SYSTEM = 0;
43 public static final int PACKAGE_SETUP_WIZARD = 1;
44 public static final int PACKAGE_INSTALLER = 2;
45 public static final int PACKAGE_VERIFIER = 3;
46 public static final int PACKAGE_BROWSER = 4;
Makoto Onuki700feef2018-02-15 10:59:41 -080047 public static final int PACKAGE_SYSTEM_TEXT_CLASSIFIER = 5;
Todd Kennedy82b08422017-09-28 13:32:05 -070048 @IntDef(value = {
49 PACKAGE_SYSTEM,
50 PACKAGE_SETUP_WIZARD,
51 PACKAGE_INSTALLER,
52 PACKAGE_VERIFIER,
53 PACKAGE_BROWSER,
Makoto Onuki700feef2018-02-15 10:59:41 -080054 PACKAGE_SYSTEM_TEXT_CLASSIFIER,
Todd Kennedy82b08422017-09-28 13:32:05 -070055 })
56 @Retention(RetentionPolicy.SOURCE)
57 public @interface KnownPackage {}
Svet Ganovadc1cf42015-06-15 16:36:24 -070058
Todd Kennedy42d61602017-12-12 14:44:19 -080059 /** Observer called whenever the list of packages changes */
60 public interface PackageListObserver {
61 /** A package was added to the system. */
62 void onPackageAdded(@NonNull String packageName);
63 /** A package was removed from the system. */
64 void onPackageRemoved(@NonNull String packageName);
65 }
66
Svet Ganovadc1cf42015-06-15 16:36:24 -070067 /**
68 * Provider for package names.
69 */
70 public interface PackagesProvider {
71
72 /**
73 * Gets the packages for a given user.
74 * @param userId The user id.
75 * @return The package names.
76 */
77 public String[] getPackages(int userId);
78 }
79
80 /**
Svetoslav0010b702015-06-30 18:05:26 -070081 * Provider for package names.
82 */
83 public interface SyncAdapterPackagesProvider {
84
85 /**
86 * Gets the sync adapter packages for given authority and user.
87 * @param authority The authority.
88 * @param userId The user id.
89 * @return The package names.
90 */
91 public String[] getPackages(String authority, int userId);
92 }
93
94 /**
Svet Ganovadc1cf42015-06-15 16:36:24 -070095 * Sets the location provider packages provider.
96 * @param provider The packages provider.
97 */
98 public abstract void setLocationPackagesProvider(PackagesProvider provider);
99
100 /**
Svet Ganovadc1cf42015-06-15 16:36:24 -0700101 * Sets the voice interaction packages provider.
102 * @param provider The packages provider.
103 */
104 public abstract void setVoiceInteractionPackagesProvider(PackagesProvider provider);
Svetoslavcdfd2302015-06-25 19:07:31 -0700105
106 /**
107 * Sets the SMS packages provider.
108 * @param provider The packages provider.
109 */
110 public abstract void setSmsAppPackagesProvider(PackagesProvider provider);
111
112 /**
113 * Sets the dialer packages provider.
114 * @param provider The packages provider.
115 */
116 public abstract void setDialerAppPackagesProvider(PackagesProvider provider);
117
118 /**
Sailesh Nepalcf855622015-07-28 19:22:14 -0700119 * Sets the sim call manager packages provider.
120 * @param provider The packages provider.
121 */
122 public abstract void setSimCallManagerPackagesProvider(PackagesProvider provider);
123
124 /**
Eric Enslen1e423b92017-12-18 11:30:21 -0800125 * Sets the Use Open Wifi packages provider.
126 * @param provider The packages provider.
127 */
128 public abstract void setUseOpenWifiAppPackagesProvider(PackagesProvider provider);
129
130 /**
Svetoslav0010b702015-06-30 18:05:26 -0700131 * Sets the sync adapter packages provider.
132 * @param provider The provider.
133 */
134 public abstract void setSyncAdapterPackagesprovider(SyncAdapterPackagesProvider provider);
135
136 /**
Svetoslavcdfd2302015-06-25 19:07:31 -0700137 * Requests granting of the default permissions to the current default SMS app.
138 * @param packageName The default SMS package name.
139 * @param userId The user for which to grant the permissions.
140 */
141 public abstract void grantDefaultPermissionsToDefaultSmsApp(String packageName, int userId);
142
143 /**
144 * Requests granting of the default permissions to the current default dialer app.
145 * @param packageName The default dialer package name.
146 * @param userId The user for which to grant the permissions.
147 */
148 public abstract void grantDefaultPermissionsToDefaultDialerApp(String packageName, int userId);
Sailesh Nepalcf855622015-07-28 19:22:14 -0700149
150 /**
151 * Requests granting of the default permissions to the current default sim call manager.
152 * @param packageName The default sim call manager package name.
153 * @param userId The user for which to grant the permissions.
154 */
155 public abstract void grantDefaultPermissionsToDefaultSimCallManager(String packageName,
156 int userId);
Fyodor Kupolovcb6fd802015-11-05 14:27:06 -0800157
158 /**
Eric Enslen1e423b92017-12-18 11:30:21 -0800159 * Requests granting of the default permissions to the current default Use Open Wifi app.
160 * @param packageName The default use open wifi package name.
161 * @param userId The user for which to grant the permissions.
162 */
163 public abstract void grantDefaultPermissionsToDefaultUseOpenWifiApp(String packageName,
164 int userId);
165
166 /**
Fyodor Kupolovcb6fd802015-11-05 14:27:06 -0800167 * Sets a list of apps to keep in PM's internal data structures and as APKs even if no user has
168 * currently installed it. The apps are not preloaded.
169 * @param packageList List of package names to keep cached.
170 */
171 public abstract void setKeepUninstalledPackages(List<String> packageList);
Svet Ganov9c165d72015-12-01 19:52:26 -0800172
173 /**
174 * Gets whether some of the permissions used by this package require a user
175 * review before any of the app components can run.
176 * @param packageName The package name for which to check.
177 * @param userId The user under which to check.
178 * @return True a permissions review is required.
179 */
180 public abstract boolean isPermissionsReviewRequired(String packageName, int userId);
Todd Kennedy39bfee52016-02-24 10:28:21 -0800181
182 /**
Todd Kennedy18211fd2017-06-06 09:15:46 -0700183 * Retrieve all of the information we know about a particular package/application.
184 * @param filterCallingUid The results will be filtered in the context of this UID instead
185 * of the calling UID.
186 * @see PackageManager#getPackageInfo(String, int)
Todd Kennedy39bfee52016-02-24 10:28:21 -0800187 */
Todd Kennedy18211fd2017-06-06 09:15:46 -0700188 public abstract PackageInfo getPackageInfo(String packageName,
189 @PackageInfoFlags int flags, int filterCallingUid, int userId);
190
191 /**
Suprabh Shukla19b41f32018-03-26 22:35:13 -0700192 * Retrieve launcher extras for a suspended package provided to the system in
193 * {@link PackageManager#setPackagesSuspended(String[], boolean, PersistableBundle,
194 * PersistableBundle, String)}
195 *
196 * @param packageName The package for which to return launcher extras.
197 * @param userId The user for which to check,
198 * @return The launcher extras.
199 *
200 * @see PackageManager#setPackagesSuspended(String[], boolean, PersistableBundle,
201 * PersistableBundle, String)
202 * @see PackageManager#isPackageSuspended()
203 */
204 public abstract Bundle getSuspendedPackageLauncherExtras(String packageName,
205 int userId);
206
207 /**
Suprabh Shukla69c71422018-04-02 18:39:01 -0700208 * Internal api to query the suspended state of a package.
209 * @param packageName The package to check.
210 * @param userId The user id to check for.
211 * @return {@code true} if the package is suspended, {@code false} otherwise.
212 * @see PackageManager#isPackageSuspended(String)
213 */
214 public abstract boolean isPackageSuspended(String packageName, int userId);
215
216 /**
Christopher Tatea732f012017-10-26 17:26:53 -0700217 * Do a straight uid lookup for the given package/application in the given user.
218 * @see PackageManager#getPackageUidAsUser(String, int, int)
219 * @return The app's uid, or < 0 if the package was not found in that user
220 */
221 public abstract int getPackageUid(String packageName,
222 @PackageInfoFlags int flags, int userId);
223
224 /**
Todd Kennedy18211fd2017-06-06 09:15:46 -0700225 * Retrieve all of the information we know about a particular package/application.
226 * @param filterCallingUid The results will be filtered in the context of this UID instead
227 * of the calling UID.
228 * @see PackageManager#getApplicationInfo(String, int)
229 */
230 public abstract ApplicationInfo getApplicationInfo(String packageName,
231 @ApplicationInfoFlags int flags, int filterCallingUid, int userId);
232
233 /**
234 * Retrieve all of the information we know about a particular activity class.
235 * @param filterCallingUid The results will be filtered in the context of this UID instead
236 * of the calling UID.
237 * @see PackageManager#getActivityInfo(ComponentName, int)
238 */
239 public abstract ActivityInfo getActivityInfo(ComponentName component,
240 @ComponentInfoFlags int flags, int filterCallingUid, int userId);
241
242 /**
243 * Retrieve all activities that can be performed for the given intent.
244 * @param filterCallingUid The results will be filtered in the context of this UID instead
245 * of the calling UID.
246 * @see PackageManager#queryIntentActivities(Intent, int)
247 */
248 public abstract List<ResolveInfo> queryIntentActivities(Intent intent,
249 @ResolveInfoFlags int flags, int filterCallingUid, int userId);
Makoto Onuki2d5b4652016-03-11 16:09:54 -0800250
251 /**
Todd Kennedy82b08422017-09-28 13:32:05 -0700252 * Retrieve all services that can be performed for the given intent.
253 * @see PackageManager#queryIntentServices(Intent, int)
254 */
255 public abstract List<ResolveInfo> queryIntentServices(
256 Intent intent, int flags, int callingUid, int userId);
257
258 /**
Makoto Onuki2d5b4652016-03-11 16:09:54 -0800259 * Interface to {@link com.android.server.pm.PackageManagerService#getHomeActivitiesAsUser}.
260 */
261 public abstract ComponentName getHomeActivitiesAsUser(List<ResolveInfo> allHomeCandidates,
262 int userId);
Makoto Onukic29f62c2016-06-07 12:19:46 -0700263
264 /**
Winson Chungc1674272018-02-21 10:15:17 -0800265 * @return The default home activity component name.
266 */
267 public abstract ComponentName getDefaultHomeActivity(int userId);
268
269 /**
Makoto Onukic29f62c2016-06-07 12:19:46 -0700270 * Called by DeviceOwnerManagerService to set the package names of device owner and profile
271 * owners.
272 */
273 public abstract void setDeviceAndProfileOwnerPackages(
274 int deviceOwnerUserId, String deviceOwner, SparseArray<String> profileOwners);
275
276 /**
Steven Ng9d48a732016-06-24 19:04:14 +0100277 * Returns {@code true} if a given package can't be wiped. Otherwise, returns {@code false}.
Makoto Onukic29f62c2016-06-07 12:19:46 -0700278 */
Steven Ng9d48a732016-06-24 19:04:14 +0100279 public abstract boolean isPackageDataProtected(int userId, String packageName);
Svet Ganov973edd192016-09-08 20:15:55 -0700280
281 /**
Dianne Hackborne07641d2016-11-09 15:07:23 -0800282 * Returns {@code true} if a given package is installed as ephemeral. Otherwise, returns
283 * {@code false}.
284 */
285 public abstract boolean isPackageEphemeral(int userId, String packageName);
286
287 /**
Svet Ganov973edd192016-09-08 20:15:55 -0700288 * Gets whether the package was ever launched.
289 * @param packageName The package name.
290 * @param userId The user for which to check.
291 * @return Whether was launched.
Amith Yamasani2cbfa1e2017-03-28 10:34:01 -0700292 * @throws IllegalArgumentException if the package is not found
Svet Ganov973edd192016-09-08 20:15:55 -0700293 */
294 public abstract boolean wasPackageEverLaunched(String packageName, int userId);
Nicolas Prevot700e1e72016-09-28 15:17:18 +0100295
296 /**
297 * Grants a runtime permission
298 * @param packageName The package name.
299 * @param name The name of the permission.
300 * @param userId The userId for which to grant the permission.
301 * @param overridePolicy If true, grant this permission even if it is fixed by policy.
302 */
303 public abstract void grantRuntimePermission(String packageName, String name, int userId,
304 boolean overridePolicy);
305
306 /**
307 * Revokes a runtime permission
308 * @param packageName The package name.
309 * @param name The name of the permission.
310 * @param userId The userId for which to revoke the permission.
311 * @param overridePolicy If true, revoke this permission even if it is fixed by policy.
312 */
313 public abstract void revokeRuntimePermission(String packageName, String name, int userId,
314 boolean overridePolicy);
315
Michal Karpinskif77ee4f2016-10-12 16:40:06 +0100316 /**
Michal Karpinskicb67dc92016-12-13 18:20:23 +0000317 * Retrieve the official name associated with a uid. This name is
Michal Karpinskif77ee4f2016-10-12 16:40:06 +0100318 * guaranteed to never change, though it is possible for the underlying
Michal Karpinskicb67dc92016-12-13 18:20:23 +0000319 * uid to be changed. That is, if you are storing information about
320 * uids in persistent storage, you should use the string returned
321 * by this function instead of the raw uid.
Michal Karpinskif77ee4f2016-10-12 16:40:06 +0100322 *
Michal Karpinskicb67dc92016-12-13 18:20:23 +0000323 * @param uid The uid for which you would like to retrieve a name.
324 * @return Returns a unique name for the given uid, or null if the
325 * uid is not currently assigned.
Michal Karpinskif77ee4f2016-10-12 16:40:06 +0100326 */
327 public abstract String getNameForUid(int uid);
328
Todd Kennedy01ad0c72016-11-11 15:33:12 -0800329 /**
330 * Request to perform the second phase of ephemeral resolution.
331 * @param responseObj The response of the first phase of ephemeral resolution
332 * @param origIntent The original intent that triggered ephemeral resolution
333 * @param resolvedType The resolved type of the intent
Todd Kennedy01ad0c72016-11-11 15:33:12 -0800334 * @param callingPackage The name of the package requesting the ephemeral application
Chad Brubaker06068612017-04-06 09:43:47 -0700335 * @param verificationBundle Optional bundle to pass to the installer for additional
336 * verification
Todd Kennedy01ad0c72016-11-11 15:33:12 -0800337 * @param userId The ID of the user that triggered ephemeral resolution
338 */
Todd Kennedye9910222017-02-21 16:00:11 -0800339 public abstract void requestInstantAppResolutionPhaseTwo(AuxiliaryResolveInfo responseObj,
340 Intent origIntent, String resolvedType, String callingPackage,
Chad Brubaker06068612017-04-06 09:43:47 -0700341 Bundle verificationBundle, int userId);
Svetoslav Ganove080da92016-12-21 17:10:35 -0800342
343 /**
Todd Kennedy0e989d02017-01-13 14:15:36 -0800344 * Grants access to the package metadata for an ephemeral application.
345 * <p>
346 * When an ephemeral application explicitly tries to interact with a full
347 * install application [via an activity, service or provider that has been
348 * exposed using the {@code visibleToInstantApp} attribute], the normal
349 * application must be able to see metadata about the connecting ephemeral
350 * app. If the ephemeral application uses an implicit intent [ie action VIEW,
351 * category BROWSABLE], it remains hidden from the launched activity.
352 * <p>
353 * If the {@code sourceUid} is not for an ephemeral app or {@code targetUid}
354 * is not for a fully installed app, this method will be a no-op.
355 *
356 * @param userId the user
357 * @param intent the intent that triggered the grant
358 * @param targetAppId The app ID of the fully installed application
359 * @param ephemeralAppId The app ID of the ephemeral application
360 */
361 public abstract void grantEphemeralAccess(int userId, Intent intent,
362 int targetAppId, int ephemeralAppId);
363
Todd Kennedyb21be122017-03-24 14:10:01 -0700364 public abstract boolean isInstantAppInstallerComponent(ComponentName component);
Todd Kennedy0e989d02017-01-13 14:15:36 -0800365 /**
Svetoslav Ganov096d3042017-01-30 16:34:13 -0800366 * Prunes instant apps and state associated with uninstalled
367 * instant apps according to the current platform policy.
368 */
369 public abstract void pruneInstantApps();
370
371 /**
Svetoslav Ganove080da92016-12-21 17:10:35 -0800372 * @return The SetupWizard package name.
373 */
374 public abstract String getSetupWizardPackageName();
Suprabh Shuklaaef25132017-01-23 18:09:03 -0800375
376 public interface ExternalSourcesPolicy {
377
378 int USER_TRUSTED = 0; // User has trusted the package to install apps
379 int USER_BLOCKED = 1; // User has blocked the package to install apps
380 int USER_DEFAULT = 2; // Default code to use when user response is unavailable
381
382 /**
383 * Checks the user preference for whether a package is trusted to request installs through
384 * package installer
385 *
386 * @param packageName The package to check for
387 * @param uid the uid in which the package is running
388 * @return {@link USER_TRUSTED} if the user has trusted the package, {@link USER_BLOCKED}
389 * if user has blocked requests from the package, {@link USER_DEFAULT} if the user response
390 * is not yet available
391 */
392 int getPackageTrustedToInstallApps(String packageName, int uid);
393 }
394
395 public abstract void setExternalSourcesPolicy(ExternalSourcesPolicy policy);
MÃ¥rten Kongstadeabc9e92015-12-15 16:40:23 +0100396
397 /**
Dianne Hackbornb1e77762017-02-13 11:42:18 -0800398 * Return true if the given package is a persistent app process.
399 */
400 public abstract boolean isPackagePersistent(String packageName);
401
402 /**
Todd Kennedyc29b11a2017-10-23 15:55:59 -0700403 * Returns whether or not the given package represents a legacy system application released
404 * prior to runtime permissions.
405 */
406 public abstract boolean isLegacySystemApp(PackageParser.Package pkg);
407
408 /**
MÃ¥rten Kongstadeabc9e92015-12-15 16:40:23 +0100409 * Get all overlay packages for a user.
410 * @param userId The user for which to get the overlays.
411 * @return A list of overlay packages. An empty list is returned if the
412 * user has no installed overlay packages.
413 */
414 public abstract List<PackageInfo> getOverlayPackages(int userId);
415
416 /**
417 * Get the names of all target packages for a user.
418 * @param userId The user for which to get the package names.
419 * @return A list of target package names. This list includes the "android" package.
420 */
421 public abstract List<String> getTargetPackageNames(int userId);
422
423 /**
424 * Set which overlay to use for a package.
425 * @param userId The user for which to update the overlays.
426 * @param targetPackageName The package name of the package for which to update the overlays.
427 * @param overlayPackageNames The complete list of overlay packages that should be enabled for
428 * the target. Previously enabled overlays not specified in the list
429 * will be disabled. Pass in null or an empty list to disable
430 * all overlays. The order of the items is significant if several
431 * overlays modify the same resource.
432 * @return true if all packages names were known by the package manager, false otherwise
433 */
434 public abstract boolean setEnabledOverlayPackages(int userId, String targetPackageName,
435 List<String> overlayPackageNames);
Todd Kennedy4d1de7d2017-02-23 10:32:18 -0800436
437 /**
Todd Kennedy51b3aac2017-03-30 17:50:42 -0700438 * Resolves an activity intent, allowing instant apps to be resolved.
Todd Kennedy4d1de7d2017-02-23 10:32:18 -0800439 */
440 public abstract ResolveInfo resolveIntent(Intent intent, String resolvedType,
Todd Kennedy82b08422017-09-28 13:32:05 -0700441 int flags, int userId, boolean resolveForStart);
Chad Brubaker0f28a802017-03-29 14:05:52 -0700442
443 /**
Todd Kennedy51b3aac2017-03-30 17:50:42 -0700444 * Resolves a service intent, allowing instant apps to be resolved.
445 */
Todd Kennedy82b08422017-09-28 13:32:05 -0700446 public abstract ResolveInfo resolveService(Intent intent, String resolvedType,
Todd Kennedy51b3aac2017-03-30 17:50:42 -0700447 int flags, int userId, int callingUid);
448
Todd Kennedy82b08422017-09-28 13:32:05 -0700449 /**
450 * Resolves a content provider intent.
451 */
452 public abstract ProviderInfo resolveContentProvider(String name, int flags, int userId);
453
Todd Kennedy51b3aac2017-03-30 17:50:42 -0700454 /**
Chad Brubaker0f28a802017-03-29 14:05:52 -0700455 * Track the creator of a new isolated uid.
456 * @param isolatedUid The newly created isolated uid.
457 * @param ownerUid The uid of the app that created the isolated process.
458 */
459 public abstract void addIsolatedUid(int isolatedUid, int ownerUid);
460
461 /**
462 * Track removal of an isolated uid.
463 * @param isolatedUid isolated uid that is no longer being used.
464 */
465 public abstract void removeIsolatedUid(int isolatedUid);
Makoto Onukie92f7942017-04-26 14:38:18 -0700466
467 /**
468 * Return the taget SDK version for the app with the given UID.
469 */
470 public abstract int getUidTargetSdkVersion(int uid);
Makoto Onukiad623012017-05-15 09:29:34 -0700471
Jeff Sharkey9252b342018-01-19 07:58:35 +0900472 /**
473 * Return the taget SDK version for the app with the given package name.
474 */
475 public abstract int getPackageTargetSdkVersion(String packageName);
476
Makoto Onukiad623012017-05-15 09:29:34 -0700477 /** Whether the binder caller can access instant apps. */
Todd Kennedy3051caa2017-05-23 15:54:18 -0700478 public abstract boolean canAccessInstantApps(int callingUid, int userId);
Svet Ganovf935a702017-08-22 12:15:58 -0700479
Todd Kennedy662504f2018-03-14 08:09:00 -0700480 /** Whether the binder caller can access the given component. */
481 public abstract boolean canAccessComponent(int callingUid, ComponentName component, int userId);
482
Svet Ganovf935a702017-08-22 12:15:58 -0700483 /**
484 * Returns {@code true} if a given package has instant application meta-data.
485 * Otherwise, returns {@code false}. Meta-data is state (eg. cookie, app icon, etc)
486 * associated with an instant app. It may be kept after the instant app has been uninstalled.
487 */
488 public abstract boolean hasInstantApplicationMetadata(String packageName, int userId);
Todd Kennedydf113c32017-08-31 16:10:29 -0700489
490 /**
491 * Updates a package last used time.
492 */
493 public abstract void notifyPackageUse(String packageName, int reason);
Todd Kennedy82b08422017-09-28 13:32:05 -0700494
495 /**
496 * Returns a package object for the given package name.
497 */
498 public abstract @Nullable PackageParser.Package getPackage(@NonNull String packageName);
499
500 /**
Todd Kennedy42d61602017-12-12 14:44:19 -0800501 * Returns a list without a change observer.
502 *
503 * {@see #getPackageList(PackageListObserver)}
504 */
505 public @NonNull PackageList getPackageList() {
506 return getPackageList(null);
507 }
508
509 /**
510 * Returns the list of packages installed at the time of the method call.
511 * <p>The given observer is notified when the list of installed packages
512 * changes [eg. a package was installed or uninstalled]. It will not be
513 * notified if a package is updated.
514 * <p>The package list will not be updated automatically as packages are
515 * installed / uninstalled. Any changes must be handled within the observer.
516 */
517 public abstract @NonNull PackageList getPackageList(@Nullable PackageListObserver observer);
518
519 /**
520 * Removes the observer.
521 * <p>Generally not needed. {@link #getPackageList(PackageListObserver)} will automatically
522 * remove the observer.
523 * <p>Does nothing if the observer isn't currently registered.
524 * <p>Observers are notified asynchronously and it's possible for an observer to be
525 * invoked after its been removed.
526 */
527 public abstract void removePackageListObserver(@NonNull PackageListObserver observer);
528
529 /**
Todd Kennedy82b08422017-09-28 13:32:05 -0700530 * Returns a package object for the disabled system package name.
531 */
532 public abstract @Nullable PackageParser.Package getDisabledPackage(@NonNull String packageName);
533
534 /**
535 * Returns whether or not the component is the resolver activity.
536 */
537 public abstract boolean isResolveActivityComponent(@NonNull ComponentInfo component);
538
539 /**
540 * Returns the package name for a known package.
541 */
542 public abstract @Nullable String getKnownPackageName(
543 @KnownPackage int knownPackage, int userId);
544
Todd Kennedy0eb97382017-10-03 16:57:22 -0700545 /**
546 * Returns whether the package is an instant app.
547 */
548 public abstract boolean isInstantApp(String packageName, int userId);
549
550 /**
551 * Returns whether the package is an instant app.
552 */
553 public abstract @Nullable String getInstantAppPackageName(int uid);
554
555 /**
556 * Returns whether or not access to the application should be filtered.
557 * <p>
558 * Access may be limited based upon whether the calling or target applications
559 * are instant applications.
560 *
561 * @see #canAccessInstantApps(int)
562 */
563 public abstract boolean filterAppAccess(
564 @Nullable PackageParser.Package pkg, int callingUid, int userId);
565
Todd Kennedy82b08422017-09-28 13:32:05 -0700566 /*
567 * NOTE: The following methods are temporary until permissions are extracted from
568 * the package manager into a component specifically for handling permissions.
569 */
Todd Kennedy82b08422017-09-28 13:32:05 -0700570 /** Returns the flags for the given permission. */
571 public abstract @Nullable int getPermissionFlagsTEMP(@NonNull String permName,
572 @NonNull String packageName, int userId);
573 /** Updates the flags for the given permission. */
574 public abstract void updatePermissionFlagsTEMP(@NonNull String permName,
575 @NonNull String packageName, int flagMask, int flagValues, int userId);
Michal Karpinski528c3e52018-02-07 17:47:10 +0000576
577 /**
578 * Returns true if it's still safe to restore data backed up from this app's version
579 * that was signed with restoringFromSigHash.
580 */
581 public abstract boolean isDataRestoreSafe(@NonNull byte[] restoringFromSigHash,
582 @NonNull String packageName);
583
584 /**
585 * Returns true if it's still safe to restore data backed up from this app's version
586 * that was signed with restoringFromSig.
587 */
588 public abstract boolean isDataRestoreSafe(@NonNull Signature restoringFromSig,
589 @NonNull String packageName);
Svet Ganovadc1cf42015-06-15 16:36:24 -0700590}