1<?xml version="1.0" encoding="utf-8"?> 2<!-- 3 Copyright 2019 The Android Open Source Project 4 5 Licensed under the Apache License, Version 2.0 (the "License"); 6 you may not use this file except in compliance with the License. 7 You may obtain a copy of the License at 8 9 http://www.apache.org/licenses/LICENSE-2.0 10 11 Unless required by applicable law or agreed to in writing, software 12 distributed under the License is distributed on an "AS IS" BASIS, 13 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 See the License for the specific language governing permissions and 15 limitations under the License. 16 --> 17<manifest xmlns:android="http://schemas.android.com/apk/res/android"> 18 19 <uses-feature android:name="android.hardware.camera" /> 20 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> 21 <uses-permission android:name="android.permission.CAMERA" /> 22 <uses-permission android:name="android.permission.RECORD_AUDIO" /> 23 24 <application 25 android:name=".ExtensionsApplication" 26 android:theme="@style/AppTheme" 27 android:label="@string/app_name"> 28 <activity 29 android:name=".CameraExtensionsActivity" 30 android:exported="true"> 31 <intent-filter> 32 <action android:name="android.intent.action.MAIN" /> 33 <category android:name="android.intent.category.LAUNCHER" /> 34 </intent-filter> 35 </activity> 36 37 <activity 38 android:name=".Camera2ExtensionsActivity" 39 android:exported="false" 40 android:label="@string/camera2_extensions"> 41 <intent-filter> 42 <action android:name="android.intent.action.MAIN" /> 43 <category android:name="android.intent.category.DEFAULT" /> 44 </intent-filter> 45 </activity> 46 47 <activity 48 android:name=".validation.CameraValidationResultActivity" 49 android:configChanges="orientation|keyboardHidden|screenSize" 50 android:exported="false"> 51 <intent-filter> 52 <action android:name="android.intent.action.MAIN" /> 53 <category android:name="android.intent.category.DEFAULT" /> 54 </intent-filter> 55 </activity> 56 57 <activity 58 android:name=".validation.ExtensionValidationResultActivity" 59 android:configChanges="orientation|keyboardHidden|screenSize" 60 android:exported="false"> 61 <intent-filter> 62 <action android:name="android.intent.action.MAIN" /> 63 <category android:name="android.intent.category.DEFAULT" /> 64 </intent-filter> 65 </activity> 66 67 <activity 68 android:name=".validation.ImageValidationActivity" 69 android:configChanges="orientation|keyboardHidden|screenSize" 70 android:exported="false"> 71 <intent-filter> 72 <action android:name="android.intent.action.MAIN" /> 73 <category android:name="android.intent.category.DEFAULT" /> 74 </intent-filter> 75 </activity> 76 77 <activity 78 android:name=".validation.ImageCaptureActivity" 79 android:configChanges="orientation|keyboardHidden|screenSize" 80 android:exported="false"> 81 <intent-filter> 82 <action android:name="android.intent.action.MAIN" /> 83 <category android:name="android.intent.category.DEFAULT" /> 84 </intent-filter> 85 </activity> 86 87 <activity 88 android:name=".proguard.ReleaseTestActivity" 89 android:configChanges="orientation|keyboardHidden|screenSize" 90 android:exported="true"> 91 <intent-filter> 92 <action android:name="androidx.camera.integration.extensions.release_test" /> 93 <category android:name="android.intent.category.DEFAULT" /> 94 </intent-filter> 95 </activity> 96 </application> 97</manifest> 98 99