• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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:launchMode= "singleTop"
45            android:screenOrientation="nosensor" >
46            <intent-filter>
47             <action android:name="android.intent.action.MAIN" />
48             <category android:name="android.intent.category.LAUNCHER" />
49            </intent-filter>
50        </activity>
51        <activity
52            android:name=".SimpleActivity"
53            android:label="@string/app_name"
54            android:autoRemoveFromRecents="true"
55            android:exported="true"
56            android:screenOrientation="nosensor" />
57        <activity
58            android:name=".EmptyWebViewActivity"
59            android:label="@string/app_name"
60            android:autoRemoveFromRecents="true"
61            android:exported="true"
62            android:screenOrientation="nosensor" />
63        <activity
64            android:name=".SimpleWebViewActivity"
65            android:label="@string/app_name"
66            android:autoRemoveFromRecents="true"
67            android:exported="true"
68            android:screenOrientation="nosensor" />
69        <activity
70            android:name=".SimpleSurfaceGLActivity"
71            android:label="@string/app_name"
72            android:autoRemoveFromRecents="true"
73            android:exported="true"
74            android:screenOrientation="nosensor" />
75        <activity
76            android:name=".ComplexLayoutActivity"
77            android:label="@string/app_name"
78            android:autoRemoveFromRecents="true"
79            android:exported="true"
80            android:screenOrientation="nosensor" />
81        <activity
82            android:name=".ImageActivity"
83            android:label="@string/app_name"
84            android:autoRemoveFromRecents="true"
85            android:exported="true"
86            android:screenOrientation="nosensor" />
87        <activity
88            android:name=".ManyConfigResourceActivity"
89            android:label="@string/app_name"
90            android:autoRemoveFromRecents="true"
91            android:exported="true"
92            android:screenOrientation="nosensor" />
93    </application>
94
95</manifest>
96
97