1<?xml version="1.0" encoding="utf-8"?><!--
2  ~ Copyright (C) 2015 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  ~ Unless required by applicable law or agreed to in writing, software
10  ~ distributed under the License is distributed on an "AS IS" BASIS,
11  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  ~ See the License for the specific language governing permissions and limitations under the
13  ~ License.
14  ~
15-->
16<manifest xmlns:android="http://schemas.android.com/apk/res/android"
17    package="com.android.benchmark">
18
19    <uses-sdk android:minSdkVersion="24" />
20
21    <android:uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
22    <android:uses-permission android:name="android.permission.READ_PHONE_STATE" />
23    <android:uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
24
25    <application
26        android:allowBackup="true"
27        android:icon="@mipmap/ic_launcher"
28        android:label="@string/app_name"
29        android:supportsRtl="true"
30        android:theme="@style/AppTheme">
31        <activity
32            android:name=".app.HomeActivity"
33            android:label="@string/app_name"
34            android:theme="@style/AppTheme.NoActionBar">
35            <intent-filter>
36                <action android:name="android.intent.action.MAIN" />
37
38                <category android:name="android.intent.category.LAUNCHER" />
39            </intent-filter>
40        </activity>
41        <activity
42            android:name=".app.RunLocalBenchmarksActivity"
43            android:exported="true">
44            <intent-filter>
45                <action android:name="com.android.benchmark.ACTION_BENCHMARK" />
46            </intent-filter>
47
48            <meta-data
49                android:name="com.android.benchmark.benchmark_group"
50                android:resource="@xml/benchmark" />
51        </activity>
52        <activity android:name=".ui.ListViewScrollActivity" />
53        <activity android:name=".ui.ImageListViewScrollActivity" />
54        <activity android:name=".ui.ShadowGridActivity" />
55        <activity android:name=".ui.TextScrollActivity" />
56        <activity android:name=".ui.EditTextInputActivity" />
57        <activity android:name=".synthetic.MemoryActivity" />
58        <activity android:name=".ui.FullScreenOverdrawActivity"></activity>
59        <activity android:name=".ui.BitmapUploadActivity"></activity>
60    </application>
61
62</manifest>