xref: /aosp_15_r20/external/jetpack-camera-app/app/src/androidTest/AndroidManifest.xml (revision 7e7863dab8204bb545ead586e736dea632e06846)
1*7e7863daSAndroid Build Coastguard Worker<?xml version="1.0" encoding="utf-8"?>
2*7e7863daSAndroid Build Coastguard Worker<!--
3*7e7863daSAndroid Build Coastguard Worker  ~ Copyright (C) 2015 The Android Open Source Project
4*7e7863daSAndroid Build Coastguard Worker  ~
5*7e7863daSAndroid Build Coastguard Worker  ~ Licensed under the Apache License, Version 2.0 (the "License");
6*7e7863daSAndroid Build Coastguard Worker  ~ you may not use this file except in compliance with the License.
7*7e7863daSAndroid Build Coastguard Worker  ~ You may obtain a copy of the License at
8*7e7863daSAndroid Build Coastguard Worker  ~
9*7e7863daSAndroid Build Coastguard Worker  ~      http://www.apache.org/licenses/LICENSE-2.0
10*7e7863daSAndroid Build Coastguard Worker  ~
11*7e7863daSAndroid Build Coastguard Worker  ~ Unless required by applicable law or agreed to in writing, software
12*7e7863daSAndroid Build Coastguard Worker  ~ distributed under the License is distributed on an "AS IS" BASIS,
13*7e7863daSAndroid Build Coastguard Worker  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14*7e7863daSAndroid Build Coastguard Worker  ~ See the License for the specific language governing permissions and
15*7e7863daSAndroid Build Coastguard Worker  ~ limitations under the License.
16*7e7863daSAndroid Build Coastguard Worker  -->
17*7e7863daSAndroid Build Coastguard Worker
18*7e7863daSAndroid Build Coastguard Worker<manifest xmlns:android="http://schemas.android.com/apk/res/android"
19*7e7863daSAndroid Build Coastguard Worker    package="com.google.jetpackcamera.apptests" >
20*7e7863daSAndroid Build Coastguard Worker
21*7e7863daSAndroid Build Coastguard Worker    <uses-permission android:name="android.permission.CAMERA" />
22*7e7863daSAndroid Build Coastguard Worker    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
23*7e7863daSAndroid Build Coastguard Worker    <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
24*7e7863daSAndroid Build Coastguard Worker
25*7e7863daSAndroid Build Coastguard Worker    <instrumentation
26*7e7863daSAndroid Build Coastguard Worker        android:name="androidx.test.runner.AndroidJUnitRunner"
27*7e7863daSAndroid Build Coastguard Worker        android:label="App Android Tests"
28*7e7863daSAndroid Build Coastguard Worker        android:targetPackage="com.google.jetpackcamera" />
29*7e7863daSAndroid Build Coastguard Worker
30*7e7863daSAndroid Build Coastguard Worker    <application>
31*7e7863daSAndroid Build Coastguard Worker        <uses-library android:name="android.test.runner" />
32*7e7863daSAndroid Build Coastguard Worker    </application>
33*7e7863daSAndroid Build Coastguard Worker
34*7e7863daSAndroid Build Coastguard Worker</manifest>
35