blob: 83b15c338e87ef4f9e466bbc3503a9ff45263ff7 [file] [log] [blame]
Jeff Sharkey4147d592019-04-04 11:18:20 -06001<?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.mediastorageappfull">
18
19 <application
Svet Ganov2aea50d2019-04-14 20:42:48 -070020 android:requestLegacyExternalStorage="true">
Jeff Sharkey4147d592019-04-04 11:18:20 -060021 <uses-library android:name="android.test.runner" />
22
23 <activity android:name="com.android.cts.mediastorageapp.StubActivity">
24 <intent-filter>
25 <action android:name="android.intent.action.MAIN" />
26 <category android:name="android.intent.category.LAUNCHER" />
27 <category android:name="android.intent.category.DEFAULT" />
28 <category android:name="android.intent.category.APP_GALLERY" />
29 </intent-filter>
30 </activity>
31
32 <activity android:name="com.android.cts.mediastorageapp.GetResultActivity" />
33 </application>
34
35 <instrumentation android:name="androidx.test.runner.AndroidJUnitRunner"
36 android:targetPackage="com.android.cts.mediastorageappfull" />
37
38 <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
39 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
40
41</manifest>