summaryrefslogtreecommitdiffstats
path: root/media/packages/BluetoothMidiService/AndroidManifest.xml
blob: b0b389a59aa391481b92e52e0db46bb10da249c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
        package="com.android.bluetoothmidiservice"
        >

    <uses-feature android:name="android.hardware.bluetooth_le" android:required="true"/>
    <uses-feature android:name="android.software.midi" android:required="true"/>
    <uses-permission android:name="android.permission.BLUETOOTH"/>

    <application
        android:label="@string/app_name">
        <service android:name="BluetoothMidiService"
            android:permission="android.permission.BIND_MIDI_DEVICE_SERVICE">
            <intent-filter>
                <action android:name="android.media.midi.BluetoothMidiService" />
            </intent-filter>
        </service>
    </application>
</manifest>