2015-03-24 08:27:11 -07:00
|
|
|
<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">
|
2015-06-04 13:43:56 -07:00
|
|
|
<service android:name="BluetoothMidiService"
|
|
|
|
android:permission="android.permission.BIND_MIDI_DEVICE_SERVICE">
|
2015-03-24 08:27:11 -07:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.media.midi.BluetoothMidiService" />
|
|
|
|
</intent-filter>
|
|
|
|
</service>
|
|
|
|
</application>
|
|
|
|
</manifest>
|