| Eric Holk | e6e17c7 | 2019-06-18 14:07:35 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <!-- Copyright (C) 2019 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.startop.test"> |
| 19 | |
| 20 | <application |
| 21 | android:allowBackup="true" |
| 22 | android:icon="@mipmap/ic_launcher" |
| 23 | android:label="@string/app_name" |
| 24 | android:roundIcon="@mipmap/ic_launcher_round" |
| 25 | android:supportsRtl="true"> |
| Carmen Jackson | 8be08e5 | 2019-06-26 16:52:06 -0700 | [diff] [blame] | 26 | |
| 27 | <activity |
| 28 | android:label="Complex Layout Test" |
| 29 | android:name=".ComplexLayoutInflationActivity" |
| 30 | android:exported="true" > |
| 31 | |
| Eric Holk | e6e17c7 | 2019-06-18 14:07:35 -0700 | [diff] [blame] | 32 | <intent-filter> |
| 33 | <action android:name="android.intent.action.MAIN" /> |
| 34 | |
| 35 | <category android:name="android.intent.category.LAUNCHER" /> |
| 36 | </intent-filter> |
| 37 | </activity> |
| 38 | |
| Carmen Jackson | 8be08e5 | 2019-06-26 16:52:06 -0700 | [diff] [blame] | 39 | <activity |
| David Sehr | ac51da9 | 2019-10-22 15:04:08 -0700 | [diff] [blame] | 40 | android:label="CPU Intensive Benchmark Test" |
| 41 | android:name=".CPUIntensiveBenchmarkActivity" |
| 42 | android:exported="true" > |
| 43 | |
| 44 | <intent-filter> |
| 45 | <action android:name="android.intent.action.MAIN" /> |
| 46 | |
| 47 | <category android:name="android.intent.category.LAUNCHER" /> |
| 48 | </intent-filter> |
| 49 | </activity> |
| 50 | |
| 51 | <activity |
| Carmen Jackson | 8be08e5 | 2019-06-26 16:52:06 -0700 | [diff] [blame] | 52 | android:label="Empty Activity Layout Test" |
| 53 | android:name=".EmptyActivity" |
| 54 | android:exported="true" > |
| 55 | |
| 56 | <intent-filter> |
| 57 | <action android:name="android.intent.action.MAIN" /> |
| 58 | |
| 59 | <category android:name="android.intent.category.LAUNCHER" /> |
| 60 | </intent-filter> |
| 61 | </activity> |
| 62 | |
| 63 | <activity |
| 64 | android:label="FrameLayout Layout Test" |
| 65 | android:name=".FrameLayoutInflationActivity" |
| 66 | android:exported="true" > |
| 67 | |
| 68 | <intent-filter> |
| 69 | <action android:name="android.intent.action.MAIN" /> |
| 70 | |
| 71 | <category android:name="android.intent.category.LAUNCHER" /> |
| 72 | </intent-filter> |
| 73 | </activity> |
| 74 | |
| 75 | <activity |
| David Sehr | 8fcf8f4 | 2019-10-23 15:05:03 -0700 | [diff] [blame] | 76 | android:label="Initialization Check Overhead Test" |
| 77 | android:name=".InitCheckOverheadBenchmarkActivity" |
| 78 | android:exported="true" > |
| 79 | |
| 80 | <intent-filter> |
| 81 | <action android:name="android.intent.action.MAIN" /> |
| 82 | |
| 83 | <category android:name="android.intent.category.LAUNCHER" /> |
| 84 | </intent-filter> |
| 85 | </activity> |
| 86 | |
| 87 | <activity |
| Carmen Jackson | 8be08e5 | 2019-06-26 16:52:06 -0700 | [diff] [blame] | 88 | android:label="TextView Layout Test" |
| 89 | android:name=".TextViewInflationActivity" |
| 90 | android:exported="true" > |
| 91 | |
| 92 | <intent-filter> |
| 93 | <action android:name="android.intent.action.MAIN" /> |
| 94 | |
| 95 | <category android:name="android.intent.category.LAUNCHER" /> |
| 96 | </intent-filter> |
| 97 | </activity> |
| Eric Holk | aec05a2 | 2019-09-09 14:35:36 -0700 | [diff] [blame] | 98 | |
| 99 | <activity |
| Eric Holk | afb9b08 | 2019-11-13 15:24:40 -0800 | [diff] [blame] | 100 | android:label="Interactive Microbenchmarks" |
| 101 | android:name=".InteractiveMicrobenchmarkActivity" |
| Eric Holk | aec05a2 | 2019-09-09 14:35:36 -0700 | [diff] [blame] | 102 | android:exported="true" > |
| 103 | |
| 104 | <intent-filter> |
| 105 | <action android:name="android.intent.action.MAIN" /> |
| 106 | |
| 107 | <category android:name="android.intent.category.LAUNCHER" /> |
| 108 | </intent-filter> |
| 109 | </activity> |
| 110 | |
| Eric Holk | c62b083 | 2019-10-11 14:55:39 -0700 | [diff] [blame] | 111 | <activity |
| Eric Holk | afb9b08 | 2019-11-13 15:24:40 -0800 | [diff] [blame] | 112 | android:label="Non-interactive Microbenchmarks" |
| 113 | android:name=".NonInteractiveMicrobenchmarkActivity" |
| Eric Holk | c62b083 | 2019-10-11 14:55:39 -0700 | [diff] [blame] | 114 | android:exported="true" /> |
| 115 | |
| Eric Holk | e6e17c7 | 2019-06-18 14:07:35 -0700 | [diff] [blame] | 116 | </application> |
| 117 | |
| Eric Holk | 1017c9c | 2019-10-11 17:12:24 -0700 | [diff] [blame] | 118 | <uses-permission android:name="android.permission.WAKE_LOCK" /> |
| Eric Holk | 6531bc9 | 2019-10-14 12:01:30 -0700 | [diff] [blame] | 119 | <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> |
| Eric Holk | 1017c9c | 2019-10-11 17:12:24 -0700 | [diff] [blame] | 120 | |
| Eric Holk | e6e17c7 | 2019-06-18 14:07:35 -0700 | [diff] [blame] | 121 | </manifest> |