Merge "Add unaudited exported flag to exposed runtime receivers"

This commit is contained in:
TreeHugger Robot
2022-11-04 08:13:28 +00:00
committed by Android (Google) Code Review
7 changed files with 14 additions and 7 deletions

View File

@@ -49,7 +49,8 @@ public class CarrierConfigChangedReceiver extends BroadcastReceiver {
}
public void registerOn(Context context) {
context.registerReceiver(this, new IntentFilter(ACTION_CARRIER_CONFIG_CHANGED));
context.registerReceiver(this, new IntentFilter(ACTION_CARRIER_CONFIG_CHANGED),
Context.RECEIVER_EXPORTED/*UNAUDITED*/);
}
@Override