blob: a7eecd7f4306a8e2124b11e37f3871dfc5dd9437 [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001/*
2**
3** Copyright 2007, The Android Open Source Project
4**
5** Licensed under the Apache License, Version 2.0 (the "License");
6** you may not use this file except in compliance with the License.
7** You may obtain a copy of the License at
8**
9** http://www.apache.org/licenses/LICENSE-2.0
10**
11** Unless required by applicable law or agreed to in writing, software
12** distributed under the License is distributed on an "AS IS" BASIS,
13** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14** See the License for the specific language governing permissions and
15** limitations under the License.
16*/
17
18package android.content.pm;
19
20import android.content.ComponentName;
21import android.content.Intent;
22import android.content.IntentFilter;
23import android.content.pm.ActivityInfo;
24import android.content.pm.ApplicationInfo;
Todd Kennedy9106c642017-02-08 14:16:53 -080025import android.content.pm.ChangedPackages;
Svetoslav Ganov096d3042017-01-30 16:34:13 -080026import android.content.pm.InstantAppInfo;
Dianne Hackborn49237342009-08-27 20:08:01 -070027import android.content.pm.FeatureInfo;
Calin Juravle3d2af7f2017-04-19 19:56:21 -070028import android.content.pm.IDexModuleRegisterCallback;
Jeff Sharkey3a44f3f2014-04-28 17:36:31 -070029import android.content.pm.IPackageInstaller;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080030import android.content.pm.IPackageDeleteObserver;
Jeff Sharkeyfbd0e9f2014-08-06 16:34:34 -070031import android.content.pm.IPackageDeleteObserver2;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080032import android.content.pm.IPackageDataObserver;
Suchi Amalapurapu8946dd32010-02-19 09:19:34 -080033import android.content.pm.IPackageMoveObserver;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080034import android.content.pm.IPackageStatsObserver;
Svetoslavf7c06eb2015-06-10 18:43:22 -070035import android.content.pm.IOnPermissionsChangeListener;
Fabrice Di Meglio1c1b4712014-11-19 17:12:32 -080036import android.content.pm.IntentFilterVerificationInfo;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080037import android.content.pm.InstrumentationInfo;
dcashmanc6f22492014-08-14 09:54:51 -070038import android.content.pm.KeySet;
Narayan Kamath2c828c1d2018-12-10 17:36:31 +000039import android.content.pm.ModuleInfo;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080040import android.content.pm.PackageInfo;
Kenny Root0e2c0f32011-04-15 17:50:10 -070041import android.content.pm.ParceledListSlice;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080042import android.content.pm.ProviderInfo;
43import android.content.pm.PermissionGroupInfo;
44import android.content.pm.PermissionInfo;
45import android.content.pm.ResolveInfo;
46import android.content.pm.ServiceInfo;
Suprabh Shukla389cb6f2018-10-01 18:20:39 -070047import android.content.pm.SuspendDialogInfo;
Amith Yamasani0b285492011-04-14 17:35:23 -070048import android.content.pm.UserInfo;
Kenny Root0aaa0d92011-09-12 16:42:55 -070049import android.content.pm.VerifierDeviceIdentity;
Svet Ganov67882122016-12-11 16:36:34 -080050import android.content.pm.VersionedPackage;
Calin Juravle45f8b292017-11-07 18:49:43 -080051import android.content.pm.dex.IArtManager;
Svet Ganov2acf0632015-11-24 19:10:59 -080052import android.graphics.Bitmap;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080053import android.net.Uri;
Amith Yamasanib8151ec2012-04-18 18:02:48 -070054import android.os.ParcelFileDescriptor;
Suprabh Shukla021b57a2018-03-08 18:21:50 -080055import android.os.PersistableBundle;
Suchi Amalapurapu1ccac752009-06-12 10:09:58 -070056import android.content.IntentSender;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080057
58/**
59 * See {@link PackageManager} for documentation on most of the APIs
60 * here.
Svetoslavc6d1c342015-02-26 14:44:43 -080061 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080062 * {@hide}
63 */
64interface IPackageManager {
Jeff Sharkey8924e872015-11-30 12:52:10 -070065 void checkPackageStartable(String packageName, int userId);
Andrei Oneaf650e3c2019-02-25 13:15:54 +000066 @UnsupportedAppUsage
Christopher Tateba629da2013-11-13 17:42:28 -080067 boolean isPackageAvailable(String packageName, int userId);
Andrei Oneaf650e3c2019-02-25 13:15:54 +000068 @UnsupportedAppUsage
Amith Yamasani483f3b02012-03-13 16:08:00 -070069 PackageInfo getPackageInfo(String packageName, int flags, int userId);
Svet Ganov67882122016-12-11 16:36:34 -080070 PackageInfo getPackageInfoVersioned(in VersionedPackage versionedPackage,
71 int flags, int userId);
Andrei Oneaf650e3c2019-02-25 13:15:54 +000072 @UnsupportedAppUsage
Jeff Sharkeycd654482016-01-08 17:42:11 -070073 int getPackageUid(String packageName, int flags, int userId);
74 int[] getPackageGids(String packageName, int flags, int userId);
Svetoslavc6d1c342015-02-26 14:44:43 -080075
Andrei Oneaf650e3c2019-02-25 13:15:54 +000076 @UnsupportedAppUsage
Dianne Hackborn47096932010-02-11 15:57:09 -080077 String[] currentToCanonicalPackageNames(in String[] names);
Andrei Oneaf650e3c2019-02-25 13:15:54 +000078 @UnsupportedAppUsage
Dianne Hackborn47096932010-02-11 15:57:09 -080079 String[] canonicalToCurrentPackageNames(in String[] names);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080080
Svetoslav Ganovadb8c522017-07-28 05:46:53 +000081 PermissionInfo getPermissionInfo(String name, String packageName, int flags);
Svetoslavc6d1c342015-02-26 14:44:43 -080082
Jeff Sharkeyd5896632016-03-04 16:16:00 -070083 ParceledListSlice queryPermissionsByGroup(String group, int flags);
Svetoslavc6d1c342015-02-26 14:44:43 -080084
Andrei Oneaf650e3c2019-02-25 13:15:54 +000085 @UnsupportedAppUsage
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080086 PermissionGroupInfo getPermissionGroupInfo(String name, int flags);
Svetoslavc6d1c342015-02-26 14:44:43 -080087
Jeff Sharkeyd5896632016-03-04 16:16:00 -070088 ParceledListSlice getAllPermissionGroups(int flags);
Svetoslavc6d1c342015-02-26 14:44:43 -080089
Andrei Oneaf650e3c2019-02-25 13:15:54 +000090 @UnsupportedAppUsage
Amith Yamasani483f3b02012-03-13 16:08:00 -070091 ApplicationInfo getApplicationInfo(String packageName, int flags ,int userId);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080092
Andrei Oneaf650e3c2019-02-25 13:15:54 +000093 @UnsupportedAppUsage
Amith Yamasani483f3b02012-03-13 16:08:00 -070094 ActivityInfo getActivityInfo(in ComponentName className, int flags, int userId);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080095
Dianne Hackborn91097de2014-04-04 18:02:06 -070096 boolean activitySupportsIntent(in ComponentName className, in Intent intent,
97 String resolvedType);
98
Andrei Oneaf650e3c2019-02-25 13:15:54 +000099 @UnsupportedAppUsage
Amith Yamasani483f3b02012-03-13 16:08:00 -0700100 ActivityInfo getReceiverInfo(in ComponentName className, int flags, int userId);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800101
Andrei Oneaf650e3c2019-02-25 13:15:54 +0000102 @UnsupportedAppUsage
Amith Yamasani483f3b02012-03-13 16:08:00 -0700103 ServiceInfo getServiceInfo(in ComponentName className, int flags, int userId);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800104
Andrei Oneaf650e3c2019-02-25 13:15:54 +0000105 @UnsupportedAppUsage
Amith Yamasani483f3b02012-03-13 16:08:00 -0700106 ProviderInfo getProviderInfo(in ComponentName className, int flags, int userId);
Dianne Hackborn361199b2010-08-30 17:42:07 -0700107
Andrei Oneaf650e3c2019-02-25 13:15:54 +0000108 @UnsupportedAppUsage
Svetoslavc6d1c342015-02-26 14:44:43 -0800109 int checkPermission(String permName, String pkgName, int userId);
110
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800111 int checkUidPermission(String permName, int uid);
Svetoslavc6d1c342015-02-26 14:44:43 -0800112
Andrei Oneaf650e3c2019-02-25 13:15:54 +0000113 @UnsupportedAppUsage
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800114 boolean addPermission(in PermissionInfo info);
Svetoslavc6d1c342015-02-26 14:44:43 -0800115
Andrei Oneaf650e3c2019-02-25 13:15:54 +0000116 @UnsupportedAppUsage
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800117 void removePermission(String name);
Dianne Hackborne639da72012-02-21 15:11:13 -0800118
Andrei Oneaf650e3c2019-02-25 13:15:54 +0000119 @UnsupportedAppUsage
Svet Ganov8c7f7002015-05-07 10:48:44 -0700120 void grantRuntimePermission(String packageName, String permissionName, int userId);
Dianne Hackborne639da72012-02-21 15:11:13 -0800121
Svet Ganov8c7f7002015-05-07 10:48:44 -0700122 void revokeRuntimePermission(String packageName, String permissionName, int userId);
123
Dianne Hackbornca8e6da2015-06-24 15:19:17 -0700124 void resetRuntimePermissions();
125
Svet Ganov8c7f7002015-05-07 10:48:44 -0700126 int getPermissionFlags(String permissionName, String packageName, int userId);
127
128 void updatePermissionFlags(String permissionName, String packageName, int flagMask,
Philip P. Moltmann2a537a62019-02-08 13:07:57 -0800129 int flagValues, boolean checkAdjustPolicyFlagPermission, int userId);
Dianne Hackborne639da72012-02-21 15:11:13 -0800130
Amith Yamasani0bf8f7c2015-06-22 13:00:32 -0700131 void updatePermissionFlagsForAllApps(int flagMask, int flagValues, int userId);
132
Svet Ganovd8eb8b22019-04-05 18:52:08 -0700133 List<String> getWhitelistedRestrictedPermissions(String packageName, int flags,
134 int userId);
135
136 boolean addWhitelistedRestrictedPermission(String packageName, String permission,
137 int whitelistFlags, int userId);
138
139 boolean removeWhitelistedRestrictedPermission(String packageName, String permission,
140 int whitelistFlags, int userId);
141
Svetoslav20770dd2015-05-29 15:43:04 -0700142 boolean shouldShowRequestPermissionRationale(String permissionName,
143 String packageName, int userId);
144
Dianne Hackborn854060af2009-07-09 18:14:31 -0700145 boolean isProtectedBroadcast(String actionName);
Svetoslavc6d1c342015-02-26 14:44:43 -0800146
Andrei Oneaf650e3c2019-02-25 13:15:54 +0000147 @UnsupportedAppUsage
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800148 int checkSignatures(String pkg1, String pkg2);
Svetoslavc6d1c342015-02-26 14:44:43 -0800149
Andrei Oneaf650e3c2019-02-25 13:15:54 +0000150 @UnsupportedAppUsage
Dianne Hackborn766cbfe2009-08-12 18:33:39 -0700151 int checkUidSignatures(int uid1, int uid2);
Svetoslavc6d1c342015-02-26 14:44:43 -0800152
David Brazdil990fb6b2016-03-01 10:02:27 +0000153 List<String> getAllPackages();
154
Andrei Oneaf650e3c2019-02-25 13:15:54 +0000155 @UnsupportedAppUsage
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800156 String[] getPackagesForUid(int uid);
Svetoslavc6d1c342015-02-26 14:44:43 -0800157
Andrei Oneaf650e3c2019-02-25 13:15:54 +0000158 @UnsupportedAppUsage
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800159 String getNameForUid(int uid);
Todd Kennedyad192a32017-08-02 07:51:57 -0700160 String[] getNamesForUids(in int[] uids);
Svetoslavc6d1c342015-02-26 14:44:43 -0800161
Andrei Oneaf650e3c2019-02-25 13:15:54 +0000162 @UnsupportedAppUsage
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800163 int getUidForSharedUser(String sharedUserName);
Ben Gruverdd72c9e2013-08-06 12:34:17 -0700164
Andrei Oneaf650e3c2019-02-25 13:15:54 +0000165 @UnsupportedAppUsage
Ben Gruverdd72c9e2013-08-06 12:34:17 -0700166 int getFlagsForUid(int uid);
167
Alex Klyubinb9f8a522015-02-03 11:12:59 -0800168 int getPrivateFlagsForUid(int uid);
169
Andrei Oneaf650e3c2019-02-25 13:15:54 +0000170 @UnsupportedAppUsage
Dianne Hackborn2d7576b2014-10-03 16:26:04 -0700171 boolean isUidPrivileged(int uid);
172
Andrei Oneaf650e3c2019-02-25 13:15:54 +0000173 @UnsupportedAppUsage
Dianne Hackborn33f5ddd2014-07-21 15:35:45 -0700174 String[] getAppOpPermissionPackages(String permissionName);
175
Andrei Oneaf650e3c2019-02-25 13:15:54 +0000176 @UnsupportedAppUsage
Amith Yamasani483f3b02012-03-13 16:08:00 -0700177 ResolveInfo resolveIntent(in Intent intent, String resolvedType, int flags, int userId);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800178
Bartosz Fabianowskid9fa6672017-01-18 18:22:26 +0100179 ResolveInfo findPersistentPreferredActivity(in Intent intent, int userId);
180
Nicolas Prevot81948992014-05-16 18:25:26 +0100181 boolean canForwardTo(in Intent intent, String resolvedType, int sourceUserId, int targetUserId);
Nicolas Prevot10fa67c2014-03-24 13:44:38 +0000182
Andrei Oneaf650e3c2019-02-25 13:15:54 +0000183 @UnsupportedAppUsage
Jeff Sharkeyd5896632016-03-04 16:16:00 -0700184 ParceledListSlice queryIntentActivities(in Intent intent,
Amith Yamasani483f3b02012-03-13 16:08:00 -0700185 String resolvedType, int flags, int userId);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800186
Jeff Sharkeyd5896632016-03-04 16:16:00 -0700187 ParceledListSlice queryIntentActivityOptions(
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800188 in ComponentName caller, in Intent[] specifics,
189 in String[] specificTypes, in Intent intent,
Amith Yamasani483f3b02012-03-13 16:08:00 -0700190 String resolvedType, int flags, int userId);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800191
Jeff Sharkeyd5896632016-03-04 16:16:00 -0700192 ParceledListSlice queryIntentReceivers(in Intent intent,
Amith Yamasani483f3b02012-03-13 16:08:00 -0700193 String resolvedType, int flags, int userId);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800194
195 ResolveInfo resolveService(in Intent intent,
Amith Yamasani483f3b02012-03-13 16:08:00 -0700196 String resolvedType, int flags, int userId);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800197
Jeff Sharkeyd5896632016-03-04 16:16:00 -0700198 ParceledListSlice queryIntentServices(in Intent intent,
Amith Yamasani483f3b02012-03-13 16:08:00 -0700199 String resolvedType, int flags, int userId);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800200
Jeff Sharkeyd5896632016-03-04 16:16:00 -0700201 ParceledListSlice queryIntentContentProviders(in Intent intent,
Jeff Sharkey85f5f812013-10-07 10:16:12 -0700202 String resolvedType, int flags, int userId);
203
Kenny Root0e2c0f32011-04-15 17:50:10 -0700204 /**
205 * This implements getInstalledPackages via a "last returned row"
206 * mechanism that is not exposed in the API. This is to get around the IPC
207 * limit that kicks in when flags are included that bloat up the data
208 * returned.
209 */
Andrei Oneaf650e3c2019-02-25 13:15:54 +0000210 @UnsupportedAppUsage
Dianne Hackbornd8e1dbb2013-01-17 17:47:37 -0800211 ParceledListSlice getInstalledPackages(int flags, in int userId);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800212
Kenny Root0e2c0f32011-04-15 17:50:10 -0700213 /**
Dianne Hackborne7991752013-01-16 17:56:46 -0800214 * This implements getPackagesHoldingPermissions via a "last returned row"
215 * mechanism that is not exposed in the API. This is to get around the IPC
216 * limit that kicks in when flags are included that bloat up the data
217 * returned.
218 */
219 ParceledListSlice getPackagesHoldingPermissions(in String[] permissions,
Dianne Hackbornd8e1dbb2013-01-17 17:47:37 -0800220 int flags, int userId);
Dianne Hackborne7991752013-01-16 17:56:46 -0800221
222 /**
Kenny Root0e2c0f32011-04-15 17:50:10 -0700223 * This implements getInstalledApplications via a "last returned row"
224 * mechanism that is not exposed in the API. This is to get around the IPC
225 * limit that kicks in when flags are included that bloat up the data
226 * returned.
227 */
Andrei Oneaf650e3c2019-02-25 13:15:54 +0000228 @UnsupportedAppUsage
Dianne Hackbornd8e1dbb2013-01-17 17:47:37 -0800229 ParceledListSlice getInstalledApplications(int flags, int userId);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800230
231 /**
232 * Retrieve all applications that are marked as persistent.
Svetoslavc6d1c342015-02-26 14:44:43 -0800233 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800234 * @return A List&lt;applicationInfo> containing one entry for each persistent
235 * application.
236 */
Jeff Sharkeyd5896632016-03-04 16:16:00 -0700237 ParceledListSlice getPersistentApplications(int flags);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800238
Amith Yamasani483f3b02012-03-13 16:08:00 -0700239 ProviderInfo resolveContentProvider(String name, int flags, int userId);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800240
241 /**
242 * Retrieve sync information for all content providers.
Svetoslavc6d1c342015-02-26 14:44:43 -0800243 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800244 * @param outNames Filled in with a list of the root names of the content
245 * providers that can sync.
246 * @param outInfo Filled in with a list of the ProviderInfo for each
247 * name in 'outNames'.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800248 */
Andrei Oneaf650e3c2019-02-25 13:15:54 +0000249 @UnsupportedAppUsage
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800250 void querySyncProviders(inout List<String> outNames,
251 inout List<ProviderInfo> outInfo);
252
Dianne Hackborn28ec27c2015-08-03 15:28:28 -0700253 ParceledListSlice queryContentProviders(
Makoto Onuki32757292017-02-22 14:36:59 -0800254 String processName, int uid, int flags, String metaDataKey);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800255
Andrei Oneaf650e3c2019-02-25 13:15:54 +0000256 @UnsupportedAppUsage
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800257 InstrumentationInfo getInstrumentationInfo(
258 in ComponentName className, int flags);
259
Andrei Oneaf650e3c2019-02-25 13:15:54 +0000260 @UnsupportedAppUsage
Jeff Sharkeyd5896632016-03-04 16:16:00 -0700261 ParceledListSlice queryInstrumentation(
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800262 String targetPackage, int flags);
263
Christopher Tate5cf55782016-04-25 17:08:56 -0700264 void finishPackageInstall(int token, boolean didLaunch);
Christopher Tate1bb69062010-02-19 17:02:12 -0800265
Andrei Oneaf650e3c2019-02-25 13:15:54 +0000266 @UnsupportedAppUsage
Dianne Hackborn880119b2010-11-18 22:26:40 -0800267 void setInstallerPackageName(in String targetPackage, in String installerPackageName);
268
Jeff Sharkey9bc89af2017-01-11 11:25:50 -0700269 void setApplicationCategoryHint(String packageName, int categoryHint, String callerPackageName);
270
Jeff Sharkeyfbd0e9f2014-08-06 16:34:34 -0700271 /** @deprecated rawr, don't call AIDL methods directly! */
Svet Ganov67882122016-12-11 16:36:34 -0800272 void deletePackageAsUser(in String packageName, int versionCode,
273 IPackageDeleteObserver observer, int userId, int flags);
Jeff Sharkeyfbd0e9f2014-08-06 16:34:34 -0700274
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800275 /**
Amith Yamasani67df64b2012-12-14 12:09:36 -0800276 * Delete a package for a specific user.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800277 *
Svet Ganov67882122016-12-11 16:36:34 -0800278 * @param versionedPackage The package to delete.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800279 * @param observer a callback to use to notify when the package deletion in finished.
Amith Yamasani67df64b2012-12-14 12:09:36 -0800280 * @param userId the id of the user for whom to delete the package
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800281 * @param flags - possible values: {@link #DONT_DELETE_DATA}
282 */
Svet Ganov67882122016-12-11 16:36:34 -0800283 void deletePackageVersioned(in VersionedPackage versionedPackage,
284 IPackageDeleteObserver2 observer, int userId, int flags);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800285
Andrei Oneaf650e3c2019-02-25 13:15:54 +0000286 @UnsupportedAppUsage
Jacek Surazski65e13172009-04-28 15:26:38 +0200287 String getInstallerPackageName(in String packageName);
288
Svet Ganov9c8b8ab2015-07-23 09:32:26 -0700289 void resetApplicationPreferences(int userId);
Dianne Hackborn8a2ed1d2013-01-29 15:18:29 -0800290
Andrei Oneaf650e3c2019-02-25 13:15:54 +0000291 @UnsupportedAppUsage
Amith Yamasanie9ecc8b2013-08-22 11:16:27 -0700292 ResolveInfo getLastChosenActivity(in Intent intent,
293 String resolvedType, int flags);
294
Andrei Oneaf650e3c2019-02-25 13:15:54 +0000295 @UnsupportedAppUsage
Amith Yamasanie9ecc8b2013-08-22 11:16:27 -0700296 void setLastChosenActivity(in Intent intent, String resolvedType, int flags,
297 in IntentFilter filter, int match, in ComponentName activity);
298
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800299 void addPreferredActivity(in IntentFilter filter, int match,
Amith Yamasania3f133a2012-08-09 17:11:28 -0700300 in ComponentName[] set, in ComponentName activity, int userId);
Satish Sampath8dbe6122009-06-02 23:35:54 +0100301
Andrei Oneaf650e3c2019-02-25 13:15:54 +0000302 @UnsupportedAppUsage
Satish Sampath8dbe6122009-06-02 23:35:54 +0100303 void replacePreferredActivity(in IntentFilter filter, int match,
Amith Yamasani41c1ded2014-08-05 11:15:05 -0700304 in ComponentName[] set, in ComponentName activity, int userId);
Satish Sampath8dbe6122009-06-02 23:35:54 +0100305
Andrei Oneaf650e3c2019-02-25 13:15:54 +0000306 @UnsupportedAppUsage
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800307 void clearPackagePreferredActivities(String packageName);
Satish Sampath8dbe6122009-06-02 23:35:54 +0100308
Andrei Oneaf650e3c2019-02-25 13:15:54 +0000309 @UnsupportedAppUsage
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800310 int getPreferredActivities(out List<IntentFilter> outFilters,
311 out List<ComponentName> outActivities, String packageName);
Amith Yamasanie9ecc8b2013-08-22 11:16:27 -0700312
Sander Alewijnsef475ca32014-02-17 15:13:58 +0000313 void addPersistentPreferredActivity(in IntentFilter filter, in ComponentName activity, int userId);
314
315 void clearPackagePersistentPreferredActivities(String packageName, int userId);
316
Nicolas Prevot3f7777f2014-07-24 15:58:39 +0100317 void addCrossProfileIntentFilter(in IntentFilter intentFilter, String ownerPackage,
Nicolas Prevot4b8d5822015-03-05 15:20:49 +0000318 int sourceUserId, int targetUserId, int flags);
Nicolas Prevot10fa67c2014-03-24 13:44:38 +0000319
Nicolas Prevot4b8d5822015-03-05 15:20:49 +0000320 void clearCrossProfileIntentFilters(int sourceUserId, String ownerPackage);
Nicolas Prevot10fa67c2014-03-24 13:44:38 +0000321
Suprabh Shukla79000492018-12-24 17:03:02 -0800322 String[] setDistractingPackageRestrictionsAsUser(in String[] packageNames, int restrictionFlags,
323 int userId);
324
Suprabh Shukla021b57a2018-03-08 18:21:50 -0800325 String[] setPackagesSuspendedAsUser(in String[] packageNames, boolean suspended,
Suprabh Shukla3c3af142018-03-30 00:28:37 -0700326 in PersistableBundle appExtras, in PersistableBundle launcherExtras,
Suprabh Shukla389cb6f2018-10-01 18:20:39 -0700327 in SuspendDialogInfo dialogInfo, String callingPackage, int userId);
Suprabh Shukla021b57a2018-03-08 18:21:50 -0800328
Suprabh Shukla436d093ba2018-12-12 16:01:41 +0000329 String[] getUnsuspendablePackagesForUser(in String[] packageNames, int userId);
Suprabh Shukla1f1de702018-11-09 22:49:23 -0800330
Andrei Stingaceanu355b2322016-02-12 16:43:51 +0000331 boolean isPackageSuspendedForUser(String packageName, int userId);
Andrei Stingaceanu1e283912015-11-26 15:26:28 +0000332
Suprabh Shukla2fd43ba2018-03-22 16:57:49 -0700333 PersistableBundle getSuspendedPackageAppExtras(String packageName, int userId);
Suprabh Shukla021b57a2018-03-08 18:21:50 -0800334
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800335 /**
Christopher Tatee012a232015-04-01 17:18:50 -0700336 * Backup/restore support - only the system uid may use these.
337 */
338 byte[] getPreferredActivityBackup(int userId);
339 void restorePreferredActivities(in byte[] backup, int userId);
Christopher Tate6038d152015-06-17 13:07:46 -0700340 byte[] getDefaultAppsBackup(int userId);
341 void restoreDefaultApps(in byte[] backup, int userId);
342 byte[] getIntentFilterVerificationBackup(int userId);
343 void restoreIntentFilterVerification(in byte[] backup, int userId);
Christopher Tatee012a232015-04-01 17:18:50 -0700344
345 /**
Christopher Tatea2a0850d2013-09-05 16:38:58 -0700346 * Report the set of 'Home' activity candidates, plus (if any) which of them
347 * is the current "always use this one" setting.
348 */
Andrei Oneaf650e3c2019-02-25 13:15:54 +0000349 @UnsupportedAppUsage
Christopher Tatea2a0850d2013-09-05 16:38:58 -0700350 ComponentName getHomeActivities(out List<ResolveInfo> outHomeCandidates);
351
Makoto Onuki4828a592016-03-15 18:06:57 -0700352 void setHomeActivity(in ComponentName className, int userId);
353
Christopher Tatea2a0850d2013-09-05 16:38:58 -0700354 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800355 * As per {@link android.content.pm.PackageManager#setComponentEnabledSetting}.
356 */
Andrei Oneaf650e3c2019-02-25 13:15:54 +0000357 @UnsupportedAppUsage
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800358 void setComponentEnabledSetting(in ComponentName componentName,
Amith Yamasani483f3b02012-03-13 16:08:00 -0700359 in int newState, in int flags, int userId);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800360
361 /**
362 * As per {@link android.content.pm.PackageManager#getComponentEnabledSetting}.
363 */
Andrei Oneaf650e3c2019-02-25 13:15:54 +0000364 @UnsupportedAppUsage
Amith Yamasani483f3b02012-03-13 16:08:00 -0700365 int getComponentEnabledSetting(in ComponentName componentName, int userId);
Jeff Davidson2a880312015-06-22 16:54:34 -0700366
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800367 /**
368 * As per {@link android.content.pm.PackageManager#setApplicationEnabledSetting}.
369 */
Andrei Oneaf650e3c2019-02-25 13:15:54 +0000370 @UnsupportedAppUsage
Dianne Hackborn3fa3c28a2013-03-26 16:15:41 -0700371 void setApplicationEnabledSetting(in String packageName, in int newState, int flags,
372 int userId, String callingPackage);
Jeff Davidson2a880312015-06-22 16:54:34 -0700373
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800374 /**
375 * As per {@link android.content.pm.PackageManager#getApplicationEnabledSetting}.
376 */
Andrei Oneaf650e3c2019-02-25 13:15:54 +0000377 @UnsupportedAppUsage
Amith Yamasani483f3b02012-03-13 16:08:00 -0700378 int getApplicationEnabledSetting(in String packageName, int userId);
Jeff Davidson2a880312015-06-22 16:54:34 -0700379
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800380 /**
Michal Karpinskib52a4612016-03-21 13:39:42 +0000381 * Logs process start information (including APK hash) to the security log.
382 */
383 void logAppProcessStartIfNeeded(String processName, int uid, String seinfo, String apkFile,
384 int pid);
385
386 /**
Sudheer Shankabbb3ff22015-07-09 15:39:23 +0100387 * As per {@link android.content.pm.PackageManager#flushPackageRestrictionsAsUser}.
388 */
389 void flushPackageRestrictionsAsUser(in int userId);
390
391 /**
Dianne Hackborne7f97212011-02-24 14:40:20 -0800392 * Set whether the given package should be considered stopped, making
393 * it not visible to implicit intents that filter out stopped packages.
394 */
Andrei Oneaf650e3c2019-02-25 13:15:54 +0000395 @UnsupportedAppUsage
Amith Yamasani483f3b02012-03-13 16:08:00 -0700396 void setPackageStoppedState(String packageName, boolean stopped, int userId);
Dianne Hackborne7f97212011-02-24 14:40:20 -0800397
398 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800399 * Free storage by deleting LRU sorted list of cache files across
400 * all applications. If the currently available free storage
401 * on the device is greater than or equal to the requested
402 * free storage, no cache files are cleared. If the currently
403 * available storage on the device is less than the requested
404 * free storage, some or all of the cache files across
405 * all applications are deleted (based on last accessed time)
406 * to increase the free storage space on the device to
407 * the requested value. There is no guarantee that clearing all
408 * the cache files from all applications will clear up
409 * enough storage to achieve the desired value.
410 * @param freeStorageSize The number of bytes of storage to be
411 * freed by the system. Say if freeStorageSize is XX,
412 * and the current free storage is YY,
413 * if XX is less than YY, just return. if not free XX-YY number
414 * of bytes if possible.
415 * @param observer call back used to notify when
416 * the operation is completed
417 */
Jeff Sharkey529f91f2015-04-18 20:23:13 -0700418 void freeStorageAndNotify(in String volumeUuid, in long freeStorageSize,
Jeff Sharkeyddff8072017-05-26 13:10:46 -0600419 int storageFlags, IPackageDataObserver observer);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800420
421 /**
422 * Free storage by deleting LRU sorted list of cache files across
423 * all applications. If the currently available free storage
424 * on the device is greater than or equal to the requested
425 * free storage, no cache files are cleared. If the currently
426 * available storage on the device is less than the requested
427 * free storage, some or all of the cache files across
428 * all applications are deleted (based on last accessed time)
429 * to increase the free storage space on the device to
430 * the requested value. There is no guarantee that clearing all
431 * the cache files from all applications will clear up
432 * enough storage to achieve the desired value.
433 * @param freeStorageSize The number of bytes of storage to be
434 * freed by the system. Say if freeStorageSize is XX,
435 * and the current free storage is YY,
436 * if XX is less than YY, just return. if not free XX-YY number
437 * of bytes if possible.
Suchi Amalapurapu1ccac752009-06-12 10:09:58 -0700438 * @param pi IntentSender call back used to
439 * notify when the operation is completed.May be null
440 * to indicate that no call back is desired.
441 */
Jeff Sharkey529f91f2015-04-18 20:23:13 -0700442 void freeStorage(in String volumeUuid, in long freeStorageSize,
Jeff Sharkeyddff8072017-05-26 13:10:46 -0600443 int storageFlags, in IntentSender pi);
Jeff Davidson2a880312015-06-22 16:54:34 -0700444
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800445 /**
446 * Delete all the cache files in an applications cache directory
447 * @param packageName The package name of the application whose cache
448 * files need to be deleted
449 * @param observer a callback used to notify when the deletion is finished.
450 */
Andrei Oneaf650e3c2019-02-25 13:15:54 +0000451 @UnsupportedAppUsage
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800452 void deleteApplicationCacheFiles(in String packageName, IPackageDataObserver observer);
Jeff Davidson2a880312015-06-22 16:54:34 -0700453
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800454 /**
Suprabh Shukla78c9eb82016-04-12 15:51:35 -0700455 * Delete all the cache files in an applications cache directory
456 * @param packageName The package name of the application whose cache
457 * files need to be deleted
458 * @param userId the user to delete application cache for
459 * @param observer a callback used to notify when the deletion is finished.
460 */
461 void deleteApplicationCacheFilesAsUser(in String packageName, int userId, IPackageDataObserver observer);
462
463 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800464 * Clear the user data directory of an application.
465 * @param packageName The package name of the application whose cache
466 * files need to be deleted
467 * @param observer a callback used to notify when the operation is completed.
468 */
Amith Yamasani483f3b02012-03-13 16:08:00 -0700469 void clearApplicationUserData(in String packageName, IPackageDataObserver observer, int userId);
Jeff Davidson2a880312015-06-22 16:54:34 -0700470
David Brazdil9aa6db02016-03-08 12:57:12 +0000471 /**
472 * Clear the profile data of an application.
473 * @param packageName The package name of the application whose profile data
474 * need to be deleted
475 */
476 void clearApplicationProfileData(in String packageName);
477
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800478 /**
479 * Get package statistics including the code, data and cache size for
480 * an already installed package
481 * @param packageName The package name of the application
Dianne Hackborn0c380492012-08-20 17:23:30 -0700482 * @param userHandle Which user the size should be retrieved for
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800483 * @param observer a callback to use to notify when the asynchronous
484 * retrieval of information is complete.
485 */
Dianne Hackborn0c380492012-08-20 17:23:30 -0700486 void getPackageSizeInfo(in String packageName, int userHandle, IPackageStatsObserver observer);
Jeff Davidson2a880312015-06-22 16:54:34 -0700487
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800488 /**
489 * Get a list of shared libraries that are available on the
490 * system.
491 */
Andrei Oneaf650e3c2019-02-25 13:15:54 +0000492 @UnsupportedAppUsage
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800493 String[] getSystemSharedLibraryNames();
494
Dianne Hackborn49237342009-08-27 20:08:01 -0700495 /**
496 * Get a list of features that are available on the
497 * system.
498 */
Jeff Sharkeyd5896632016-03-04 16:16:00 -0700499 ParceledListSlice getSystemAvailableFeatures();
Dianne Hackborn49237342009-08-27 20:08:01 -0700500
Jeff Sharkey115d2c12016-02-15 17:25:57 -0700501 boolean hasSystemFeature(String name, int version);
Jeff Davidson2a880312015-06-22 16:54:34 -0700502
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800503 void enterSafeMode();
Andrei Oneaf650e3c2019-02-25 13:15:54 +0000504 @UnsupportedAppUsage
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800505 boolean isSafeMode();
506 void systemReady();
Andrei Oneaf650e3c2019-02-25 13:15:54 +0000507 @UnsupportedAppUsage
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800508 boolean hasSystemUidErrors();
Dianne Hackborn661cd522011-08-22 00:26:20 -0700509
510 /**
Nicolas Geoffray27c07372015-11-05 16:54:09 +0000511 * Ask the package manager to fstrim the disk if needed.
Dianne Hackborn661cd522011-08-22 00:26:20 -0700512 */
Nicolas Geoffray27c07372015-11-05 16:54:09 +0000513 void performFstrimIfNeeded();
514
515 /**
David Brazdilf5c444f2016-03-30 11:45:52 +0100516 * Ask the package manager to update packages if needed.
David Brazdila0e10432016-01-20 14:04:40 +0000517 */
David Brazdilf5c444f2016-03-30 11:45:52 +0100518 void updatePackagesIfNeeded();
David Brazdila0e10432016-01-20 14:04:40 +0000519
520 /**
Brian Carlstromca82e612016-04-19 23:16:08 -0700521 * Notify the package manager that a package is going to be used and why.
522 *
523 * See PackageManager.NOTIFY_PACKAGE_USE_* for reasons.
Nicolas Geoffray27c07372015-11-05 16:54:09 +0000524 */
Calin Juravle0a3693c2017-05-01 19:49:21 -0700525 oneway void notifyPackageUse(String packageName, int reason);
Dianne Hackborn661cd522011-08-22 00:26:20 -0700526
Dianne Hackborn5c1e00b2009-06-18 17:10:57 -0700527 /**
Calin Juravle8d2a51f2016-11-23 19:50:58 +0000528 * Notify the package manager that a list of dex files have been loaded.
529 *
530 * @param loadingPackageName the name of the package who performs the load
Calin Juravlef1ff36f2017-07-22 12:33:41 -0700531 * @param classLoadersNames the names of the class loaders present in the loading chain. The
532 * list encodes the class loader chain in the natural order. The first class loader has
533 * the second one as its parent and so on. The dex files present in the class path of the
534 * first class loader will be recorded in the usage file.
535 * @param classPaths the class paths corresponding to the class loaders names from
536 * {@param classLoadersNames}. The the first element corresponds to the first class loader
537 * and so on. A classpath is represented as a list of dex files separated by
Alan Stokesb6c3a602018-11-02 12:10:42 +0000538 * {@code File.pathSeparator}, or null if the class loader's classpath is not known.
Calin Juravlef1ff36f2017-07-22 12:33:41 -0700539 * The dex files found in the first class path will be recorded in the usage file.
Calin Juravle8d2a51f2016-11-23 19:50:58 +0000540 * @param loaderIsa the ISA of the loader process
541 */
Calin Juravlef1ff36f2017-07-22 12:33:41 -0700542 oneway void notifyDexLoad(String loadingPackageName, in List<String> classLoadersNames,
543 in List<String> classPaths, String loaderIsa);
Calin Juravle8d2a51f2016-11-23 19:50:58 +0000544
545 /**
Calin Juravle3d2af7f2017-04-19 19:56:21 -0700546 * Register an application dex module with the package manager.
547 * The package manager will keep track of the given module for future optimizations.
548 *
549 * Dex module optimizations will disable the classpath checking at runtime. The client bares
550 * the responsibility to ensure that the static assumptions on classes in the optimized code
551 * hold at runtime (e.g. there's no duplicate classes in the classpath).
552 *
553 * Note that the package manager already keeps track of dex modules loaded with
554 * {@link dalvik.system.DexClassLoader} and {@link dalvik.system.PathClassLoader}.
555 * This can be called for an eager registration.
556 *
557 * The call might take a while and the results will be posted on the main thread, using
558 * the given callback.
559 *
560 * If the module is intended to be shared with other apps, make sure that the file
561 * permissions allow for it.
562 * If at registration time the permissions allow for others to read it, the module would
563 * be marked as a shared module which might undergo a different optimization strategy.
564 * (usually shared modules will generated larger optimizations artifacts,
565 * taking more disk space).
566 *
567 * @param packageName the package name to which the dex module belongs
568 * @param dexModulePath the absolute path of the dex module.
569 * @param isSharedModule whether or not the module is intended to be used by other apps.
570 * @param callback if not null,
571 * {@link android.content.pm.IDexModuleRegisterCallback.IDexModuleRegisterCallback#onDexModuleRegistered}
572 * will be called once the registration finishes.
573 */
Calin Juravle0ace6ac2017-05-01 19:19:34 -0700574 oneway void registerDexModule(in String packageName, in String dexModulePath,
Calin Juravle3d2af7f2017-04-19 19:56:21 -0700575 in boolean isSharedModule, IDexModuleRegisterCallback callback);
576
577 /**
Andreas Gampebdd30d82016-03-20 11:32:11 -0700578 * Ask the package manager to perform a dex-opt with the given compiler filter.
579 *
580 * Note: exposed only for the shell command to allow moving packages explicitly to a
581 * definite state.
582 */
Nicolas Geoffrayfb6cf772016-05-27 13:09:19 +0100583 boolean performDexOptMode(String packageName, boolean checkProfiles,
Calin Juravleb6f844d2017-07-17 15:23:21 -0700584 String targetCompilerFilter, boolean force, boolean bootComplete, String splitName);
David Brazdil493411a2016-02-01 13:48:46 +0000585
David Sehra8777082016-05-24 15:25:23 -0700586 /**
Calin Juravlec22c30e2017-01-16 19:18:48 -0800587 * Ask the package manager to perform a dex-opt with the given compiler filter on the
588 * secondary dex files belonging to the given package.
589 *
590 * Note: exposed only for the shell command to allow moving packages explicitly to a
591 * definite state.
592 */
593 boolean performDexOptSecondary(String packageName,
594 String targetCompilerFilter, boolean force);
595
596 /**
Eric Holka1485f62019-01-07 13:58:25 -0800597 * Ask the package manager to compile layouts in the given package.
598 */
599 boolean compileLayouts(String packageName);
600
601 /**
David Sehra8777082016-05-24 15:25:23 -0700602 * Ask the package manager to dump profiles associated with a package.
603 */
604 void dumpProfiles(String packageName);
605
Jeff Sharkey20e0c502014-07-25 14:09:37 -0700606 void forceDexOpt(String packageName);
607
Suchi Amalapurapuaf8e9f42010-01-12 10:17:28 -0800608 /**
Arthur Eubanks09dd1ec2017-09-15 09:28:51 -0700609 * Execute the background dexopt job immediately on packages in packageNames.
610 * If null, then execute on all packages.
Calin Juravlecb5f41e2017-01-25 17:16:08 -0800611 */
Arthur Eubanks09dd1ec2017-09-15 09:28:51 -0700612 boolean runBackgroundDexoptJob(in List<String> packageNames);
Calin Juravlecb5f41e2017-01-25 17:16:08 -0800613
614 /**
Calin Juravle1aa5f882017-01-25 01:05:50 -0800615 * Reconcile the information we have about the secondary dex files belonging to
616 * {@code packagName} and the actual dex files. For all dex files that were
617 * deleted, update the internal records and delete the generated oat files.
618 */
619 void reconcileSecondaryDexFiles(String packageName);
620
Jeff Sharkey620b32b2015-04-23 19:36:02 -0700621 int getMoveStatus(int moveId);
622
623 void registerMoveCallback(in IPackageMoveObserver callback);
624 void unregisterMoveCallback(in IPackageMoveObserver callback);
625
626 int movePackage(in String packageName, in String volumeUuid);
627 int movePrimaryStorage(in String volumeUuid);
Jeff Sharkeyb2b9ab82015-04-05 21:10:42 -0700628
Andrei Oneaf650e3c2019-02-25 13:15:54 +0000629 @UnsupportedAppUsage
Dianne Hackbornd7c09682010-03-30 10:42:20 -0700630 boolean addPermissionAsync(in PermissionInfo info);
Suchi Amalapurapu40e47252010-04-07 16:15:50 -0700631
632 boolean setInstallLocation(int loc);
Andrei Oneaf650e3c2019-02-25 13:15:54 +0000633 @UnsupportedAppUsage
Suchi Amalapurapu40e47252010-04-07 16:15:50 -0700634 int getInstallLocation();
Amith Yamasani0b285492011-04-14 17:35:23 -0700635
Todd Kennedybe0b8892017-02-15 14:13:52 -0800636 int installExistingPackageAsUser(String packageName, int userId, int installFlags,
Philip P. Moltmanna4bd1502019-05-13 17:10:46 -0700637 int installReason, in List<String> whiteListedPermissions);
Dianne Hackborn7767eac2012-08-23 18:25:40 -0700638
Kenny Root3a9b5fb2011-09-20 14:15:38 -0700639 void verifyPendingInstall(int id, int verificationCode);
rich canningsd9ef3e52012-08-22 14:28:05 -0700640 void extendVerificationTimeout(int id, int verificationCodeAtTimeout, long millisecondsToDelay);
Kenny Root0aaa0d92011-09-12 16:42:55 -0700641
Fabrice Di Megliod3d8a322015-04-01 15:58:47 -0700642 void verifyIntentFilter(int id, int verificationCode, in List<String> failedDomains);
Fabrice Di Meglio1c1b4712014-11-19 17:12:32 -0800643 int getIntentVerificationStatus(String packageName, int userId);
644 boolean updateIntentVerificationStatus(String packageName, int status, int userId);
Jeff Sharkeyd5896632016-03-04 16:16:00 -0700645 ParceledListSlice getIntentFilterVerifications(String packageName);
646 ParceledListSlice getAllIntentFilters(String packageName);
Fabrice Di Meglio1c1b4712014-11-19 17:12:32 -0800647
Fabrice Di Meglio62271722015-04-10 17:24:02 -0700648 boolean setDefaultBrowserPackageName(String packageName, int userId);
649 String getDefaultBrowserPackageName(int userId);
650
Kenny Root0aaa0d92011-09-12 16:42:55 -0700651 VerifierDeviceIdentity getVerifierDeviceIdentity();
Dianne Hackborn58f42a52011-10-10 13:46:34 -0700652
653 boolean isFirstBoot();
Dianne Hackborn13579ed2012-11-28 18:05:36 -0800654 boolean isOnlyCoreApps();
Svet Ganovd8eb8b22019-04-05 18:52:08 -0700655 boolean isDeviceUpgrading();
Amith Yamasani742a6712011-05-04 14:49:28 -0700656
Jeff Sharkey5d32e772012-04-12 15:59:23 -0700657 void setPermissionEnforced(String permission, boolean enforced);
658 boolean isPermissionEnforced(String permission);
Jeff Sharkeyf6f7f1d2012-06-12 17:12:08 -0700659
660 /** Reflects current DeviceStorageMonitorService state */
Andrei Oneaf650e3c2019-02-25 13:15:54 +0000661 @UnsupportedAppUsage
Jeff Sharkeyf6f7f1d2012-06-12 17:12:08 -0700662 boolean isStorageLow();
Amith Yamasani655d0e22013-06-12 14:19:10 -0700663
Andrei Oneaf650e3c2019-02-25 13:15:54 +0000664 @UnsupportedAppUsage
Amith Yamasanie5bcff62014-07-19 15:44:09 -0700665 boolean setApplicationHiddenSettingAsUser(String packageName, boolean hidden, int userId);
666 boolean getApplicationHiddenSettingAsUser(String packageName, int userId);
Jeff Sharkey3a44f3f2014-04-28 17:36:31 -0700667
Rhed Jaocd47c262018-06-13 11:16:16 +0800668 void setSystemAppHiddenUntilInstalled(String packageName, boolean hidden);
669 boolean setSystemAppInstallState(String packageName, boolean installed, int userId);
670
Andrei Oneaf650e3c2019-02-25 13:15:54 +0000671 @UnsupportedAppUsage
Jeff Sharkey3a44f3f2014-04-28 17:36:31 -0700672 IPackageInstaller getPackageInstaller();
Kenny Guyc13053b2014-05-29 14:17:17 +0100673
674 boolean setBlockUninstallForUser(String packageName, boolean blockUninstall, int userId);
Andrei Oneaf650e3c2019-02-25 13:15:54 +0000675 @UnsupportedAppUsage
Kenny Guyc13053b2014-05-29 14:17:17 +0100676 boolean getBlockUninstallForUser(String packageName, int userId);
dcashman9d2f4412014-06-09 09:27:54 -0700677
dcashmanc6f22492014-08-14 09:54:51 -0700678 KeySet getKeySetByAlias(String packageName, String alias);
679 KeySet getSigningKeySet(String packageName);
680 boolean isPackageSignedByKeySet(String packageName, in KeySet ks);
681 boolean isPackageSignedByKeySetExactly(String packageName, in KeySet ks);
Svetoslavf7c06eb2015-06-10 18:43:22 -0700682
683 void addOnPermissionsChangeListener(in IOnPermissionsChangeListener listener);
684 void removeOnPermissionsChangeListener(in IOnPermissionsChangeListener listener);
Svetoslavcdfd2302015-06-25 19:07:31 -0700685 void grantDefaultPermissionsToEnabledCarrierApps(in String[] packageNames, int userId);
Brad Ebingerf4779792017-01-23 16:44:23 -0800686 void grantDefaultPermissionsToEnabledImsServices(in String[] packageNames, int userId);
Nathan Harold76ad1a32018-02-20 14:31:09 -0800687 void grantDefaultPermissionsToEnabledTelephonyDataServices(
688 in String[] packageNames, int userId);
689 void revokeDefaultPermissionsFromDisabledTelephonyDataServices(
690 in String[] packageNames, int userId);
Holly Jiuyu Sun349e2142018-03-26 15:29:42 -0700691 void grantDefaultPermissionsToActiveLuiApp(in String packageName, int userId);
692 void revokeDefaultPermissionsFromLuiApps(in String[] packageNames, int userId);
Svet Ganovad3b2972015-07-07 22:49:17 -0700693
694 boolean isPermissionRevokedByPolicy(String permission, String packageName, int userId);
Svet Ganovf1b7f202015-07-29 08:33:42 -0700695
Andrei Oneaf650e3c2019-02-25 13:15:54 +0000696 @UnsupportedAppUsage
Svet Ganovf1b7f202015-07-29 08:33:42 -0700697 String getPermissionControllerPackageName();
Svet Ganov2acf0632015-11-24 19:10:59 -0800698
Svetoslav Ganov096d3042017-01-30 16:34:13 -0800699 ParceledListSlice getInstantApps(int userId);
700 byte[] getInstantAppCookie(String packageName, int userId);
701 boolean setInstantAppCookie(String packageName, in byte[] cookie, int userId);
702 Bitmap getInstantAppIcon(String packageName, int userId);
703 boolean isInstantApp(String packageName, int userId);
Fyodor Kupolovbdbc9692015-12-14 13:11:13 -0800704
705 boolean setRequiredForSystemUser(String packageName, boolean systemUserApp);
Svet Ganovd7b1f4112016-02-09 18:49:23 -0800706
Todd Kennedyab532892017-03-08 14:19:49 -0800707 /**
708 * Sets whether or not an update is available. Ostensibly for instant apps
709 * to force exteranl resolution.
710 */
711 void setUpdateAvailable(String packageName, boolean updateAvaialble);
712
Andrei Oneaf650e3c2019-02-25 13:15:54 +0000713 @UnsupportedAppUsage
Svet Ganovd7b1f4112016-02-09 18:49:23 -0800714 String getServicesSystemSharedLibraryPackageName();
Andrei Oneaf650e3c2019-02-25 13:15:54 +0000715 @UnsupportedAppUsage
Svetoslav Ganova9c25002016-04-13 19:25:56 -0700716 String getSharedSystemSharedLibraryPackageName();
Makoto Onukif34db0a2016-02-17 11:17:15 -0800717
Todd Kennedy9106c642017-02-08 14:16:53 -0800718 ChangedPackages getChangedPackages(int sequenceNumber, int userId);
719
Makoto Onukif34db0a2016-02-17 11:17:15 -0800720 boolean isPackageDeviceAdminOnAnyUser(String packageName);
Todd Kennedy39bfee52016-02-24 10:28:21 -0800721
Bartosz Fabianowskia34f53f2017-01-11 18:08:47 +0100722 int getInstallReason(String packageName, int userId);
Svet Ganov67882122016-12-11 16:36:34 -0800723
Svet Ganov58c99f02017-05-15 14:07:17 -0700724 ParceledListSlice getSharedLibraries(in String packageName, int flags, int userId);
Suprabh Shuklaaef25132017-01-23 18:09:03 -0800725
Hai Zhang1ad238f2019-03-20 16:11:07 -0700726 ParceledListSlice getDeclaredSharedLibraries(in String packageName, int flags, int userId);
727
Suprabh Shuklaaef25132017-01-23 18:09:03 -0800728 boolean canRequestPackageInstalls(String packageName, int userId);
Fyodor Kupolov935618a2017-03-22 16:50:44 -0700729
730 void deletePreloadsFileCache();
Chad Brubaker336ae5b2017-03-24 15:53:09 -0700731
Todd Kennedy0a3f0812017-05-08 14:43:15 -0700732 ComponentName getInstantAppResolverComponent();
733
Chad Brubaker336ae5b2017-03-24 15:53:09 -0700734 ComponentName getInstantAppResolverSettingsComponent();
Todd Kennedy801e6592017-04-12 14:10:12 -0700735
736 ComponentName getInstantAppInstallerComponent();
Chad Brubaker0d277a72017-04-12 16:56:53 -0700737
738 String getInstantAppAndroidId(String packageName, int userId);
Calin Juravle45f8b292017-11-07 18:49:43 -0800739
740 IArtManager getArtManager();
Ben Gruver1ab3d6e2017-12-07 13:45:08 -0800741
742 void setHarmfulAppWarning(String packageName, CharSequence warning, int userId);
743
744 CharSequence getHarmfulAppWarning(String packageName, int userId);
Daniel Cashman5cdda342018-01-19 07:22:52 -0800745
746 boolean hasSigningCertificate(String packageName, in byte[] signingCertificate, int flags);
747
748 boolean hasUidSigningCertificate(int uid, in byte[] signingCertificate, int flags);
Makoto Onuki700feef2018-02-15 10:59:41 -0800749
750 String getSystemTextClassifierPackageName();
Benjamin Franz7cc9a812018-03-22 10:11:29 +0000751
Yi Jiang8915b352019-03-21 12:02:53 -0700752 String getAttentionServicePackageName();
753
Varun Shah5f303652018-11-16 18:11:19 -0800754 String getWellbeingPackageName();
755
George Hodulikcd7695d2019-01-29 18:17:05 -0800756 String getAppPredictionServicePackageName();
757
Nadav Bar1a1f5a212019-03-17 16:15:14 +0200758 String getSystemCaptionsServicePackageName();
Nadav Bar6d79ab72019-01-10 10:52:11 +0200759
Joe Onorato5a15b552018-12-18 10:40:04 -0800760 String getIncidentReportApproverPackageName();
761
Benjamin Franz7cc9a812018-03-22 10:11:29 +0000762 boolean isPackageStateProtected(String packageName, int userId);
MÃ¥rten Kongstadfd20b832018-10-26 15:36:20 +0200763
764 void sendDeviceCustomizationReadyBroadcast();
Narayan Kamath2c828c1d2018-12-10 17:36:31 +0000765
766 List<ModuleInfo> getInstalledModules(int flags);
767
768 ModuleInfo getModuleInfo(String packageName, int flags);
Svet Ganovd8eb8b22019-04-05 18:52:08 -0700769
770 int getRuntimePermissionsVersion(int userId);
771
772 void setRuntimePermissionsVersion(int version, int userId);
Winson23863be2019-04-04 17:41:28 -0700773
774 void notifyPackagesReplacedReceived(in String[] packages);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800775}