• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<?xml version="1.0" encoding="utf-8"?>
2
3<!-- Copyright (C) 2020 The Android Open Source Project
4
5     Licensed under the Apache License, Version 2.0 (the "License");
6     you may not use this file except in compliance with the License.
7     You may obtain a copy of the License at
8
9          http://www.apache.org/licenses/LICENSE-2.0
10
11     Unless required by applicable law or agreed to in writing, software
12     distributed under the License is distributed on an "AS IS" BASIS,
13     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14     See the License for the specific language governing permissions and
15     limitations under the License.
16-->
17
18<manifest xmlns:android="http://schemas.android.com/apk/res/android"
19        package="com.android.servicestests.apps.packageparserapp" >
20    <application>
21        <uses-library android:name="android.test.runner" />
22        <property android:name="android.cts.PROPERTY_RESOURCE_XML" android:resource="@xml/xml_property" />
23        <property android:name="android.cts.PROPERTY_RESOURCE_INTEGER" android:resource="@integer/integer_property" />
24        <property android:name="android.cts.PROPERTY_BOOLEAN" android:value="true" />
25        <property android:name="android.cts.PROPERTY_BOOLEAN_VIA_RESOURCE" android:value="@bool/boolean_property" />
26        <property android:name="android.cts.PROPERTY_FLOAT" android:value="3.14" />
27        <property android:name="android.cts.PROPERTY_FLOAT_VIA_RESOURCE" android:value="@dimen/float_property" />
28        <property android:name="android.cts.PROPERTY_INTEGER" android:value="42" />
29        <property android:name="android.cts.PROPERTY_INTEGER_VIA_RESOURCE" android:value="@integer/integer_property" />
30        <property android:name="android.cts.PROPERTY_STRING" android:value="koala" />
31        <property android:name="android.cts.PROPERTY_STRING_VIA_RESOURCE" android:value="@string/string_property" />
32
33	    <activity android:name="com.android.servicestests.apps.packageparserapp.MyActivity"
34	              android:exported="true" >
35	        <property android:name="android.cts.PROPERTY_ACTIVITY" android:value="@integer/integer_property" />
36	        <property android:name="android.cts.PROPERTY_COMPONENT" android:value="@integer/integer_property" />
37	        <property android:name="android.cts.PROPERTY_STRING" android:value="koala activity" />
38	        <intent-filter>
39	           <action android:name="android.intent.action.MAIN" />
40	           <category android:name="android.intent.category.LAUNCHER" />
41	        </intent-filter>
42	    </activity>
43	    <activity-alias android:name="com.android.servicestests.apps.packageparserapp.MyActivityAlias"
44	                    android:targetActivity="com.android.servicestests.apps.packageparserapp.MyActivity">
45	        <property android:name="android.cts.PROPERTY_ACTIVITY_ALIAS" android:value="@integer/integer_property" />
46	        <property android:name="android.cts.PROPERTY_COMPONENT" android:value="@integer/integer_property" />
47	    </activity-alias>
48	    <provider android:name="com.android.servicestests.apps.packageparserapp.MyProvider"
49	             android:authorities="propertytest">
50	        <property android:name="android.cts.PROPERTY_PROVIDER" android:value="@integer/integer_property" />
51	    </provider>
52	    <receiver android:name="com.android.servicestests.apps.packageparserapp.MyReceiver">
53	        <property android:name="android.cts.PROPERTY_RECEIVER" android:value="@integer/integer_property" />
54	        <property android:name="android.cts.PROPERTY_STRING" android:value="koala receiver" />
55	    </receiver>
56	    <service android:name="com.android.servicestests.apps.packageparserapp.MyService">
57	        <property android:name="android.cts.PROPERTY_SERVICE" android:value="@integer/integer_property" />
58	        <property android:name="android.cts.PROPERTY_COMPONENT" android:resource="@integer/integer_property" />
59	    </service>
60    </application>
61
62    <instrumentation
63        android:name="androidx.test.runner.AndroidJUnitRunner"
64        android:targetPackage="com.android.servicestests.apps.packageparserapp" />
65</manifest>
66