xref: /aosp_15_r20/external/dexmaker/AndroidManifest.xml (revision 2ffc472c461b441c3ddd38c52c72da5a6be8f680)
1*2ffc472cSXin Li<!--
2*2ffc472cSXin Li  Copyright (C) 2018 The Android Open Source Project
3*2ffc472cSXin Li
4*2ffc472cSXin Li  Licensed under the Apache License, Version 2.0 (the "License");
5*2ffc472cSXin Li  you may not use this file except in compliance with the License.
6*2ffc472cSXin Li  You may obtain a copy of the License at
7*2ffc472cSXin Li
8*2ffc472cSXin Li       http://www.apache.org/licenses/LICENSE-2.0
9*2ffc472cSXin Li
10*2ffc472cSXin Li  Unless required by applicable law or agreed to in writing, software
11*2ffc472cSXin Li  distributed under the License is distributed on an "AS IS" BASIS,
12*2ffc472cSXin Li  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13*2ffc472cSXin Li  See the License for the specific language governing permissions and
14*2ffc472cSXin Li  limitations under the License.
15*2ffc472cSXin Li  -->
16*2ffc472cSXin Li<manifest package="com.linkedin.dexmaker"
17*2ffc472cSXin Li          xmlns:android="http://schemas.android.com/apk/res/android">
18*2ffc472cSXin Li
19*2ffc472cSXin Li    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
20*2ffc472cSXin Li    <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
21*2ffc472cSXin Li
22*2ffc472cSXin Li    <application android:allowBackup="false" android:debuggable="true" />
23*2ffc472cSXin Li
24*2ffc472cSXin Li    <instrumentation android:name="androidx.test.runner.AndroidJUnitRunner"
25*2ffc472cSXin Li                     android:targetPackage="com.linkedin.dexmaker" />
26*2ffc472cSXin Li</manifest>
27