1<?xml version="1.0" encoding="utf-8"?>
2<!--
3 * Copyright (C) 2016 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="android.app.cts">
20
21    <permission android:name="android.permission.COMPONENT_CALLER_TEST_PROVIDER_UNUSED_PERMISSION" />
22
23    <uses-permission android:name="android.permission.COMPONENT_CALLER_HELPER_PATH_PROVIDER_READ_PERMISSION" />
24
25    <application>
26        <uses-library android:name="android.test.runner" />
27
28        <activity android:name=".ApplyOverrideConfigurationActivity"
29                  android:configChanges="orientation|screenSize|smallestScreenSize|screenLayout" />
30
31        <activity android:name=".ShareIdentityTest$ShareIdentityTestActivity"
32                  android:exported="true" />
33
34        <activity android:name=".ShareIdentityTest$ActivityInitialCallerShareIdentityTestActivity"
35            android:exported="true" />
36
37        <activity android:name=".ShareIdentityTest$ActivityNewIntentGetCurrentCallerShareIdentityTestActivity"
38            android:exported="true"
39            android:launchMode="singleInstance"/>
40
41        <activity android:name=".ShareIdentityTest$ActivityNewIntentOverloadCallerShareIdentityTestActivity"
42            android:exported="true"
43            android:launchMode="singleInstance"/>
44
45        <activity android:name=".ShareIdentityTest$ActivityResultGetCurrentCallerShareIdentityTestActivity"
46            android:exported="true" />
47
48        <activity android:name=".ShareIdentityTest$ActivityResultOverloadCallerShareIdentityTestActivity"
49            android:exported="true" />
50
51        <activity android:name=".ShareIdentityTest$ActivitySetResultSameUidShareIdentityTestActivity"
52            android:exported="true" />
53
54        <receiver android:name=".ShareIdentityTest$ShareIdentityTestReceiver"
55                  android:exported="true">
56            <intent-filter>
57                <action android:name="android.app.cts.SHARE_IDENTITY_TEST_MANIFEST_ACTION" />
58            </intent-filter>
59        </receiver>
60
61        <activity android:name=".ComponentCallerTest$InitialCallerTestActivity"
62            android:exported="true" />
63
64        <activity android:name=".ComponentCallerTest$NewIntentGetCurrentCallerTestActivity"
65            android:exported="true"
66            android:launchMode="singleInstance" />
67
68        <activity android:name=".ComponentCallerTest$NewIntentOverloadCallerTestActivity"
69            android:exported="true"
70            android:launchMode="singleInstance" />
71
72        <activity android:name=".ComponentCallerTest$NewIntentGetSetIntentCurrentCallerTestActivity"
73            android:exported="true"
74            android:launchMode="singleInstance" />
75
76        <activity android:name=".ComponentCallerTest$NewIntentGetSetIntentOverloadCallerTestActivity"
77            android:exported="true"
78            android:launchMode="singleInstance" />
79
80        <activity android:name=".ComponentCallerTest$ResultGetSetIntentCurrentCallerTestActivity"
81            android:exported="true" />
82
83        <activity android:name=".ComponentCallerTest$ResultGetSetIntentOverloadCallerTestActivity"
84            android:exported="true" />
85
86        <activity android:name=".ComponentCallerTest$SetResultTestActivity"
87            android:exported="true" />
88
89        <receiver android:name=".ComponentCallerTest$TestReceiver"
90            android:exported="true">
91            <intent-filter>
92                <action android:name="android.app.cts.ACTIVITY_CALLER_ACTION" />
93            </intent-filter>
94        </receiver>
95
96        <provider android:name=".ComponentCallerTest$TestProvider"
97            android:exported="true"
98            android:grantUriPermissions="true"
99            android:authorities="android.app.cts.componentcaller.provider"
100            android:permission="android.permission.COMPONENT_CALLER_TEST_PROVIDER_UNUSED_PERMISSION" />
101    </application>
102
103    <instrumentation android:name="androidx.test.runner.AndroidJUnitRunner"
104                     android:targetPackage="android.app.cts"
105                     android:label="CTS tests of android.app">
106    </instrumentation>
107
108</manifest>
109
110