Mikhail Naganov | c276c59 | 2016-08-31 18:08:10 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
| 3 | package="com.example.android.nativemididemo" |
| 4 | android:versionCode="1" |
| 5 | android:versionName="1.0"> |
Colin Cross | 3478ddc | 2018-05-10 22:15:31 -0700 | [diff] [blame] | 6 | <uses-feature android:name="android.software.midi" android:required="true"/> |
Mikhail Naganov | c276c59 | 2016-08-31 18:08:10 -0700 | [diff] [blame] | 7 | <application |
| 8 | android:allowBackup="false" |
| 9 | android:fullBackupContent="false" |
| 10 | android:icon="@mipmap/ic_launcher" |
| 11 | android:label="@string/app_name"> |
Mikhail Naganov | c276c59 | 2016-08-31 18:08:10 -0700 | [diff] [blame] | 12 | <activity android:name=".NativeMidi" |
| 13 | android:label="@string/app_name"> |
| 14 | <intent-filter> |
| 15 | <action android:name="android.intent.action.MAIN" /> |
| 16 | <category android:name="android.intent.category.LAUNCHER" /> |
| 17 | </intent-filter> |
| 18 | </activity> |
| 19 | </application> |
| 20 | </manifest> |