You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			92 lines
		
	
	
		
			4.7 KiB
		
	
	
	
		
			XML
		
	
			
		
		
	
	
			92 lines
		
	
	
		
			4.7 KiB
		
	
	
	
		
			XML
		
	
| <manifest xmlns:android="http://schemas.android.com/apk/res/android"
 | |
|     xmlns:tools="http://schemas.android.com/tools"
 | |
|     package="com.mohem_flutter_app">
 | |
| 
 | |
|     <uses-permission android:name="android.permission.INTERNET" />
 | |
|     <uses-permission android:name="android.permission.USE_BIOMETRIC" />
 | |
|     <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
 | |
|     <uses-permission android:name="android.permission.NFC" />
 | |
|     <uses-permission android:name="android.permission.CAMERA" />
 | |
|     <uses-permission android:name="android.permission.POST_NOTIFICATIONS" />
 | |
|     <uses-permission android:name="android.permission.READ_MEDIA_IMAGES" />
 | |
| 
 | |
|     <uses-permission android:name="android.permission.USE_FULL_SCREEN_INTENT" tools:node="remove" />
 | |
| 
 | |
|     <!-- Required only if your app needs to access videos
 | |
|          that other apps created. -->
 | |
|     <uses-permission android:name="android.permission.READ_MEDIA_VIDEO" />
 | |
|     <!-- Required only if your app needs to access audio files
 | |
|          that other apps created. -->
 | |
|     <uses-permission android:name="android.permission.READ_MEDIA_AUDIO" />
 | |
|     <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
 | |
|     <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
 | |
| <!--    <uses-permission android:name="android.permission.MANAGE_EXTERNAL_STORAGE" />-->
 | |
|     <!--    Chat Web RTC Calling -->
 | |
|     <uses-feature android:name="android.hardware.camera" />
 | |
|     <uses-feature android:name="android.hardware.camera.autofocus" />
 | |
| 
 | |
|     <uses-permission android:name="android.permission.RECORD_AUDIO" />
 | |
|     <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
 | |
|     <uses-permission android:name="android.permission.CHANGE_NETWORK_STATE" />
 | |
|     <uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" />
 | |
| 
 | |
|     <application
 | |
|         android:allowBackup="false"
 | |
|         android:icon="@mipmap/ic_launcher"
 | |
|         android:label="MoheM"
 | |
|         android:extractNativeLibs="true"
 | |
|         android:networkSecurityConfig="@xml/network_security_config"
 | |
|         android:roundIcon="@mipmap/ic_launcher_round">
 | |
|         <provider
 | |
|             android:name="androidx.core.content.FileProvider"
 | |
|             android:authorities="${applicationId}.fileProvider"
 | |
|             android:exported="false"
 | |
|             android:grantUriPermissions="true"
 | |
|             tools:replace="android:authorities">
 | |
|             <meta-data
 | |
|                 android:name="android.support.FILE_PROVIDER_PATHS"
 | |
|                 android:resource="@xml/filepaths"
 | |
|                 tools:replace="android:resource" />
 | |
|         </provider>
 | |
|         <activity
 | |
|             android:name=".MainActivity"
 | |
|             android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
 | |
|             android:exported="true"
 | |
|             android:hardwareAccelerated="true"
 | |
|             android:launchMode="singleTop"
 | |
|             android:theme="@style/LaunchTheme"
 | |
|             android:windowSoftInputMode="adjustResize">
 | |
|             <!-- Specifies an Android theme to apply to this Activity as soon as
 | |
|                  the Android process has started. This theme is visible to the user
 | |
|                  while the Flutter UI initializes. After that, this theme continues
 | |
|                  to determine the Window background behind the Flutter UI. -->
 | |
|             <meta-data
 | |
|                 android:name="io.flutter.embedding.android.NormalTheme"
 | |
|                 android:resource="@style/NormalTheme" />
 | |
|             <!-- Displays an Android View that continues showing the launch screen
 | |
|                  Drawable until Flutter paints its first frame, then this splash
 | |
|                  screen fades out. A splash screen is useful to avoid any visual
 | |
|                  gap between the end of Android's launch screen and the painting of
 | |
|                  Flutter's first frame. -->
 | |
|             <meta-data
 | |
|                 android:name="io.flutter.embedding.android.SplashScreenDrawable"
 | |
|                 android:resource="@drawable/launch_background" />
 | |
| 
 | |
|             <intent-filter>
 | |
|                 <action android:name="android.intent.action.MAIN" />
 | |
|                 <category android:name="android.intent.category.LAUNCHER" />
 | |
|             </intent-filter>
 | |
|             <intent-filter>
 | |
|                 <action android:name="FLUTTER_NOTIFICATION_CLICK" />
 | |
|                 <category android:name="android.intent.category.DEFAULT" />
 | |
|             </intent-filter>
 | |
|         </activity>
 | |
|         <!-- Don't delete the meta-data below.
 | |
|              This is used by the Flutter tool to generate GeneratedPluginRegistrant.java -->
 | |
|         <meta-data
 | |
|             android:name="flutterEmbedding"
 | |
|             android:value="2" />
 | |
| 
 | |
|     </application>
 | |
| </manifest>
 |