1<?xml version="1.0" encoding="utf-8"?><!--
2  ~ Copyright 2019 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
19    <uses-permission android:name="android.permission.CAMERA" />
20
21    <uses-feature
22        android:name="android.hardware.camera.any"
23        android:required="false" />
24    <uses-feature
25        android:name="android.hardware.camera.external"
26        android:required="false" />
27    <uses-feature
28        android:name="android.hardware.camera.front"
29        android:required="false" />
30    <uses-feature
31        android:name="android.hardware.camera.raw"
32        android:required="false" />
33
34    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
35    <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
36    <!-- The attribute, requestLegacyExternalStorage, is ignored if app is targeted Android 11
37     (API level 30),. -->
38    <application
39        android:requestLegacyExternalStorage="true"
40        android:allowBackup="true"
41        android:icon="@mipmap/ic_launcher"
42        android:label="@string/app_name"
43        android:roundIcon="@mipmap/ic_launcher_round"
44        android:supportsRtl="true"
45        android:name=".TimingApplication"
46        android:theme="@style/AppTheme">
47        <activity android:name="androidx.camera.integration.antelope.MainActivity" android:exported="true">
48            <intent-filter>
49                <action android:name="android.intent.action.MAIN" />
50
51                <category android:name="android.intent.category.LAUNCHER" />
52            </intent-filter>
53        </activity>
54    </application>
55
56</manifest>