Mike Lockwood | f0a41d1 | 2015-03-24 08:27:11 -0700 | [diff] [blame] | 1 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
| 2 | package="com.android.bluetoothmidiservice" |
| 3 | > |
| 4 | |
| 5 | <uses-feature android:name="android.hardware.bluetooth_le" android:required="true"/> |
| 6 | <uses-feature android:name="android.software.midi" android:required="true"/> |
| 7 | <uses-permission android:name="android.permission.BLUETOOTH"/> |
| 8 | |
| 9 | <application |
| 10 | android:label="@string/app_name"> |
| 11 | <service android:name="BluetoothMidiService"> |
| 12 | <intent-filter> |
| 13 | <action android:name="android.media.midi.BluetoothMidiService" /> |
| 14 | </intent-filter> |
| 15 | </service> |
| 16 | </application> |
| 17 | </manifest> |