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