Riddle Hsu | b078bc1 | 2020-05-04 21:58:50 +0800 | [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 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
| 17 | package="com.android.perftests.wm"> |
| 18 | |
| 19 | <uses-permission android:name="android.permission.QUERY_ALL_PACKAGES" /> |
Riddle Hsu | 84c66416 | 2022-10-28 21:16:04 +0800 | [diff] [blame] | 20 | <uses-permission android:name="android.permission.READ_LOGS" /> |
| 21 | <!-- For perfetto trace files --> |
| 22 | <uses-permission android:name="android.permission.MANAGE_EXTERNAL_STORAGE" /> |
| 23 | <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> |
Riddle Hsu | b078bc1 | 2020-05-04 21:58:50 +0800 | [diff] [blame] | 24 | |
| 25 | <application> |
| 26 | <uses-library android:name="android.test.runner" /> |
Riddle Hsu | 0dfaef0 | 2020-06-12 14:11:40 +0800 | [diff] [blame] | 27 | <activity android:name="android.perftests.utils.PerfTestActivity" |
| 28 | android:exported="true"> |
Riddle Hsu | b078bc1 | 2020-05-04 21:58:50 +0800 | [diff] [blame] | 29 | <intent-filter> |
| 30 | <action android:name="com.android.perftests.core.PERFTEST" /> |
| 31 | </intent-filter> |
| 32 | </activity> |
Riddle Hsu | 84c66416 | 2022-10-28 21:16:04 +0800 | [diff] [blame] | 33 | |
| 34 | <activity android:name="android.wm.InTaskTransitionTest$TestActivity" |
| 35 | android:process=":test" /> |
Riddle Hsu | b078bc1 | 2020-05-04 21:58:50 +0800 | [diff] [blame] | 36 | </application> |
| 37 | |
| 38 | <instrumentation android:name="androidx.test.runner.AndroidJUnitRunner" |
Riddle Hsu | 14c4b1a | 2020-08-19 15:54:07 +0800 | [diff] [blame] | 39 | android:targetPackage="com.android.perftests.wm"> |
| 40 | <meta-data android:name="listener" android:value="android.wm.WmPerfRunListener" /> |
| 41 | </instrumentation> |
Riddle Hsu | b078bc1 | 2020-05-04 21:58:50 +0800 | [diff] [blame] | 42 | </manifest> |