xref: /aosp_15_r20/frameworks/base/tests/SoundTriggerTestApp/AndroidManifest.xml (revision d57664e9bc4670b3ecf6748a746a57c557b6bc9e)
1*d57664e9SAndroid Build Coastguard Worker<?xml version="1.0" encoding="utf-8"?>
2*d57664e9SAndroid Build Coastguard Worker
3*d57664e9SAndroid Build Coastguard Worker<manifest xmlns:android="http://schemas.android.com/apk/res/android"
4*d57664e9SAndroid Build Coastguard Worker     package="com.android.test.soundtrigger">
5*d57664e9SAndroid Build Coastguard Worker    <uses-permission android:name="android.permission.CAPTURE_AUDIO_HOTWORD"/>
6*d57664e9SAndroid Build Coastguard Worker    <uses-permission android:name="android.permission.MANAGE_SOUND_TRIGGER"/>
7*d57664e9SAndroid Build Coastguard Worker    <uses-permission android:name="android.permission.RECORD_AUDIO"/>
8*d57664e9SAndroid Build Coastguard Worker    <uses-permission android:name="android.permission.WAKE_LOCK"/>
9*d57664e9SAndroid Build Coastguard Worker    <application>
10*d57664e9SAndroid Build Coastguard Worker        <activity android:name=".SoundTriggerTestActivity"
11*d57664e9SAndroid Build Coastguard Worker             android:label="SoundTrigger Test Application"
12*d57664e9SAndroid Build Coastguard Worker             android:screenOrientation="portrait"
13*d57664e9SAndroid Build Coastguard Worker             android:theme="@android:style/Theme.Material"
14*d57664e9SAndroid Build Coastguard Worker             android:exported="true">
15*d57664e9SAndroid Build Coastguard Worker            <intent-filter>
16*d57664e9SAndroid Build Coastguard Worker                <action android:name="android.intent.action.MAIN"/>
17*d57664e9SAndroid Build Coastguard Worker                <category android:name="android.intent.category.DEFAULT"/>
18*d57664e9SAndroid Build Coastguard Worker                <category android:name="android.intent.category.LAUNCHER"/>
19*d57664e9SAndroid Build Coastguard Worker            </intent-filter>
20*d57664e9SAndroid Build Coastguard Worker        </activity>
21*d57664e9SAndroid Build Coastguard Worker        <service android:name=".SoundTriggerTestService"
22*d57664e9SAndroid Build Coastguard Worker             android:stopWithTask="false"
23*d57664e9SAndroid Build Coastguard Worker             android:exported="true">
24*d57664e9SAndroid Build Coastguard Worker            <intent-filter>
25*d57664e9SAndroid Build Coastguard Worker                <action android:name="com.android.intent.action.MANAGE_SOUND_TRIGGER"/>
26*d57664e9SAndroid Build Coastguard Worker            </intent-filter>
27*d57664e9SAndroid Build Coastguard Worker        </service>
28*d57664e9SAndroid Build Coastguard Worker    </application>
29*d57664e9SAndroid Build Coastguard Worker</manifest>
30