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 <activity android:name="com.drawelements.deqp.execserver.ServiceStarter"
15 android:theme="@android:style/Theme.NoDisplay"
16 android:label="dEQP ExecServer Launcher"
17 android:launchMode="singleTask"
18 android:process=":execserverstarter"
19 android:exported="true" />
20 <service android:name="com.drawelements.deqp.execserver.ExecService"
21 android:label="dEQP ExecServer Service"
22 android:exported="true"
23 android:process=":execserver" />
24 <activity android:name="android.app.NativeActivity"
25 android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
26 android:label="dEQP Test Process"
27 android:configChanges="keyboardHidden|orientation|screenSize|screenLayout"
28 android:exported="true"
29 android:process=":testercore">
30 <meta-data android:name="android.app.lib_name"
31 android:value="deqp" />
32 <meta-data android:name="android.app.func_name"
33 android:value="createTestActivity" />
37 <uses-feature android:glEsVersion="0x00020000"/>
38 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
39 <uses-permission android:name="android.permission.GET_TASKS" />
40 <uses-permission android:name="android.permission.INTERNET" />
41 <uses-permission android:name="android.permission.RUN_INSTRUMENTATION" />
42 <uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
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" />