AndroidManifest.xml 733 Bytes
Newer Older
konghaorui committed
1 2 3 4 5 6
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
          package="com.ydl.media">

    <uses-permission android:name="android.permission.FOREGROUND_SERVICE" />

    <application>
konghaorui committed
7
        <service android:name=".audio.PlayService" />
konghaorui committed
8

konghaorui committed
9
        <receiver android:name=".audio.receiver.RemoteControlReceiver">
konghaorui committed
10 11 12 13
            <intent-filter>
                <action android:name="android.intent.action.MEDIA_BUTTON" />
            </intent-filter>
        </receiver>
konghaorui committed
14
        <receiver android:name=".audio.receiver.StatusBarReceiver">
konghaorui committed
15 16 17 18 19 20 21
            <intent-filter>
                <action android:name="com.ydl.media.STATUS_BAR_ACTIONS" />
            </intent-filter>
        </receiver>

    </application>
</manifest>