Merge t-mpr-2023-12

Change-Id: I97f57d71b78b511508ef4ac8a7fb96f4bca5971c
This commit is contained in:
Omkar Sai Sandeep Katadi 2023-11-29 19:07:21 +00:00
commit 4c3de0829c
1 changed files with 2 additions and 9 deletions

View File

@ -147,15 +147,8 @@ public class PackageManagerHelper {
public boolean hasPermissionForActivity(Intent intent, String srcPackage) {
// b/270152142
if (Intent.ACTION_CHOOSER.equals(intent.getAction())) {
final Bundle extras = intent.getExtras();
if (extras == null) {
return true;
}
// If given intent is ACTION_CHOOSER, verify srcPackage has permission over EXTRA_INTENT
intent = (Intent) extras.getParcelable(Intent.EXTRA_INTENT);
if (intent == null) {
return true;
}
// Chooser shortcuts is not a valid target
return false;
}
ResolveInfo target = mPm.resolveActivity(intent, 0);
if (target == null) {