• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2        package="com.android.test.soundtrigger">
3
4    <uses-permission android:name="android.permission.MANAGE_SOUND_TRIGGER" />
5    <uses-permission android:name="android.permission.WAKE_LOCK" />
6    <application>
7        <activity
8            android:name="TestSoundTriggerActivity"
9            android:label="SoundTrigger Test Application"
10            android:screenOrientation="portrait"
11            android:theme="@android:style/Theme.Material">
12            <!--
13            <intent-filter>
14                <action android:name="com.android.intent.action.MANAGE_SOUND_TRIGGER" />
15                <category android:name="android.intent.category.DEFAULT" />
16            </intent-filter>
17            -->
18            <intent-filter>
19                <action android:name="android.intent.action.MAIN" />
20                <category android:name="android.intent.category.DEFAULT" />
21                <category android:name="android.intent.category.LAUNCHER" />
22            </intent-filter>
23        </activity>
24    </application>
25</manifest>
26