1<?xml version="1.0" encoding="utf-8"?>
2<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3	      package="com.drawelements.deqp"
4	      android:versionCode="1"
5	      android:versionName="1.0">
6    <application android:label="dEQP Tests"
7				 android:icon="@drawable/deqp_app">
8		<activity android:name="com.drawelements.deqp.execserver.ExecServerActivity"
9				  android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
10				  android:label="dEQP ExecServer"
11				  android:launchMode="singleTask"
12				  android:process=":execserverui"
13				  android:exported="true">
14			<intent-filter>
15				<action android:name="android.intent.action.MAIN" />
16				<category android:name="android.intent.category.LAUNCHER" />
17			</intent-filter>
18		</activity>
19		<activity android:name="com.drawelements.deqp.execserver.ServiceStarter"
20				  android:theme="@android:style/Theme.NoDisplay"
21				  android:label="dEQP ExecServer Launcher"
22				  android:launchMode="singleTask"
23				  android:process=":execserverstarter"
24				  android:exported="true" />
25		<service android:name="com.drawelements.deqp.execserver.ExecService"
26				 android:label="dEQP ExecServer Service"
27				 android:exported="true"
28				 android:process=":execserver" />
29		<activity android:name="android.app.NativeActivity"
30				  android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
31				  android:label="dEQP Test Process"
32				  android:configChanges="keyboardHidden|orientation|screenSize"
33				  android:exported="true"
34				  android:process=":testercore">
35			<meta-data android:name="android.app.lib_name"
36					   android:value="deqp" />
37			<meta-data android:name="android.app.func_name"
38					   android:value="createTestActivity" />
39		</activity>
40	</application>
41
42 	<uses-sdk android:minSdkVersion="13"/>
43 	<uses-sdk android:targetSdkVersion="19"/>
44    <uses-feature android:glEsVersion="0x00020000"/>
45	<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
46	<uses-permission android:name="android.permission.GET_TASKS" />
47	<uses-permission android:name="android.permission.INTERNET" />
48	<uses-permission android:name="android.permission.RUN_INSTRUMENTATION" />
49
50	<instrumentation android:label="dEQP-Instrumentation"
51					 android:name="com.drawelements.deqp.testercore.DeqpInstrumentation"
52					 android:targetPackage="com.drawelements.deqp" />
53	<instrumentation android:label="dEQP-PlatformCapabilityQueryInstrumentation"
54					 android:name="com.drawelements.deqp.platformutil.DeqpPlatformCapabilityQueryInstrumentation"
55					 android:targetPackage="com.drawelements.deqp" />
56</manifest>
57