blob: adaab61778edb22270fe51b6e1562ec1d9594891 [file] [log] [blame]
Eric Holke6e17c72019-06-18 14:07:35 -07001<?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 Jackson8be08e52019-06-26 16:52:06 -070026
27 <activity
28 android:label="Complex Layout Test"
29 android:name=".ComplexLayoutInflationActivity"
30 android:exported="true" >
31
Eric Holke6e17c72019-06-18 14:07:35 -070032 <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 Jackson8be08e52019-06-26 16:52:06 -070039 <activity
David Sehrac51da92019-10-22 15:04:08 -070040 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 Jackson8be08e52019-06-26 16:52:06 -070052 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 Sehr8fcf8f42019-10-23 15:05:03 -070076 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 Jackson8be08e52019-06-26 16:52:06 -070088 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 Holkaec05a22019-09-09 14:35:36 -070098
99 <activity
Eric Holkafb9b082019-11-13 15:24:40 -0800100 android:label="Interactive Microbenchmarks"
101 android:name=".InteractiveMicrobenchmarkActivity"
Eric Holkaec05a22019-09-09 14:35:36 -0700102 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 Holkc62b0832019-10-11 14:55:39 -0700111 <activity
Eric Holkafb9b082019-11-13 15:24:40 -0800112 android:label="Non-interactive Microbenchmarks"
113 android:name=".NonInteractiveMicrobenchmarkActivity"
Eric Holkc62b0832019-10-11 14:55:39 -0700114 android:exported="true" />
115
Eric Holke6e17c72019-06-18 14:07:35 -0700116 </application>
117
Eric Holk1017c9c2019-10-11 17:12:24 -0700118 <uses-permission android:name="android.permission.WAKE_LOCK" />
Eric Holk6531bc92019-10-14 12:01:30 -0700119 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
Eric Holk1017c9c2019-10-11 17:12:24 -0700120
Eric Holke6e17c72019-06-18 14:07:35 -0700121</manifest>