blob: aca7177759c6953643dad406129df7f44af5aecd [file] [log] [blame]
Pete Gillin19c70e92017-10-18 12:43:47 +01001<?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
17<manifest xmlns:android="http://schemas.android.com/apk/res/android"
18 package="libcore.heapdumper">
19
20 <uses-sdk android:minSdkVersion="19" />
Nikita Iashchenko612e48f2019-12-23 14:16:18 +000021 <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
Pete Gillin19c70e92017-10-18 12:43:47 +010022 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
Nikita Iashchenko612e48f2019-12-23 14:16:18 +000023 <uses-permission android:name="android.permission.ACCESS_MEDIA_LOCATION" />
Pete Gillin19c70e92017-10-18 12:43:47 +010024
25 <instrumentation
26 android:name="libcore.heapdumper.HeapDumpInstrumentation"
27 android:targetPackage="libcore.heapdumper" />
28
Pete Gillin10bd6482017-11-23 18:11:09 +000029 <instrumentation
30 android:name="libcore.heapdumper.PssInstrumentation"
31 android:targetPackage="libcore.heapdumper" />
32
Pete Gillin19c70e92017-10-18 12:43:47 +010033 <application
34 android:allowBackup="false"
Pete Gillincca8c292020-02-03 18:19:15 +000035 android:requestLegacyExternalStorage="true"
Pete Gillin19c70e92017-10-18 12:43:47 +010036 android:label="@string/libcore_heap_dumper_title">
37 </application>
38</manifest>