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