blob: fd3529b05c35a51e3f5c9f23699f7fc7ca56499c [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
Svetoslav20770dd2015-05-29 15:43:04 -0700133 boolean shouldShowRequestPermissionRationale(String permissionName,
134 String packageName, int userId);
135
Dianne Hackborn854060af2009-07-09 18:14:31 -0700136 boolean isProtectedBroadcast(String actionName);
Svetoslavc6d1c342015-02-26 14:44:43 -0800137
Andrei Oneaf650e3c2019-02-25 13:15:54 +0000138 @UnsupportedAppUsage
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800139 int checkSignatures(String pkg1, String pkg2);
Svetoslavc6d1c342015-02-26 14:44:43 -0800140
Andrei Oneaf650e3c2019-02-25 13:15:54 +0000141 @UnsupportedAppUsage
Dianne Hackborn766cbfe2009-08-12 18:33:39 -0700142 int checkUidSignatures(int uid1, int uid2);
Svetoslavc6d1c342015-02-26 14:44:43 -0800143
David Brazdil990fb6b2016-03-01 10:02:27 +0000144 List<String> getAllPackages();
145
Andrei Oneaf650e3c2019-02-25 13:15:54 +0000146 @UnsupportedAppUsage
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800147 String[] getPackagesForUid(int uid);
Svetoslavc6d1c342015-02-26 14:44:43 -0800148
Andrei Oneaf650e3c2019-02-25 13:15:54 +0000149 @UnsupportedAppUsage
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800150 String getNameForUid(int uid);
Todd Kennedyad192a32017-08-02 07:51:57 -0700151 String[] getNamesForUids(in int[] uids);
Svetoslavc6d1c342015-02-26 14:44:43 -0800152
Andrei Oneaf650e3c2019-02-25 13:15:54 +0000153 @UnsupportedAppUsage
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800154 int getUidForSharedUser(String sharedUserName);
Ben Gruverdd72c9e2013-08-06 12:34:17 -0700155
Andrei Oneaf650e3c2019-02-25 13:15:54 +0000156 @UnsupportedAppUsage
Ben Gruverdd72c9e2013-08-06 12:34:17 -0700157 int getFlagsForUid(int uid);
158
Alex Klyubinb9f8a522015-02-03 11:12:59 -0800159 int getPrivateFlagsForUid(int uid);
160
Andrei Oneaf650e3c2019-02-25 13:15:54 +0000161 @UnsupportedAppUsage
Dianne Hackborn2d7576b2014-10-03 16:26:04 -0700162 boolean isUidPrivileged(int uid);
163
Andrei Oneaf650e3c2019-02-25 13:15:54 +0000164 @UnsupportedAppUsage
Dianne Hackborn33f5ddd2014-07-21 15:35:45 -0700165 String[] getAppOpPermissionPackages(String permissionName);
166
Andrei Oneaf650e3c2019-02-25 13:15:54 +0000167 @UnsupportedAppUsage
Amith Yamasani483f3b02012-03-13 16:08:00 -0700168 ResolveInfo resolveIntent(in Intent intent, String resolvedType, int flags, int userId);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800169
Bartosz Fabianowskid9fa6672017-01-18 18:22:26 +0100170 ResolveInfo findPersistentPreferredActivity(in Intent intent, int userId);
171
Nicolas Prevot81948992014-05-16 18:25:26 +0100172 boolean canForwardTo(in Intent intent, String resolvedType, int sourceUserId, int targetUserId);
Nicolas Prevot10fa67c2014-03-24 13:44:38 +0000173
Andrei Oneaf650e3c2019-02-25 13:15:54 +0000174 @UnsupportedAppUsage
Jeff Sharkeyd5896632016-03-04 16:16:00 -0700175 ParceledListSlice queryIntentActivities(in Intent intent,
Amith Yamasani483f3b02012-03-13 16:08:00 -0700176 String resolvedType, int flags, int userId);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800177
Jeff Sharkeyd5896632016-03-04 16:16:00 -0700178 ParceledListSlice queryIntentActivityOptions(
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800179 in ComponentName caller, in Intent[] specifics,
180 in String[] specificTypes, in Intent intent,
Amith Yamasani483f3b02012-03-13 16:08:00 -0700181 String resolvedType, int flags, int userId);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800182
Jeff Sharkeyd5896632016-03-04 16:16:00 -0700183 ParceledListSlice queryIntentReceivers(in Intent intent,
Amith Yamasani483f3b02012-03-13 16:08:00 -0700184 String resolvedType, int flags, int userId);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800185
186 ResolveInfo resolveService(in Intent intent,
Amith Yamasani483f3b02012-03-13 16:08:00 -0700187 String resolvedType, int flags, int userId);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800188
Jeff Sharkeyd5896632016-03-04 16:16:00 -0700189 ParceledListSlice queryIntentServices(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 queryIntentContentProviders(in Intent intent,
Jeff Sharkey85f5f812013-10-07 10:16:12 -0700193 String resolvedType, int flags, int userId);
194
Kenny Root0e2c0f32011-04-15 17:50:10 -0700195 /**
196 * This implements getInstalledPackages via a "last returned row"
197 * mechanism that is not exposed in the API. This is to get around the IPC
198 * limit that kicks in when flags are included that bloat up the data
199 * returned.
200 */
Andrei Oneaf650e3c2019-02-25 13:15:54 +0000201 @UnsupportedAppUsage
Dianne Hackbornd8e1dbb2013-01-17 17:47:37 -0800202 ParceledListSlice getInstalledPackages(int flags, in int userId);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800203
Kenny Root0e2c0f32011-04-15 17:50:10 -0700204 /**
Dianne Hackborne7991752013-01-16 17:56:46 -0800205 * This implements getPackagesHoldingPermissions 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 */
210 ParceledListSlice getPackagesHoldingPermissions(in String[] permissions,
Dianne Hackbornd8e1dbb2013-01-17 17:47:37 -0800211 int flags, int userId);
Dianne Hackborne7991752013-01-16 17:56:46 -0800212
213 /**
Kenny Root0e2c0f32011-04-15 17:50:10 -0700214 * This implements getInstalledApplications 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 */
Andrei Oneaf650e3c2019-02-25 13:15:54 +0000219 @UnsupportedAppUsage
Dianne Hackbornd8e1dbb2013-01-17 17:47:37 -0800220 ParceledListSlice getInstalledApplications(int flags, int userId);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800221
222 /**
223 * Retrieve all applications that are marked as persistent.
Svetoslavc6d1c342015-02-26 14:44:43 -0800224 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800225 * @return A List&lt;applicationInfo> containing one entry for each persistent
226 * application.
227 */
Jeff Sharkeyd5896632016-03-04 16:16:00 -0700228 ParceledListSlice getPersistentApplications(int flags);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800229
Amith Yamasani483f3b02012-03-13 16:08:00 -0700230 ProviderInfo resolveContentProvider(String name, int flags, int userId);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800231
232 /**
233 * Retrieve sync information for all content providers.
Svetoslavc6d1c342015-02-26 14:44:43 -0800234 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800235 * @param outNames Filled in with a list of the root names of the content
236 * providers that can sync.
237 * @param outInfo Filled in with a list of the ProviderInfo for each
238 * name in 'outNames'.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800239 */
Andrei Oneaf650e3c2019-02-25 13:15:54 +0000240 @UnsupportedAppUsage
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800241 void querySyncProviders(inout List<String> outNames,
242 inout List<ProviderInfo> outInfo);
243
Dianne Hackborn28ec27c2015-08-03 15:28:28 -0700244 ParceledListSlice queryContentProviders(
Makoto Onuki32757292017-02-22 14:36:59 -0800245 String processName, int uid, int flags, String metaDataKey);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800246
Andrei Oneaf650e3c2019-02-25 13:15:54 +0000247 @UnsupportedAppUsage
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800248 InstrumentationInfo getInstrumentationInfo(
249 in ComponentName className, int flags);
250
Andrei Oneaf650e3c2019-02-25 13:15:54 +0000251 @UnsupportedAppUsage
Jeff Sharkeyd5896632016-03-04 16:16:00 -0700252 ParceledListSlice queryInstrumentation(
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800253 String targetPackage, int flags);
254
Christopher Tate5cf55782016-04-25 17:08:56 -0700255 void finishPackageInstall(int token, boolean didLaunch);
Christopher Tate1bb69062010-02-19 17:02:12 -0800256
Andrei Oneaf650e3c2019-02-25 13:15:54 +0000257 @UnsupportedAppUsage
Dianne Hackborn880119b2010-11-18 22:26:40 -0800258 void setInstallerPackageName(in String targetPackage, in String installerPackageName);
259
Jeff Sharkey9bc89af2017-01-11 11:25:50 -0700260 void setApplicationCategoryHint(String packageName, int categoryHint, String callerPackageName);
261
Jeff Sharkeyfbd0e9f2014-08-06 16:34:34 -0700262 /** @deprecated rawr, don't call AIDL methods directly! */
Svet Ganov67882122016-12-11 16:36:34 -0800263 void deletePackageAsUser(in String packageName, int versionCode,
264 IPackageDeleteObserver observer, int userId, int flags);
Jeff Sharkeyfbd0e9f2014-08-06 16:34:34 -0700265
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800266 /**
Amith Yamasani67df64b2012-12-14 12:09:36 -0800267 * Delete a package for a specific user.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800268 *
Svet Ganov67882122016-12-11 16:36:34 -0800269 * @param versionedPackage The package to delete.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800270 * @param observer a callback to use to notify when the package deletion in finished.
Amith Yamasani67df64b2012-12-14 12:09:36 -0800271 * @param userId the id of the user for whom to delete the package
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800272 * @param flags - possible values: {@link #DONT_DELETE_DATA}
273 */
Svet Ganov67882122016-12-11 16:36:34 -0800274 void deletePackageVersioned(in VersionedPackage versionedPackage,
275 IPackageDeleteObserver2 observer, int userId, int flags);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800276
Andrei Oneaf650e3c2019-02-25 13:15:54 +0000277 @UnsupportedAppUsage
Jacek Surazski65e13172009-04-28 15:26:38 +0200278 String getInstallerPackageName(in String packageName);
279
Svet Ganov9c8b8ab2015-07-23 09:32:26 -0700280 void resetApplicationPreferences(int userId);
Dianne Hackborn8a2ed1d2013-01-29 15:18:29 -0800281
Andrei Oneaf650e3c2019-02-25 13:15:54 +0000282 @UnsupportedAppUsage
Amith Yamasanie9ecc8b2013-08-22 11:16:27 -0700283 ResolveInfo getLastChosenActivity(in Intent intent,
284 String resolvedType, int flags);
285
Andrei Oneaf650e3c2019-02-25 13:15:54 +0000286 @UnsupportedAppUsage
Amith Yamasanie9ecc8b2013-08-22 11:16:27 -0700287 void setLastChosenActivity(in Intent intent, String resolvedType, int flags,
288 in IntentFilter filter, int match, in ComponentName activity);
289
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800290 void addPreferredActivity(in IntentFilter filter, int match,
Amith Yamasania3f133a2012-08-09 17:11:28 -0700291 in ComponentName[] set, in ComponentName activity, int userId);
Satish Sampath8dbe6122009-06-02 23:35:54 +0100292
Andrei Oneaf650e3c2019-02-25 13:15:54 +0000293 @UnsupportedAppUsage
Satish Sampath8dbe6122009-06-02 23:35:54 +0100294 void replacePreferredActivity(in IntentFilter filter, int match,
Amith Yamasani41c1ded2014-08-05 11:15:05 -0700295 in ComponentName[] set, in ComponentName activity, int userId);
Satish Sampath8dbe6122009-06-02 23:35:54 +0100296
Andrei Oneaf650e3c2019-02-25 13:15:54 +0000297 @UnsupportedAppUsage
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800298 void clearPackagePreferredActivities(String packageName);
Satish Sampath8dbe6122009-06-02 23:35:54 +0100299
Andrei Oneaf650e3c2019-02-25 13:15:54 +0000300 @UnsupportedAppUsage
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800301 int getPreferredActivities(out List<IntentFilter> outFilters,
302 out List<ComponentName> outActivities, String packageName);
Amith Yamasanie9ecc8b2013-08-22 11:16:27 -0700303
Sander Alewijnsef475ca32014-02-17 15:13:58 +0000304 void addPersistentPreferredActivity(in IntentFilter filter, in ComponentName activity, int userId);
305
306 void clearPackagePersistentPreferredActivities(String packageName, int userId);
307
Nicolas Prevot3f7777f2014-07-24 15:58:39 +0100308 void addCrossProfileIntentFilter(in IntentFilter intentFilter, String ownerPackage,
Nicolas Prevot4b8d5822015-03-05 15:20:49 +0000309 int sourceUserId, int targetUserId, int flags);
Nicolas Prevot10fa67c2014-03-24 13:44:38 +0000310
Nicolas Prevot4b8d5822015-03-05 15:20:49 +0000311 void clearCrossProfileIntentFilters(int sourceUserId, String ownerPackage);
Nicolas Prevot10fa67c2014-03-24 13:44:38 +0000312
Suprabh Shukla79000492018-12-24 17:03:02 -0800313 String[] setDistractingPackageRestrictionsAsUser(in String[] packageNames, int restrictionFlags,
314 int userId);
315
Suprabh Shukla021b57a2018-03-08 18:21:50 -0800316 String[] setPackagesSuspendedAsUser(in String[] packageNames, boolean suspended,
Suprabh Shukla3c3af142018-03-30 00:28:37 -0700317 in PersistableBundle appExtras, in PersistableBundle launcherExtras,
Suprabh Shukla389cb6f2018-10-01 18:20:39 -0700318 in SuspendDialogInfo dialogInfo, String callingPackage, int userId);
Suprabh Shukla021b57a2018-03-08 18:21:50 -0800319
Suprabh Shukla436d093ba2018-12-12 16:01:41 +0000320 String[] getUnsuspendablePackagesForUser(in String[] packageNames, int userId);
Suprabh Shukla1f1de702018-11-09 22:49:23 -0800321
Andrei Stingaceanu355b2322016-02-12 16:43:51 +0000322 boolean isPackageSuspendedForUser(String packageName, int userId);
Andrei Stingaceanu1e283912015-11-26 15:26:28 +0000323
Suprabh Shukla2fd43ba2018-03-22 16:57:49 -0700324 PersistableBundle getSuspendedPackageAppExtras(String packageName, int userId);
Suprabh Shukla021b57a2018-03-08 18:21:50 -0800325
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800326 /**
Christopher Tatee012a232015-04-01 17:18:50 -0700327 * Backup/restore support - only the system uid may use these.
328 */
329 byte[] getPreferredActivityBackup(int userId);
330 void restorePreferredActivities(in byte[] backup, int userId);
Christopher Tate6038d152015-06-17 13:07:46 -0700331 byte[] getDefaultAppsBackup(int userId);
332 void restoreDefaultApps(in byte[] backup, int userId);
333 byte[] getIntentFilterVerificationBackup(int userId);
334 void restoreIntentFilterVerification(in byte[] backup, int userId);
Christopher Tatee012a232015-04-01 17:18:50 -0700335
336 /**
Christopher Tatea2a0850d2013-09-05 16:38:58 -0700337 * Report the set of 'Home' activity candidates, plus (if any) which of them
338 * is the current "always use this one" setting.
339 */
Andrei Oneaf650e3c2019-02-25 13:15:54 +0000340 @UnsupportedAppUsage
Christopher Tatea2a0850d2013-09-05 16:38:58 -0700341 ComponentName getHomeActivities(out List<ResolveInfo> outHomeCandidates);
342
Makoto Onuki4828a592016-03-15 18:06:57 -0700343 void setHomeActivity(in ComponentName className, int userId);
344
Christopher Tatea2a0850d2013-09-05 16:38:58 -0700345 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800346 * As per {@link android.content.pm.PackageManager#setComponentEnabledSetting}.
347 */
Andrei Oneaf650e3c2019-02-25 13:15:54 +0000348 @UnsupportedAppUsage
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800349 void setComponentEnabledSetting(in ComponentName componentName,
Amith Yamasani483f3b02012-03-13 16:08:00 -0700350 in int newState, in int flags, int userId);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800351
352 /**
353 * As per {@link android.content.pm.PackageManager#getComponentEnabledSetting}.
354 */
Andrei Oneaf650e3c2019-02-25 13:15:54 +0000355 @UnsupportedAppUsage
Amith Yamasani483f3b02012-03-13 16:08:00 -0700356 int getComponentEnabledSetting(in ComponentName componentName, int userId);
Jeff Davidson2a880312015-06-22 16:54:34 -0700357
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800358 /**
359 * As per {@link android.content.pm.PackageManager#setApplicationEnabledSetting}.
360 */
Andrei Oneaf650e3c2019-02-25 13:15:54 +0000361 @UnsupportedAppUsage
Dianne Hackborn3fa3c28a2013-03-26 16:15:41 -0700362 void setApplicationEnabledSetting(in String packageName, in int newState, int flags,
363 int userId, String callingPackage);
Jeff Davidson2a880312015-06-22 16:54:34 -0700364
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800365 /**
366 * As per {@link android.content.pm.PackageManager#getApplicationEnabledSetting}.
367 */
Andrei Oneaf650e3c2019-02-25 13:15:54 +0000368 @UnsupportedAppUsage
Amith Yamasani483f3b02012-03-13 16:08:00 -0700369 int getApplicationEnabledSetting(in String packageName, int userId);
Jeff Davidson2a880312015-06-22 16:54:34 -0700370
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800371 /**
Michal Karpinskib52a4612016-03-21 13:39:42 +0000372 * Logs process start information (including APK hash) to the security log.
373 */
374 void logAppProcessStartIfNeeded(String processName, int uid, String seinfo, String apkFile,
375 int pid);
376
377 /**
Sudheer Shankabbb3ff22015-07-09 15:39:23 +0100378 * As per {@link android.content.pm.PackageManager#flushPackageRestrictionsAsUser}.
379 */
380 void flushPackageRestrictionsAsUser(in int userId);
381
382 /**
Dianne Hackborne7f97212011-02-24 14:40:20 -0800383 * Set whether the given package should be considered stopped, making
384 * it not visible to implicit intents that filter out stopped packages.
385 */
Andrei Oneaf650e3c2019-02-25 13:15:54 +0000386 @UnsupportedAppUsage
Amith Yamasani483f3b02012-03-13 16:08:00 -0700387 void setPackageStoppedState(String packageName, boolean stopped, int userId);
Dianne Hackborne7f97212011-02-24 14:40:20 -0800388
389 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800390 * Free storage by deleting LRU sorted list of cache files across
391 * all applications. If the currently available free storage
392 * on the device is greater than or equal to the requested
393 * free storage, no cache files are cleared. If the currently
394 * available storage on the device is less than the requested
395 * free storage, some or all of the cache files across
396 * all applications are deleted (based on last accessed time)
397 * to increase the free storage space on the device to
398 * the requested value. There is no guarantee that clearing all
399 * the cache files from all applications will clear up
400 * enough storage to achieve the desired value.
401 * @param freeStorageSize The number of bytes of storage to be
402 * freed by the system. Say if freeStorageSize is XX,
403 * and the current free storage is YY,
404 * if XX is less than YY, just return. if not free XX-YY number
405 * of bytes if possible.
406 * @param observer call back used to notify when
407 * the operation is completed
408 */
Jeff Sharkey529f91f2015-04-18 20:23:13 -0700409 void freeStorageAndNotify(in String volumeUuid, in long freeStorageSize,
Jeff Sharkeyddff8072017-05-26 13:10:46 -0600410 int storageFlags, IPackageDataObserver observer);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800411
412 /**
413 * Free storage by deleting LRU sorted list of cache files across
414 * all applications. If the currently available free storage
415 * on the device is greater than or equal to the requested
416 * free storage, no cache files are cleared. If the currently
417 * available storage on the device is less than the requested
418 * free storage, some or all of the cache files across
419 * all applications are deleted (based on last accessed time)
420 * to increase the free storage space on the device to
421 * the requested value. There is no guarantee that clearing all
422 * the cache files from all applications will clear up
423 * enough storage to achieve the desired value.
424 * @param freeStorageSize The number of bytes of storage to be
425 * freed by the system. Say if freeStorageSize is XX,
426 * and the current free storage is YY,
427 * if XX is less than YY, just return. if not free XX-YY number
428 * of bytes if possible.
Suchi Amalapurapu1ccac752009-06-12 10:09:58 -0700429 * @param pi IntentSender call back used to
430 * notify when the operation is completed.May be null
431 * to indicate that no call back is desired.
432 */
Jeff Sharkey529f91f2015-04-18 20:23:13 -0700433 void freeStorage(in String volumeUuid, in long freeStorageSize,
Jeff Sharkeyddff8072017-05-26 13:10:46 -0600434 int storageFlags, in IntentSender pi);
Jeff Davidson2a880312015-06-22 16:54:34 -0700435
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800436 /**
437 * Delete all the cache files in an applications cache directory
438 * @param packageName The package name of the application whose cache
439 * files need to be deleted
440 * @param observer a callback used to notify when the deletion is finished.
441 */
Andrei Oneaf650e3c2019-02-25 13:15:54 +0000442 @UnsupportedAppUsage
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800443 void deleteApplicationCacheFiles(in String packageName, IPackageDataObserver observer);
Jeff Davidson2a880312015-06-22 16:54:34 -0700444
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800445 /**
Suprabh Shukla78c9eb82016-04-12 15:51:35 -0700446 * 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 userId the user to delete application cache for
450 * @param observer a callback used to notify when the deletion is finished.
451 */
452 void deleteApplicationCacheFilesAsUser(in String packageName, int userId, IPackageDataObserver observer);
453
454 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800455 * Clear the user data directory of an application.
456 * @param packageName The package name of the application whose cache
457 * files need to be deleted
458 * @param observer a callback used to notify when the operation is completed.
459 */
Amith Yamasani483f3b02012-03-13 16:08:00 -0700460 void clearApplicationUserData(in String packageName, IPackageDataObserver observer, int userId);
Jeff Davidson2a880312015-06-22 16:54:34 -0700461
David Brazdil9aa6db02016-03-08 12:57:12 +0000462 /**
463 * Clear the profile data of an application.
464 * @param packageName The package name of the application whose profile data
465 * need to be deleted
466 */
467 void clearApplicationProfileData(in String packageName);
468
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800469 /**
470 * Get package statistics including the code, data and cache size for
471 * an already installed package
472 * @param packageName The package name of the application
Dianne Hackborn0c380492012-08-20 17:23:30 -0700473 * @param userHandle Which user the size should be retrieved for
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800474 * @param observer a callback to use to notify when the asynchronous
475 * retrieval of information is complete.
476 */
Dianne Hackborn0c380492012-08-20 17:23:30 -0700477 void getPackageSizeInfo(in String packageName, int userHandle, IPackageStatsObserver observer);
Jeff Davidson2a880312015-06-22 16:54:34 -0700478
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800479 /**
480 * Get a list of shared libraries that are available on the
481 * system.
482 */
Andrei Oneaf650e3c2019-02-25 13:15:54 +0000483 @UnsupportedAppUsage
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800484 String[] getSystemSharedLibraryNames();
485
Dianne Hackborn49237342009-08-27 20:08:01 -0700486 /**
487 * Get a list of features that are available on the
488 * system.
489 */
Jeff Sharkeyd5896632016-03-04 16:16:00 -0700490 ParceledListSlice getSystemAvailableFeatures();
Dianne Hackborn49237342009-08-27 20:08:01 -0700491
Jeff Sharkey115d2c12016-02-15 17:25:57 -0700492 boolean hasSystemFeature(String name, int version);
Jeff Davidson2a880312015-06-22 16:54:34 -0700493
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800494 void enterSafeMode();
Andrei Oneaf650e3c2019-02-25 13:15:54 +0000495 @UnsupportedAppUsage
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800496 boolean isSafeMode();
497 void systemReady();
Andrei Oneaf650e3c2019-02-25 13:15:54 +0000498 @UnsupportedAppUsage
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800499 boolean hasSystemUidErrors();
Dianne Hackborn661cd522011-08-22 00:26:20 -0700500
501 /**
Nicolas Geoffray27c07372015-11-05 16:54:09 +0000502 * Ask the package manager to fstrim the disk if needed.
Dianne Hackborn661cd522011-08-22 00:26:20 -0700503 */
Nicolas Geoffray27c07372015-11-05 16:54:09 +0000504 void performFstrimIfNeeded();
505
506 /**
David Brazdilf5c444f2016-03-30 11:45:52 +0100507 * Ask the package manager to update packages if needed.
David Brazdila0e10432016-01-20 14:04:40 +0000508 */
David Brazdilf5c444f2016-03-30 11:45:52 +0100509 void updatePackagesIfNeeded();
David Brazdila0e10432016-01-20 14:04:40 +0000510
511 /**
Brian Carlstromca82e612016-04-19 23:16:08 -0700512 * Notify the package manager that a package is going to be used and why.
513 *
514 * See PackageManager.NOTIFY_PACKAGE_USE_* for reasons.
Nicolas Geoffray27c07372015-11-05 16:54:09 +0000515 */
Calin Juravle0a3693c2017-05-01 19:49:21 -0700516 oneway void notifyPackageUse(String packageName, int reason);
Dianne Hackborn661cd522011-08-22 00:26:20 -0700517
Dianne Hackborn5c1e00b2009-06-18 17:10:57 -0700518 /**
Calin Juravle8d2a51f2016-11-23 19:50:58 +0000519 * Notify the package manager that a list of dex files have been loaded.
520 *
521 * @param loadingPackageName the name of the package who performs the load
Calin Juravlef1ff36f2017-07-22 12:33:41 -0700522 * @param classLoadersNames the names of the class loaders present in the loading chain. The
523 * list encodes the class loader chain in the natural order. The first class loader has
524 * the second one as its parent and so on. The dex files present in the class path of the
525 * first class loader will be recorded in the usage file.
526 * @param classPaths the class paths corresponding to the class loaders names from
527 * {@param classLoadersNames}. The the first element corresponds to the first class loader
528 * and so on. A classpath is represented as a list of dex files separated by
Alan Stokesb6c3a602018-11-02 12:10:42 +0000529 * {@code File.pathSeparator}, or null if the class loader's classpath is not known.
Calin Juravlef1ff36f2017-07-22 12:33:41 -0700530 * The dex files found in the first class path will be recorded in the usage file.
Calin Juravle8d2a51f2016-11-23 19:50:58 +0000531 * @param loaderIsa the ISA of the loader process
532 */
Calin Juravlef1ff36f2017-07-22 12:33:41 -0700533 oneway void notifyDexLoad(String loadingPackageName, in List<String> classLoadersNames,
534 in List<String> classPaths, String loaderIsa);
Calin Juravle8d2a51f2016-11-23 19:50:58 +0000535
536 /**
Calin Juravle3d2af7f2017-04-19 19:56:21 -0700537 * Register an application dex module with the package manager.
538 * The package manager will keep track of the given module for future optimizations.
539 *
540 * Dex module optimizations will disable the classpath checking at runtime. The client bares
541 * the responsibility to ensure that the static assumptions on classes in the optimized code
542 * hold at runtime (e.g. there's no duplicate classes in the classpath).
543 *
544 * Note that the package manager already keeps track of dex modules loaded with
545 * {@link dalvik.system.DexClassLoader} and {@link dalvik.system.PathClassLoader}.
546 * This can be called for an eager registration.
547 *
548 * The call might take a while and the results will be posted on the main thread, using
549 * the given callback.
550 *
551 * If the module is intended to be shared with other apps, make sure that the file
552 * permissions allow for it.
553 * If at registration time the permissions allow for others to read it, the module would
554 * be marked as a shared module which might undergo a different optimization strategy.
555 * (usually shared modules will generated larger optimizations artifacts,
556 * taking more disk space).
557 *
558 * @param packageName the package name to which the dex module belongs
559 * @param dexModulePath the absolute path of the dex module.
560 * @param isSharedModule whether or not the module is intended to be used by other apps.
561 * @param callback if not null,
562 * {@link android.content.pm.IDexModuleRegisterCallback.IDexModuleRegisterCallback#onDexModuleRegistered}
563 * will be called once the registration finishes.
564 */
Calin Juravle0ace6ac2017-05-01 19:19:34 -0700565 oneway void registerDexModule(in String packageName, in String dexModulePath,
Calin Juravle3d2af7f2017-04-19 19:56:21 -0700566 in boolean isSharedModule, IDexModuleRegisterCallback callback);
567
568 /**
Andreas Gampebdd30d82016-03-20 11:32:11 -0700569 * Ask the package manager to perform a dex-opt with the given compiler filter.
570 *
571 * Note: exposed only for the shell command to allow moving packages explicitly to a
572 * definite state.
573 */
Nicolas Geoffrayfb6cf772016-05-27 13:09:19 +0100574 boolean performDexOptMode(String packageName, boolean checkProfiles,
Calin Juravleb6f844d2017-07-17 15:23:21 -0700575 String targetCompilerFilter, boolean force, boolean bootComplete, String splitName);
David Brazdil493411a2016-02-01 13:48:46 +0000576
David Sehra8777082016-05-24 15:25:23 -0700577 /**
Calin Juravlec22c30e2017-01-16 19:18:48 -0800578 * Ask the package manager to perform a dex-opt with the given compiler filter on the
579 * secondary dex files belonging to the given package.
580 *
581 * Note: exposed only for the shell command to allow moving packages explicitly to a
582 * definite state.
583 */
584 boolean performDexOptSecondary(String packageName,
585 String targetCompilerFilter, boolean force);
586
587 /**
Eric Holka1485f62019-01-07 13:58:25 -0800588 * Ask the package manager to compile layouts in the given package.
589 */
590 boolean compileLayouts(String packageName);
591
592 /**
David Sehra8777082016-05-24 15:25:23 -0700593 * Ask the package manager to dump profiles associated with a package.
594 */
595 void dumpProfiles(String packageName);
596
Jeff Sharkey20e0c502014-07-25 14:09:37 -0700597 void forceDexOpt(String packageName);
598
Suchi Amalapurapuaf8e9f42010-01-12 10:17:28 -0800599 /**
Arthur Eubanks09dd1ec2017-09-15 09:28:51 -0700600 * Execute the background dexopt job immediately on packages in packageNames.
601 * If null, then execute on all packages.
Calin Juravlecb5f41e2017-01-25 17:16:08 -0800602 */
Arthur Eubanks09dd1ec2017-09-15 09:28:51 -0700603 boolean runBackgroundDexoptJob(in List<String> packageNames);
Calin Juravlecb5f41e2017-01-25 17:16:08 -0800604
605 /**
Calin Juravle1aa5f882017-01-25 01:05:50 -0800606 * Reconcile the information we have about the secondary dex files belonging to
607 * {@code packagName} and the actual dex files. For all dex files that were
608 * deleted, update the internal records and delete the generated oat files.
609 */
610 void reconcileSecondaryDexFiles(String packageName);
611
Jeff Sharkey620b32b2015-04-23 19:36:02 -0700612 int getMoveStatus(int moveId);
613
614 void registerMoveCallback(in IPackageMoveObserver callback);
615 void unregisterMoveCallback(in IPackageMoveObserver callback);
616
617 int movePackage(in String packageName, in String volumeUuid);
618 int movePrimaryStorage(in String volumeUuid);
Jeff Sharkeyb2b9ab82015-04-05 21:10:42 -0700619
Andrei Oneaf650e3c2019-02-25 13:15:54 +0000620 @UnsupportedAppUsage
Dianne Hackbornd7c09682010-03-30 10:42:20 -0700621 boolean addPermissionAsync(in PermissionInfo info);
Suchi Amalapurapu40e47252010-04-07 16:15:50 -0700622
623 boolean setInstallLocation(int loc);
Andrei Oneaf650e3c2019-02-25 13:15:54 +0000624 @UnsupportedAppUsage
Suchi Amalapurapu40e47252010-04-07 16:15:50 -0700625 int getInstallLocation();
Amith Yamasani0b285492011-04-14 17:35:23 -0700626
Todd Kennedybe0b8892017-02-15 14:13:52 -0800627 int installExistingPackageAsUser(String packageName, int userId, int installFlags,
628 int installReason);
Dianne Hackborn7767eac2012-08-23 18:25:40 -0700629
Kenny Root3a9b5fb2011-09-20 14:15:38 -0700630 void verifyPendingInstall(int id, int verificationCode);
rich canningsd9ef3e52012-08-22 14:28:05 -0700631 void extendVerificationTimeout(int id, int verificationCodeAtTimeout, long millisecondsToDelay);
Kenny Root0aaa0d92011-09-12 16:42:55 -0700632
Fabrice Di Megliod3d8a322015-04-01 15:58:47 -0700633 void verifyIntentFilter(int id, int verificationCode, in List<String> failedDomains);
Fabrice Di Meglio1c1b4712014-11-19 17:12:32 -0800634 int getIntentVerificationStatus(String packageName, int userId);
635 boolean updateIntentVerificationStatus(String packageName, int status, int userId);
Jeff Sharkeyd5896632016-03-04 16:16:00 -0700636 ParceledListSlice getIntentFilterVerifications(String packageName);
637 ParceledListSlice getAllIntentFilters(String packageName);
Fabrice Di Meglio1c1b4712014-11-19 17:12:32 -0800638
Fabrice Di Meglio62271722015-04-10 17:24:02 -0700639 boolean setDefaultBrowserPackageName(String packageName, int userId);
640 String getDefaultBrowserPackageName(int userId);
641
Kenny Root0aaa0d92011-09-12 16:42:55 -0700642 VerifierDeviceIdentity getVerifierDeviceIdentity();
Dianne Hackborn58f42a52011-10-10 13:46:34 -0700643
644 boolean isFirstBoot();
Dianne Hackborn13579ed2012-11-28 18:05:36 -0800645 boolean isOnlyCoreApps();
Jeff Hao9f60c082014-10-28 18:51:07 -0700646 boolean isUpgrade();
Amith Yamasani742a6712011-05-04 14:49:28 -0700647
Jeff Sharkey5d32e772012-04-12 15:59:23 -0700648 void setPermissionEnforced(String permission, boolean enforced);
649 boolean isPermissionEnforced(String permission);
Jeff Sharkeyf6f7f1d2012-06-12 17:12:08 -0700650
651 /** Reflects current DeviceStorageMonitorService state */
Andrei Oneaf650e3c2019-02-25 13:15:54 +0000652 @UnsupportedAppUsage
Jeff Sharkeyf6f7f1d2012-06-12 17:12:08 -0700653 boolean isStorageLow();
Amith Yamasani655d0e22013-06-12 14:19:10 -0700654
Andrei Oneaf650e3c2019-02-25 13:15:54 +0000655 @UnsupportedAppUsage
Amith Yamasanie5bcff62014-07-19 15:44:09 -0700656 boolean setApplicationHiddenSettingAsUser(String packageName, boolean hidden, int userId);
657 boolean getApplicationHiddenSettingAsUser(String packageName, int userId);
Jeff Sharkey3a44f3f2014-04-28 17:36:31 -0700658
Rhed Jaocd47c262018-06-13 11:16:16 +0800659 void setSystemAppHiddenUntilInstalled(String packageName, boolean hidden);
660 boolean setSystemAppInstallState(String packageName, boolean installed, int userId);
661
Andrei Oneaf650e3c2019-02-25 13:15:54 +0000662 @UnsupportedAppUsage
Jeff Sharkey3a44f3f2014-04-28 17:36:31 -0700663 IPackageInstaller getPackageInstaller();
Kenny Guyc13053b2014-05-29 14:17:17 +0100664
665 boolean setBlockUninstallForUser(String packageName, boolean blockUninstall, int userId);
Andrei Oneaf650e3c2019-02-25 13:15:54 +0000666 @UnsupportedAppUsage
Kenny Guyc13053b2014-05-29 14:17:17 +0100667 boolean getBlockUninstallForUser(String packageName, int userId);
dcashman9d2f4412014-06-09 09:27:54 -0700668
dcashmanc6f22492014-08-14 09:54:51 -0700669 KeySet getKeySetByAlias(String packageName, String alias);
670 KeySet getSigningKeySet(String packageName);
671 boolean isPackageSignedByKeySet(String packageName, in KeySet ks);
672 boolean isPackageSignedByKeySetExactly(String packageName, in KeySet ks);
Svetoslavf7c06eb2015-06-10 18:43:22 -0700673
674 void addOnPermissionsChangeListener(in IOnPermissionsChangeListener listener);
675 void removeOnPermissionsChangeListener(in IOnPermissionsChangeListener listener);
Svetoslavcdfd2302015-06-25 19:07:31 -0700676 void grantDefaultPermissionsToEnabledCarrierApps(in String[] packageNames, int userId);
Brad Ebingerf4779792017-01-23 16:44:23 -0800677 void grantDefaultPermissionsToEnabledImsServices(in String[] packageNames, int userId);
Nathan Harold76ad1a32018-02-20 14:31:09 -0800678 void grantDefaultPermissionsToEnabledTelephonyDataServices(
679 in String[] packageNames, int userId);
680 void revokeDefaultPermissionsFromDisabledTelephonyDataServices(
681 in String[] packageNames, int userId);
Holly Jiuyu Sun349e2142018-03-26 15:29:42 -0700682 void grantDefaultPermissionsToActiveLuiApp(in String packageName, int userId);
683 void revokeDefaultPermissionsFromLuiApps(in String[] packageNames, int userId);
Svet Ganovad3b2972015-07-07 22:49:17 -0700684
685 boolean isPermissionRevokedByPolicy(String permission, String packageName, int userId);
Svet Ganovf1b7f202015-07-29 08:33:42 -0700686
Andrei Oneaf650e3c2019-02-25 13:15:54 +0000687 @UnsupportedAppUsage
Svet Ganovf1b7f202015-07-29 08:33:42 -0700688 String getPermissionControllerPackageName();
Svet Ganov2acf0632015-11-24 19:10:59 -0800689
Svetoslav Ganov096d3042017-01-30 16:34:13 -0800690 ParceledListSlice getInstantApps(int userId);
691 byte[] getInstantAppCookie(String packageName, int userId);
692 boolean setInstantAppCookie(String packageName, in byte[] cookie, int userId);
693 Bitmap getInstantAppIcon(String packageName, int userId);
694 boolean isInstantApp(String packageName, int userId);
Fyodor Kupolovbdbc9692015-12-14 13:11:13 -0800695
696 boolean setRequiredForSystemUser(String packageName, boolean systemUserApp);
Svet Ganovd7b1f4112016-02-09 18:49:23 -0800697
Todd Kennedyab532892017-03-08 14:19:49 -0800698 /**
699 * Sets whether or not an update is available. Ostensibly for instant apps
700 * to force exteranl resolution.
701 */
702 void setUpdateAvailable(String packageName, boolean updateAvaialble);
703
Andrei Oneaf650e3c2019-02-25 13:15:54 +0000704 @UnsupportedAppUsage
Svet Ganovd7b1f4112016-02-09 18:49:23 -0800705 String getServicesSystemSharedLibraryPackageName();
Andrei Oneaf650e3c2019-02-25 13:15:54 +0000706 @UnsupportedAppUsage
Svetoslav Ganova9c25002016-04-13 19:25:56 -0700707 String getSharedSystemSharedLibraryPackageName();
Makoto Onukif34db0a2016-02-17 11:17:15 -0800708
Todd Kennedy9106c642017-02-08 14:16:53 -0800709 ChangedPackages getChangedPackages(int sequenceNumber, int userId);
710
Makoto Onukif34db0a2016-02-17 11:17:15 -0800711 boolean isPackageDeviceAdminOnAnyUser(String packageName);
Todd Kennedy39bfee52016-02-24 10:28:21 -0800712
Bartosz Fabianowskia34f53f2017-01-11 18:08:47 +0100713 int getInstallReason(String packageName, int userId);
Svet Ganov67882122016-12-11 16:36:34 -0800714
Svet Ganov58c99f02017-05-15 14:07:17 -0700715 ParceledListSlice getSharedLibraries(in String packageName, int flags, int userId);
Suprabh Shuklaaef25132017-01-23 18:09:03 -0800716
717 boolean canRequestPackageInstalls(String packageName, int userId);
Fyodor Kupolov935618a2017-03-22 16:50:44 -0700718
719 void deletePreloadsFileCache();
Chad Brubaker336ae5b2017-03-24 15:53:09 -0700720
Todd Kennedy0a3f0812017-05-08 14:43:15 -0700721 ComponentName getInstantAppResolverComponent();
722
Chad Brubaker336ae5b2017-03-24 15:53:09 -0700723 ComponentName getInstantAppResolverSettingsComponent();
Todd Kennedy801e6592017-04-12 14:10:12 -0700724
725 ComponentName getInstantAppInstallerComponent();
Chad Brubaker0d277a72017-04-12 16:56:53 -0700726
727 String getInstantAppAndroidId(String packageName, int userId);
Calin Juravle45f8b292017-11-07 18:49:43 -0800728
729 IArtManager getArtManager();
Ben Gruver1ab3d6e2017-12-07 13:45:08 -0800730
731 void setHarmfulAppWarning(String packageName, CharSequence warning, int userId);
732
733 CharSequence getHarmfulAppWarning(String packageName, int userId);
Daniel Cashman5cdda342018-01-19 07:22:52 -0800734
735 boolean hasSigningCertificate(String packageName, in byte[] signingCertificate, int flags);
736
737 boolean hasUidSigningCertificate(int uid, in byte[] signingCertificate, int flags);
Makoto Onuki700feef2018-02-15 10:59:41 -0800738
739 String getSystemTextClassifierPackageName();
Benjamin Franz7cc9a812018-03-22 10:11:29 +0000740
Varun Shah5f303652018-11-16 18:11:19 -0800741 String getWellbeingPackageName();
742
George Hodulikcd7695d2019-01-29 18:17:05 -0800743 String getAppPredictionServicePackageName();
744
Nadav Bar6d79ab72019-01-10 10:52:11 +0200745 String getContentCaptureServicePackageName();
746
Joe Onorato5a15b552018-12-18 10:40:04 -0800747 String getIncidentReportApproverPackageName();
748
Benjamin Franz7cc9a812018-03-22 10:11:29 +0000749 boolean isPackageStateProtected(String packageName, int userId);
MÃ¥rten Kongstadfd20b832018-10-26 15:36:20 +0200750
751 void sendDeviceCustomizationReadyBroadcast();
Narayan Kamath2c828c1d2018-12-10 17:36:31 +0000752
753 List<ModuleInfo> getInstalledModules(int flags);
754
755 ModuleInfo getModuleInfo(String packageName, int flags);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800756}