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