<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" package="com.beaker.reciperoulette"> <!-- Permissions --> <uses-permission android:name="android.permission.INTERNET" /> <uses-permission android:name="android.permission.CAMERA" tools:ignore="PermissionImpliesUnsupportedChromeOsHardware" /> <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" android:maxSdkVersion="29" /> <uses-permission android:name="android.permission.POST_NOTIFICATIONS" /> <application android:allowBackup="true" android:dataExtractionRules="@xml/data_extraction_rules" android:fullBackupContent="@xml/backup_rules" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" android:requestLegacyExternalStorage="true" android:roundIcon="@mipmap/ic_launcher_round" android:supportsRtl="true" android:theme="@style/Theme.RecipeRoulette" tools:targetApi="31"> <activity android:name=".reviews.WriteReview" android:exported="false" /> <activity android:name=".FlavorProfile" android:exported="false" /> <activity android:name=".chatroom.EnterChatRoomView" android:exported="false" /> <activity android:name=".chatroom.ChatRoomLiveView" android:exported="false" /> <activity android:name=".RecipeSelect" android:exported="false" /> <activity android:name=".RecipeDisplay" android:exported="false" /> <activity android:name=".requests.IngredientRequestView" android:exported="false" android:windowSoftInputMode="adjustNothing" /> <activity android:name=".reviews.ReviewDetailed" android:exported="false" /> <activity android:name=".reviews.RecipeFacebook" android:exported="false" /> <activity android:name=".inventory.InventoryView" android:exported="false" /> <activity android:name=".UploadGroceries" android:exported="false" /> <activity android:name=".MainMenu" android:exported="false" /> <activity android:name=".MainActivity" android:exported="true"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> <service android:name=".MyFirebaseMessagingService" android:exported="false"> <intent-filter> <action android:name="com.google.firebase.MESSAGING_EVENT" /> </intent-filter> </service> </application> </manifest>