Home | History | Annotate | Download | only in PerformanceLaunch
      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:versionCode="1"
     19     android:versionName="1.0" >
     20 
     21     <uses-sdk
     22         android:minSdkVersion="22"
     23         android:targetSdkVersion="22" />
     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=".EmptyActivity"
     32             android:label="@string/app_name"
     33             android:autoRemoveFromRecents="true"
     34             android:exported="true"
     35             android:screenOrientation="nosensor" >
     36             <intent-filter>
     37              <action android:name="android.intent.action.MAIN" />
     38              <category android:name="android.intent.category.LAUNCHER" />
     39             </intent-filter>
     40         </activity>
     41         <activity
     42             android:name=".SimpleActivity"
     43             android:label="@string/app_name"
     44             android:autoRemoveFromRecents="true"
     45             android:exported="true"
     46             android:screenOrientation="nosensor" />
     47         <activity
     48             android:name=".EmptyWebViewActivity"
     49             android:label="@string/app_name"
     50             android:autoRemoveFromRecents="true"
     51             android:exported="true"
     52             android:screenOrientation="nosensor" />
     53         <activity
     54             android:name=".SimpleWebViewActivity"
     55             android:label="@string/app_name"
     56             android:autoRemoveFromRecents="true"
     57             android:exported="true"
     58             android:screenOrientation="nosensor" />
     59         <activity
     60             android:name=".SimpleSurfaceGLActivity"
     61             android:label="@string/app_name"
     62             android:autoRemoveFromRecents="true"
     63             android:exported="true"
     64             android:screenOrientation="nosensor" />
     65         <activity
     66             android:name=".ComplexLayoutActivity"
     67             android:label="@string/app_name"
     68             android:autoRemoveFromRecents="true"
     69             android:exported="true"
     70             android:screenOrientation="nosensor" />
     71         <activity
     72             android:name=".ImageActivity"
     73             android:label="@string/app_name"
     74             android:autoRemoveFromRecents="true"
     75             android:exported="true"
     76             android:screenOrientation="nosensor" />
     77         <activity
     78             android:name=".ManyConfigResourceActivity"
     79             android:label="@string/app_name"
     80             android:autoRemoveFromRecents="true"
     81             android:exported="true"
     82             android:screenOrientation="nosensor" />
     83     </application>
     84 
     85 </manifest>
     86 
     87