blob: cf69eaac3b75868a246f26c872478c4816cdb351 [file] [log] [blame]
Jeff Sharkey69574192018-12-06 15:23:54 -07001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2017 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<manifest xmlns:android="http://schemas.android.com/apk/res/android"
17 package="com.android.cts.mediastorageapp">
18
19 <application>
20 <uses-library android:name="android.test.runner" />
21
Jeff Sharkey4147d592019-04-04 11:18:20 -060022 <activity android:name="com.android.cts.mediastorageapp.StubActivity">
Jeff Sharkey69574192018-12-06 15:23:54 -070023 <intent-filter>
24 <action android:name="android.intent.action.MAIN" />
25 <category android:name="android.intent.category.LAUNCHER" />
Jeff Sharkeya1eb21e2019-02-11 15:55:22 -070026 <category android:name="android.intent.category.DEFAULT" />
Jeff Sharkey69574192018-12-06 15:23:54 -070027 <category android:name="android.intent.category.APP_GALLERY" />
28 </intent-filter>
29 </activity>
30
Jeff Sharkey4147d592019-04-04 11:18:20 -060031 <activity android:name="com.android.cts.mediastorageapp.GetResultActivity" />
Jeff Sharkey69574192018-12-06 15:23:54 -070032 </application>
33
Brett Chabot244f0382019-02-15 13:02:34 -080034 <instrumentation android:name="androidx.test.runner.AndroidJUnitRunner"
Jeff Sharkey69574192018-12-06 15:23:54 -070035 android:targetPackage="com.android.cts.mediastorageapp" />
36
Jeff Sharkey13534ac2019-04-01 18:43:37 -060037 <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
38 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
Jeff Sharkey69574192018-12-06 15:23:54 -070039
40</manifest>