Francois Gaffie | 8650e2d | 2020-04-08 13:49:56 +0200 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <!-- Copyright (C) 2020 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 | |
| 17 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
| 18 | package="com.android.audiopolicytest"> |
| 19 | |
| 20 | <uses-permission android:name="android.permission.RECORD_AUDIO" /> |
| 21 | <uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" /> |
| 22 | <uses-permission android:name="android.permission.MODIFY_AUDIO_ROUTING" /> |
| 23 | <uses-permission android:name="android.permission.CHANGE_ACCESSIBILITY_VOLUME" /> |
| 24 | |
| 25 | <application> |
| 26 | <uses-library android:name="android.test.runner" /> |
Eric Laurent | 46ad01d | 2022-12-07 15:11:09 +0100 | [diff] [blame] | 27 | <activity android:label="@string/app_name" android:name="AudioVolumeTestActivity" |
Eric Laurent | 1b638aa1 | 2020-10-08 11:29:30 -0700 | [diff] [blame] | 28 | android:screenOrientation="landscape" android:exported="true"> |
Francois Gaffie | 8650e2d | 2020-04-08 13:49:56 +0200 | [diff] [blame] | 29 | <intent-filter> |
| 30 | <action android:name="android.intent.action.MAIN" /> |
| 31 | <category android:name="android.intent.category.LAUNCHER"/> |
| 32 | </intent-filter> |
| 33 | </activity> |
Eric Laurent | 46ad01d | 2022-12-07 15:11:09 +0100 | [diff] [blame] | 34 | <activity android:label="@string/app_name" android:name="AudioPolicyDeathTestActivity" |
| 35 | android:screenOrientation="landscape" |
| 36 | android:process=":AudioPolicyDeathTestActivityProcess" |
| 37 | android:exported="true"> |
| 38 | <intent-filter> |
| 39 | <action android:name="android.intent.action.MAIN" /> |
| 40 | <category android:name="android.intent.category.LAUNCHER"/> |
| 41 | </intent-filter> |
| 42 | </activity> |
Francois Gaffie | 8650e2d | 2020-04-08 13:49:56 +0200 | [diff] [blame] | 43 | </application> |
| 44 | |
Francois Gaffie | 8650e2d | 2020-04-08 13:49:56 +0200 | [diff] [blame] | 45 | <instrumentation android:name="androidx.test.runner.AndroidJUnitRunner" |
| 46 | android:targetPackage="com.android.audiopolicytest" |
| 47 | android:label="AudioManager policy oriented integration tests InstrumentationRunner"> |
| 48 | </instrumentation> |
| 49 | </manifest> |