chromium/tools/android/audio_focus_grabber/java/AndroidManifest.xml

<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright 2016 The Chromium Authors
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
-->

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="org.chromium.tools.audio_focus_grabber" >

    <application
        android:label="@string/app_name" >

        <activity
            android:name="org.chromium.tools.audio_focus_grabber.AudioFocusGrabberActivity"
            android:label="@string/app_name"
            android:exported="true">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>

        <service
            android:name="org.chromium.tools.audio_focus_grabber.AudioFocusGrabberListenerService"
            android:exported="true" >
            <intent-filter>
                <action android:name="AUDIO_FOCUS_GRABBER_GAIN" />
                <action android:name="AUDIO_FOCUS_GRABBER_TRANSIENT_PAUSE" />
                <action android:name="AUDIO_FOCUS_GRABBER_TRANSIENT_DUCK" />
            </intent-filter>
        </service>

    </application>

</manifest>