blob: 86b134c859438fb4b7e4c5780dbf43d85254d9e6 [file] [log] [blame]
Jeff Sharkey3c4d2fc2014-10-10 11:40:22 -07001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2014 The Android Open Source Project
3
4 Licensed under the Apache License, Version 2.0 (the "License");
5 you may not use this file except in compliance with the License.
6 You may obtain a copy of the License at
7
8 http://www.apache.org/licenses/LICENSE-2.0
9
10 Unless required by applicable law or agreed to in writing, software
11 distributed under the License is distributed on an "AS IS" BASIS,
12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 See the License for the specific language governing permissions and
14 limitations under the License.
15-->
16
17<manifest xmlns:android="http://schemas.android.com/apk/res/android"
18 package="com.android.cts.documentprovider">
Diksha Gohlyan37ae1a32020-03-17 16:00:40 -070019
20 <uses-sdk android:minSdkVersion="29" android:targetSdkVersion="29"/>
21
Patrick Baumann1141c002020-09-18 10:13:10 -070022 <application>
23 <uses-library android:name="android.test.runner"/>
Paul Duffinfda34ce2017-12-08 00:02:41 +000024
Jeff Sharkey3c4d2fc2014-10-10 11:40:22 -070025 <provider android:name=".MyDocumentsProvider"
26 android:authorities="com.android.cts.documentprovider"
27 android:exported="true"
28 android:grantUriPermissions="true"
29 android:permission="android.permission.MANAGE_DOCUMENTS">
30 <intent-filter>
31 <action android:name="android.content.action.DOCUMENTS_PROVIDER" />
32 </intent-filter>
33 </provider>
34
35 <activity android:name=".GetContentActivity"
36 android:label="CtsGetContent">
37 <intent-filter>
38 <action android:name="android.intent.action.GET_CONTENT" />
39 <category android:name="android.intent.category.DEFAULT" />
40 <category android:name="android.intent.category.OPENABLE" />
41 <data android:mimeType="image/*" />
42 </intent-filter>
43 </activity>
Tomasz Mikolajewskia9f36ce2016-12-19 15:13:45 +090044
45 <activity android:name=".WebLinkActivity">
46 </activity>
Jeff Sharkey3c4d2fc2014-10-10 11:40:22 -070047 </application>
48</manifest>