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">
26
27        <activity
28            android:label="Complex Layout Test"
29            android:name=".ComplexLayoutInflationActivity"
30            android:exported="true" >
31
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
39        <activity
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
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
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
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>
98
99        <activity
100            android:label="Interactive Microbenchmarks"
101            android:name=".InteractiveMicrobenchmarkActivity"
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
111        <activity
112            android:label="Non-interactive Microbenchmarks"
113            android:name=".NonInteractiveMicrobenchmarkActivity"
114            android:exported="true" />
115
116    </application>
117
118    <uses-permission android:name="android.permission.WAKE_LOCK" />
119    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
120
121</manifest>
122