Framework changes and a demo app Comment and finalized Native MIDI API Replaced fixed PortRegistry tables with std::map. more error handling. Removed not-very-useful MidiDeviceManager class. Made Java API functions @hide. Bug: 30252756 Test: Manual Change-Id: Iae98e589f38ef6d625ff0842401193fe98c5d881
21 lines
794 B
XML
21 lines
794 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="com.example.android.nativemididemo"
|
|
android:versionCode="1"
|
|
android:versionName="1.0">
|
|
<application
|
|
android:allowBackup="false"
|
|
android:fullBackupContent="false"
|
|
android:icon="@mipmap/ic_launcher"
|
|
android:label="@string/app_name">
|
|
<uses-feature android:name="android.software.midi" android:required="true"/>
|
|
<activity android:name=".NativeMidi"
|
|
android:label="@string/app_name">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
</activity>
|
|
</application>
|
|
</manifest>
|