Merge "Skip registering callback for appop changes if fuse is enabled." into rvc-dev

This commit is contained in:
Sudheer Shanka
2020-05-12 01:19:24 +00:00
committed by Android (Google) Code Review

View File

@@ -1941,10 +1941,13 @@ class StorageManagerService extends IStorageManager.Stub
mDownloadsAuthorityAppId = UserHandle.getAppId(provider.applicationInfo.uid);
}
try {
mIAppOpsService.startWatchingMode(OP_REQUEST_INSTALL_PACKAGES, null, mAppOpsCallback);
mIAppOpsService.startWatchingMode(OP_LEGACY_STORAGE, null, mAppOpsCallback);
} catch (RemoteException e) {
if (!mIsFuseEnabled) {
try {
mIAppOpsService.startWatchingMode(OP_REQUEST_INSTALL_PACKAGES, null,
mAppOpsCallback);
mIAppOpsService.startWatchingMode(OP_LEGACY_STORAGE, null, mAppOpsCallback);
} catch (RemoteException e) {
}
}
}