Fix bypass BAL via requestGeofence

Bug: 273729172
Test: manually
Change-Id: Ia8094244f908b20d42711b6ea8f58f9b3345b563
This commit is contained in:
Lifu Tang
2023-07-05 13:03:00 -07:00
parent f9d8830e32
commit 7f9be7c3c8

View File

@@ -34,6 +34,7 @@ public class PendingIntentUtils {
public static Bundle createDontSendToRestrictedAppsBundle(@Nullable Bundle bundle) {
final BroadcastOptions options = BroadcastOptions.makeBasic();
options.setDontSendToRestrictedApps(true);
options.setPendingIntentBackgroundActivityLaunchAllowed(false);
if (bundle == null) {
return options.toBundle();
}