Merge "Only add parent profile resolution if strictly greater" into sc-dev am: 1e372e6744

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/14740491

Change-Id: I703cc52295850f656b55fade1cc63eb2f542074c
This commit is contained in:
Winson Chiu
2021-06-04 19:50:39 +00:00
committed by Automerger Merge Worker

View File

@@ -2684,9 +2684,9 @@ public class PackageManagerService extends IPackageManager.Stub
} else {
result.addAll(approvedInfos);
// If the other profile has an app that's of equal or higher approval, add it
// If the other profile has an app that's higher approval, add it
if (xpDomainInfo != null
&& xpDomainInfo.highestApprovalLevel >= highestApproval) {
&& xpDomainInfo.highestApprovalLevel > highestApproval) {
result.add(xpDomainInfo.resolveInfo);
}
}