Add screenSize to configChanges to avoid activity restarts when built through CTS...
[platform/upstream/VK-GL-CTS.git] / android / package / AndroidManifest.xml
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         
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                         <intent-filter>
16                                 <action android:name="android.intent.action.MAIN" />
17                                 <category android:name="android.intent.category.LAUNCHER" />
18                         </intent-filter>
19                 </activity>
20                 <activity android:name="com.drawelements.deqp.execserver.ServiceStarter"
21                                   android:theme="@android:style/Theme.NoDisplay"
22                                   android:label="dEQP ExecServer Launcher"
23                                   android:launchMode="singleTask"
24                                   android:process=":execserverstarter"
25                                   android:exported="true" />
26                 <service android:name="com.drawelements.deqp.execserver.ExecService"
27                                  android:label="dEQP ExecServer Service"
28                                  android:exported="true"
29                                  android:process=":execserver" />
30
31                 <!-- Tester process -->
32                 <activity android:name="android.app.NativeActivity"
33                                   android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
34                                   android:label="dEQP Test Process"
35                                   android:configChanges="orientation|screenSize|keyboardHidden"
36                                   android:exported="true"
37                                   android:process=":testercore">
38                         <meta-data android:name="android.app.lib_name"
39                                            android:value="testercore" />
40                         <meta-data android:name="android.app.func_name"
41                                            android:value="createTestActivity" />
42                 </activity>
43     </application>
44         
45     <uses-sdk android:minSdkVersion="13"/>
46     <uses-feature android:glEsVersion="0x00020000"/>
47         <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
48         <uses-permission android:name="android.permission.GET_TASKS" />
49         <uses-permission android:name="android.permission.INTERNET" />
50         <uses-permission android:name="android.permission.RUN_INSTRUMENTATION" />
51
52         <instrumentation android:label="dEQP-Instrumentation"
53                                          android:name="com.drawelements.deqp.testercore.DeqpInstrumentation"
54                                          android:targetPackage="com.drawelements.deqp" />
55 </manifest>