blob: 15aa581074abe51422abfe460702a395612120dd [file] [log] [blame]
<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">
<intent-filter>
<action android:name="android.media.midi.BluetoothMidiService" />
</intent-filter>
</service>
</application>
</manifest>