Merge "[Audiosharing] Add actions to AudioSharingReceiver intent filter" into main

This commit is contained in:
Yiyi Shen
2025-02-18 21:16:48 -08:00
committed by Android (Google) Code Review

View File

@@ -5538,10 +5538,14 @@
</service>
<receiver android:name="com.android.settings.connecteddevice.audiosharing.AudioSharingReceiver"
android:exported="true">
android:permission="android.permission.BLUETOOTH_PRIVILEGED"
android:exported="true"> <!-- Exported for SystemUI. -->
<intent-filter>
<action android:name="com.android.settings.action.BLUETOOTH_LE_AUDIO_SHARING_STATE_CHANGE" />
<action android:name="com.android.settings.action.BLUETOOTH_LE_AUDIO_SHARING_STOP" />
<action android:name="com.android.settings.action.BLUETOOTH_LE_AUDIO_SHARING_DEVICE_CONNECTED" />
<action android:name="com.android.settings.action.BLUETOOTH_LE_AUDIO_SHARING_ADD_SOURCE" />
<action android:name="com.android.settings.action.BLUETOOTH_LE_AUDIO_SHARING_CANCEL_NOTIF" />
</intent-filter>
</receiver>