1<?xml version="1.0" encoding="utf-8"?><!-- Copyright (C) 2019 The Android Open Source Project 2 3Licensed under the Apache License, Version 2.0 (the "License"); 4you may not use this file except in compliance with the License. 5You may obtain a copy of the License at 6 7 http://www.apache.org/licenses/LICENSE-2.0 8 9Unless required by applicable law or agreed to in writing, software 10distributed under the License is distributed on an "AS IS" BASIS, 11WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12See the License for the specific language governing permissions and 13limitations under the License. 14--> 15<manifest xmlns:android="http://schemas.android.com/apk/res/android"> 16 <!-- For using the camera --> 17 <uses-permission android:name="android.permission.CAMERA" /> 18 <uses-permission android:name="android.permission.RECORD_AUDIO" /> 19 <!-- For saving to the SD Card --> 20 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> 21 22 <application 23 android:label="@string/app_name" 24 android:largeHeap="true" 25 android:supportsRtl="true" 26 android:theme="@style/AppTheme" 27 android:requestLegacyExternalStorage="true"> 28 29 <activity 30 android:name=".MainActivity" 31 android:label="@string/app_name" 32 android:exported="true" 33 android:screenOrientation="fullUser"> 34 <intent-filter> 35 <action android:name="android.intent.action.MAIN" /> 36 <category android:name="android.intent.category.LAUNCHER" /> 37 <category android:name="android.intent.category.DEFAULT" /> 38 </intent-filter> 39 </activity> 40 <activity 41 android:name=".StreamSharingActivity" 42 android:label="@string/app_name_stream_sharing" 43 android:exported="true" 44 android:theme="@style/NoTitleTheme"> 45 <intent-filter> 46 <action android:name="android.intent.action.MAIN" /> 47 <category android:name="android.intent.category.LAUNCHER" /> 48 </intent-filter> 49 </activity> 50 </application> 51 52</manifest> 53