Explicitly specify API level 8, to permit same .apk be used with multiple platform versions. In the priority test, use different samples for low and priority sounds, so it is possible to hear the difference. Increase sleep times to make it easier to hear. Only use Log.e for errors. Add more logs and sleeps. Pan more slowly. Fix typos in logs about the test names. Fix typo in pan comment. Change-Id: Iebce07ca0cf3d6fa1b04faa8577faa1c6d25f8e6
13 lines
531 B
XML
13 lines
531 B
XML
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="com.android.soundpooltest">
|
|
<application>
|
|
<activity android:name="SoundPoolTest" android:label="Sound Pool Test">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
</activity>
|
|
</application>
|
|
<uses-sdk android:minSdkVersion="8" android:targetSdkVersion="8"/>
|
|
</manifest>
|