• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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				 android:requestLegacyExternalStorage="true">
9		<activity android:name="com.drawelements.deqp.execserver.ExecServerActivity"
10				  android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
11				  android:label="dEQP ExecServer"
12				  android:launchMode="singleTask"
13				  android:process=":execserverui"
14				  android:exported="true" />
15		<activity android:name="com.drawelements.deqp.execserver.ServiceStarter"
16				  android:theme="@android:style/Theme.NoDisplay"
17				  android:label="dEQP ExecServer Launcher"
18				  android:launchMode="singleTask"
19				  android:process=":execserverstarter"
20				  android:exported="true" />
21		<service android:name="com.drawelements.deqp.execserver.ExecService"
22				 android:label="dEQP ExecServer Service"
23				 android:exported="true"
24				 android:process=":execserver" />
25		<activity android:name="android.app.NativeActivity"
26				  android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
27				  android:label="dEQP Test Process"
28				  android:configChanges="keyboardHidden|orientation|screenSize|screenLayout"
29				  android:exported="true"
30				  android:process=":testercore">
31			<meta-data android:name="android.app.lib_name"
32					   android:value="deqp" />
33			<meta-data android:name="android.app.func_name"
34					   android:value="createTestActivity" />
35		</activity>
36	</application>
37
38	<uses-feature android:glEsVersion="0x00020000"/>
39	<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
40	<uses-permission android:name="android.permission.GET_TASKS" />
41	<uses-permission android:name="android.permission.INTERNET" />
42	<uses-permission android:name="android.permission.RUN_INSTRUMENTATION" />
43
44	<instrumentation android:label="dEQP-Instrumentation"
45					 android:name="com.drawelements.deqp.testercore.DeqpInstrumentation"
46					 android:targetPackage="com.drawelements.deqp" />
47	<instrumentation android:label="dEQP-PlatformCapabilityQueryInstrumentation"
48					 android:name="com.drawelements.deqp.platformutil.DeqpPlatformCapabilityQueryInstrumentation"
49					 android:targetPackage="com.drawelements.deqp" />
50</manifest>
51