1<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2package="com.android.soundpooltest">
3    <application>
4        <activity  android:name="SoundPoolTest" android:label="Sound Pool Test">
5            <intent-filter>
6                <action android:name="android.intent.action.MAIN" />
7                <category android:name="android.intent.category.LAUNCHER" />
8            </intent-filter>
9        </activity>
10    </application>
11    <uses-sdk android:minSdkVersion="8" android:targetSdkVersion="8"/>
12</manifest>
13