1<manifest xmlns:android="http://schemas.android.com/apk/res/android"> 2 <application 3 android:label="@string/app_name" 4 android:name="${applicationName}" 5 android:icon="@mipmap/ic_launcher" 6 android:usesCleartextTraffic="true" 7 android:networkSecurityConfig="@xml/network_security_config"> 8 <activity 9 android:name=".MainActivity" 10 android:exported="true" 11 android:launchMode="singleTop" 12 android:theme="@style/LaunchTheme" 13 android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode" 14 android:hardwareAccelerated="true" 15 android:windowSoftInputMode="adjustResize"> 16 <!-- Specifies an Android theme to apply to this Activity as soon as 17 the Android process has started. This theme is visible to the user 18 while the Flutter UI initializes. After that, this theme continues 19 to determine the Window background behind the Flutter UI. --> 20 <meta-data 21 android:name="io.flutter.embedding.android.NormalTheme" 22 android:resource="@style/NormalTheme" 23 /> 24 <intent-filter> 25 <action android:name="android.intent.action.MAIN"/> 26 <category android:name="android.intent.category.LAUNCHER"/> 27 </intent-filter> 28 29 </activity> 30 31 <!-- flutter_web_auth_2 CallbackActivity for OAuth callbacks --> 32 <!-- Uses private-use URI scheme per atproto spec (RFC 8252) --> 33 <activity 34 android:name="com.linusu.flutter_web_auth_2.CallbackActivity" 35 android:exported="true"> 36 <intent-filter> 37 <action android:name="android.intent.action.VIEW"/> 38 <category android:name="android.intent.category.DEFAULT"/> 39 <category android:name="android.intent.category.BROWSABLE"/> 40 <data android:scheme="social.coves"/> 41 </intent-filter> 42 </activity> 43 <!-- Don't delete the meta-data below. 44 This is used by the Flutter tool to generate GeneratedPluginRegistrant.java --> 45 <meta-data 46 android:name="flutterEmbedding" 47 android:value="2" /> 48 </application> 49 <!-- Required to query activities that can process text, see: 50 https://developer.android.com/training/package-visibility and 51 https://developer.android.com/reference/android/content/Intent#ACTION_PROCESS_TEXT. 52 53 In particular, this is used by the Flutter engine in io.flutter.plugin.text.ProcessTextPlugin. --> 54 <queries> 55 <intent> 56 <action android:name="android.intent.action.PROCESS_TEXT"/> 57 <data android:mimeType="text/plain"/> 58 </intent> 59 </queries> 60</manifest>