blob: 6117cbacb184f2b4f10934f103d61eb4dbf470d0 [file] [log] [blame]
Jeff Sharkeyb49cb252013-03-07 19:58:04 -08001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2013 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"
Jeff Sharkey97c2b8b2013-05-30 14:22:42 -070018 package="android.support.tests">
Jeff Sharkeyb49cb252013-03-07 19:58:04 -080019
Jeff Sharkey5fdfbc22014-09-16 15:46:41 -070020 <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
21 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
22
Jeff Sharkeyb49cb252013-03-07 19:58:04 -080023 <application>
24 <uses-library android:name="android.test.runner" />
25
26 <provider
27 android:name="android.support.v4.content.FileProvider"
28 android:authorities="moocow"
29 android:grantUriPermissions="true">
30 <meta-data
31 android:name="android.support.FILE_PROVIDER_PATHS"
32 android:resource="@xml/paths" />
33 </provider>
34
Jeff Sharkey5fdfbc22014-09-16 15:46:41 -070035 <activity android:name="android.support.tests.GrantActivity" android:label="_GrantActivity">
36 <intent-filter>
37 <action android:name="android.intent.action.MAIN" />
38 <category android:name="android.intent.category.LAUNCHER" />
39 </intent-filter>
40 </activity>
41
Jeff Sharkeyb49cb252013-03-07 19:58:04 -080042 </application>
43
44 <instrumentation
45 android:name="android.test.InstrumentationTestRunner"
Jeff Sharkey97c2b8b2013-05-30 14:22:42 -070046 android:targetPackage="android.support.tests" />
Jeff Sharkeyb49cb252013-03-07 19:58:04 -080047
48</manifest>