Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 878fdc6f authored by Yiyi Shen's avatar Yiyi Shen Committed by Android (Google) Code Review
Browse files

Merge "[Audiosharing] Add join handler activity to manifest" into main

parents 07e2ebc7 d6f139b0
Loading
Loading
Loading
Loading
+18 −0
Original line number Diff line number Diff line
@@ -5508,6 +5508,24 @@
                       android:value="com.android.settings.applications.contacts.ContactsStorageSettings"/>
        </activity>

        <activity
            android:name="com.android.settings.connecteddevice.audiosharing.AudioSharingJoinHandlerActivity"
            android:configChanges="orientation|keyboardHidden|screenSize"
            android:excludeFromRecents="true"
            android:launchMode="singleTop"
            android:permission="android.permission.BLUETOOTH_PRIVILEGED"
            android:taskAffinity="com.android.settings.connecteddevice.audiosharing.AudioSharingJoinHandlerActivity"
            android:theme="@style/Transparent"
            android:exported="false">
            <intent-filter android:priority="1">
                <action android:name="android.settings.AUDIO_SHARING_JOIN_HANDLER" />
                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
            <meta-data
                android:name="com.android.settings.FRAGMENT_CLASS"
                android:value="com.android.settings.connecteddevice.audiosharing.AudioSharingJoinHandlerDashboardFragment" />
        </activity>

        <service
            android:name="com.android.settings.connecteddevice.audiosharing.audiostreams.AudioStreamMediaService"
            android:foregroundServiceType="mediaPlayback"