1<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2009 The Android Open Source Project
3
4     Licensed under the Apache License, Version 2.0 (the "License");
5     you may not use this file except in compliance with the License.
6     You may obtain a copy of the License at
7
8          http://www.apache.org/licenses/LICENSE-2.0
9
10     Unless required by applicable law or agreed to in writing, software
11     distributed under the License is distributed on an "AS IS" BASIS,
12     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13     See the License for the specific language governing permissions and
14     limitations under the License.
15-->
16<!--
17Make sure to enable access to the mic in settings and run:
18adb shell am compat enable ALLOW_TEST_API_ACCESS com.android.effectstest
19-->
20
21<manifest xmlns:android="http://schemas.android.com/apk/res/android"
22     package="com.android.effectstest">
23
24   <uses-permission android:name="android.permission.RECORD_AUDIO"/>
25   <uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS"/>
26
27   <application>
28        <activity android:label="@string/app_name"
29             android:name="EffectsTest"
30             android:exported="true">
31            <intent-filter>
32                <action android:name="android.intent.action.MAIN"/>
33                <category android:name="android.intent.category.LAUNCHER"/>
34            </intent-filter>
35        </activity>
36
37        <activity android:label="@string/envreverb_test_name"
38             android:name="EnvReverbTest">
39        </activity>
40
41        <activity android:label="@string/presetrvb_test_name"
42             android:name="PresetReverbTest">
43        </activity>
44
45        <activity android:label="@string/equalizer_test_name"
46             android:name="EqualizerTest">
47        </activity>
48
49        <activity android:label="@string/virtualizer_test_name"
50             android:name="VirtualizerTest">
51        </activity>
52
53        <activity android:label="@string/bassboost_test_name"
54             android:name="BassBoostTest">
55        </activity>
56
57        <activity android:label="@string/visualizer_test_name"
58             android:name="VisualizerTest">
59        </activity>
60
61    </application>
62</manifest>
63