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 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 <manifest xmlns:android="http://schemas.android.com/apk/res/android" 17 package="com.android.performanceLaunch" 18 android:sharedUserId="com.android.performanceapp.tests" 19 android:versionCode="1" 20 android:versionName="1.0" > 21 22 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> 23 24 <uses-sdk 25 android:minSdkVersion="22" 26 android:targetSdkVersion="22" /> 27 28 <application 29 android:allowBackup="true" 30 android:icon="@drawable/ic_launcher" 31 android:label="@string/app_name" 32 android:theme="@style/AppTheme" > 33 <activity 34 android:name=".DispatchActivity" 35 android:label="@string/app_name" 36 android:autoRemoveFromRecents="true" 37 android:exported="true" 38 android:screenOrientation="nosensor" /> 39 <activity 40 android:name=".EmptyActivity" 41 android:label="@string/app_name" 42 android:autoRemoveFromRecents="true" 43 android:exported="true" 44 android:screenOrientation="nosensor" > 45 <intent-filter> 46 <action android:name="android.intent.action.MAIN" /> 47 <category android:name="android.intent.category.LAUNCHER" /> 48 </intent-filter> 49 </activity> 50 <activity 51 android:name=".SimpleActivity" 52 android:label="@string/app_name" 53 android:autoRemoveFromRecents="true" 54 android:exported="true" 55 android:screenOrientation="nosensor" /> 56 <activity 57 android:name=".EmptyWebViewActivity" 58 android:label="@string/app_name" 59 android:autoRemoveFromRecents="true" 60 android:exported="true" 61 android:screenOrientation="nosensor" /> 62 <activity 63 android:name=".SimpleWebViewActivity" 64 android:label="@string/app_name" 65 android:autoRemoveFromRecents="true" 66 android:exported="true" 67 android:screenOrientation="nosensor" /> 68 <activity 69 android:name=".SimpleSurfaceGLActivity" 70 android:label="@string/app_name" 71 android:autoRemoveFromRecents="true" 72 android:exported="true" 73 android:screenOrientation="nosensor" /> 74 <activity 75 android:name=".ComplexLayoutActivity" 76 android:label="@string/app_name" 77 android:autoRemoveFromRecents="true" 78 android:exported="true" 79 android:screenOrientation="nosensor" /> 80 <activity 81 android:name=".ImageActivity" 82 android:label="@string/app_name" 83 android:autoRemoveFromRecents="true" 84 android:exported="true" 85 android:screenOrientation="nosensor" /> 86 <activity 87 android:name=".ManyConfigResourceActivity" 88 android:label="@string/app_name" 89 android:autoRemoveFromRecents="true" 90 android:exported="true" 91 android:screenOrientation="nosensor" /> 92 </application> 93 94 </manifest> 95 96