1<?xml version="1.0" encoding="utf-8"?> 2<!-- 3/* 4** Copyright 2009, The Android Open Source Project 5** 6** Licensed under the Apache License, Version 2.0 (the "License"); 7** you may not use this file except in compliance with the License. 8** You may obtain a copy of the License at 9** 10** http://www.apache.org/licenses/LICENSE-2.0 11** 12** Unless required by applicable law or agreed to in writing, software 13** distributed under the License is distributed on an "AS IS" BASIS, 14** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15** See the License for the specific language governing permissions and 16** limitations under the License. 17*/ 18--> 19 20<manifest xmlns:android="http://schemas.android.com/apk/res/android" 21 package="com.android.globalsearch.benchmarks"> 22 23 <uses-permission android:name="com.android.globalsearch.GET_SUGGESTIONS" /> 24 <uses-permission android:name="android.permission.READ_CONTACTS" /> 25 26 <application> 27 <activity android:name=".ApplicationsLatency" 28 android:stateNotNeeded="true" 29 android:excludeFromRecents="true"> 30 <intent-filter> 31 <action android:name="android.intent.action.MAIN" /> 32 <category android:name="android.intent.category.DEFAULT" /> 33 </intent-filter> 34 </activity> 35 36 <activity android:name=".ContactsLatency" 37 android:stateNotNeeded="true" 38 android:excludeFromRecents="true"> 39 <intent-filter> 40 <action android:name="android.intent.action.MAIN" /> 41 <category android:name="android.intent.category.DEFAULT" /> 42 </intent-filter> 43 </activity> 44 45 <activity android:name=".EnhancedGoogleSearchConcurrency" 46 android:stateNotNeeded="true" 47 android:excludeFromRecents="true"> 48 <intent-filter> 49 <action android:name="android.intent.action.MAIN" /> 50 <category android:name="android.intent.category.DEFAULT" /> 51 </intent-filter> 52 </activity> 53 54 <activity android:name=".EnhancedGoogleSearchLatency" 55 android:stateNotNeeded="true" 56 android:excludeFromRecents="true"> 57 <intent-filter> 58 <action android:name="android.intent.action.MAIN" /> 59 <category android:name="android.intent.category.DEFAULT" /> 60 </intent-filter> 61 </activity> 62 63 <activity android:name=".WebSearchLatency" 64 android:stateNotNeeded="true" 65 android:excludeFromRecents="true"> 66 <intent-filter> 67 <action android:name="android.intent.action.MAIN" /> 68 <category android:name="android.intent.category.DEFAULT" /> 69 </intent-filter> 70 </activity> 71 72 <activity android:name=".GlobalSearchConcurrency" 73 android:stateNotNeeded="true" 74 android:excludeFromRecents="true"> 75 <intent-filter> 76 <action android:name="android.intent.action.MAIN" /> 77 <category android:name="android.intent.category.DEFAULT" /> 78 </intent-filter> 79 </activity> 80 81 <activity android:name=".GlobalSearchLatency" 82 android:stateNotNeeded="true" 83 android:excludeFromRecents="true"> 84 <intent-filter> 85 <action android:name="android.intent.action.MAIN" /> 86 <category android:name="android.intent.category.DEFAULT" /> 87 </intent-filter> 88 </activity> 89 90 <activity android:name=".UserVisibleLatency" 91 android:stateNotNeeded="true" 92 android:excludeFromRecents="true"> 93 <intent-filter> 94 <action android:name="android.intent.action.MAIN" /> 95 <category android:name="android.intent.category.DEFAULT" /> 96 </intent-filter> 97 </activity> 98 </application> 99 100</manifest> 101