1<?xml version="1.0" encoding="utf-8"?> 2<!-- 3 ~ Copyright (C) 2015 The Android Open Source Project 4 ~ 5 ~ Licensed under the Apache License, Version 2.0 (the "License"); 6 ~ you may not use this file except in compliance with the License. 7 ~ You may obtain a copy of the License at 8 ~ 9 ~ http://www.apache.org/licenses/LICENSE-2.0 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 limitations under the 14 ~ License. 15 ~ 16--> 17 18<manifest xmlns:android="http://schemas.android.com/apk/res/android" 19 package="com.android.benchmark"> 20 21 <uses-sdk android:minSdkVersion="24"/> 22 23 <android:uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> 24 <android:uses-permission android:name="android.permission.READ_PHONE_STATE"/> 25 <android:uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/> 26 27 <application android:allowBackup="true" 28 android:icon="@mipmap/ic_launcher" 29 android:label="@string/app_name" 30 android:supportsRtl="true" 31 android:theme="@style/AppTheme"> 32 <activity android:name=".app.HomeActivity" 33 android:label="@string/app_name" 34 android:theme="@style/AppTheme.NoActionBar" 35 android:exported="true"> 36 <intent-filter> 37 <action android:name="android.intent.action.MAIN"/> 38 39 <category android:name="android.intent.category.LAUNCHER"/> 40 </intent-filter> 41 </activity> 42 <activity 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 android:name="com.android.benchmark.benchmark_group" 49 android:resource="@xml/benchmark"/> 50 </activity> 51 <activity android:name=".ui.ListViewScrollActivity"/> 52 <activity android:name=".ui.ImageListViewScrollActivity"/> 53 <activity android:name=".ui.ShadowGridActivity"/> 54 <activity android:name=".ui.TextScrollActivity"/> 55 <activity android:name=".ui.EditTextInputActivity"/> 56 <activity android:name=".synthetic.MemoryActivity"/> 57 <activity android:name=".ui.FullScreenOverdrawActivity"/> 58 <activity android:name=".ui.BitmapUploadActivity"/> 59 </application> 60 61</manifest> 62