Home | History | Annotate | Download | only in openglperf
      1 <?xml version="1.0" encoding="utf-8"?>
      2 <!-- Copyright (C) 2011 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.cts.openglperf"
     18     android:versionCode="1"
     19     android:versionName="1.0" >
     20 
     21     <uses-feature android:glEsVersion="0x00020000" android:required="true" />
     22     <uses-permission android:name="android.permission.DISABLE_KEYGUARD" />
     23     <uses-permission android:name="android.permission.GET_TASKS" />
     24     <uses-permission android:name="android.permission.REORDER_TASKS" />
     25     <uses-permission android:name="android.permission.KILL_BACKGROUND_PROCESSES" />
     26 
     27     <!-- Two activities are used -->
     28     <instrumentation
     29         android:targetPackage="com.replica.replicaisland"
     30         android:name="android.test.InstrumentationCtsTestRunner" />
     31     <instrumentation
     32         android:targetPackage="com.android.cts.openglperf"
     33         android:name="android.test.InstrumentationCtsTestRunner" />
     34 
     35     <application
     36         android:label="@string/app_name" >
     37         <uses-library android:name="android.test.runner" />
     38         <activity
     39             android:name="android.openglperf.cts.GlPlanetsActivity"
     40             android:label="@string/app_name" >
     41             <intent-filter>
     42                 <action android:name="android.intent.action.MAIN" />
     43                 <category android:name="android.intent.category.LAUNCHER" />
     44             </intent-filter>
     45         </activity>
     46         <activity android:name="android.openglperf.cts.TextureTestActivity" />
     47     </application>
     48 
     49 </manifest>
     50