Main coves client
1<manifest xmlns:android="http://schemas.android.com/apk/res/android">
2 <application
3 android:label="coves_flutter"
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:taskAffinity=""
13 android:theme="@style/LaunchTheme"
14 android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
15 android:hardwareAccelerated="true"
16 android:windowSoftInputMode="adjustResize">
17 <!-- Specifies an Android theme to apply to this Activity as soon as
18 the Android process has started. This theme is visible to the user
19 while the Flutter UI initializes. After that, this theme continues
20 to determine the Window background behind the Flutter UI. -->
21 <meta-data
22 android:name="io.flutter.embedding.android.NormalTheme"
23 android:resource="@style/NormalTheme"
24 />
25 <intent-filter>
26 <action android:name="android.intent.action.MAIN"/>
27 <category android:name="android.intent.category.LAUNCHER"/>
28 </intent-filter>
29
30 </activity>
31
32 <!-- flutter_web_auth_2 CallbackActivity for OAuth callbacks -->
33 <!-- This MUST be a separate activity to prevent go_router interference -->
34 <activity
35 android:name="com.linusu.flutter_web_auth_2.CallbackActivity"
36 android:exported="true">
37 <intent-filter>
38 <action android:name="android.intent.action.VIEW"/>
39 <category android:name="android.intent.category.DEFAULT"/>
40 <category android:name="android.intent.category.BROWSABLE"/>
41
42 <!-- OAuth callback URL scheme -->
43 <data android:scheme="dev.workers.brettmay0212.lingering-darkness-50a6"/>
44 </intent-filter>
45 </activity>
46 <!-- Don't delete the meta-data below.
47 This is used by the Flutter tool to generate GeneratedPluginRegistrant.java -->
48 <meta-data
49 android:name="flutterEmbedding"
50 android:value="2" />
51 </application>
52 <!-- Required to query activities that can process text, see:
53 https://developer.android.com/training/package-visibility and
54 https://developer.android.com/reference/android/content/Intent#ACTION_PROCESS_TEXT.
55
56 In particular, this is used by the Flutter engine in io.flutter.plugin.text.ProcessTextPlugin. -->
57 <queries>
58 <intent>
59 <action android:name="android.intent.action.PROCESS_TEXT"/>
60 <data android:mimeType="text/plain"/>
61 </intent>
62 </queries>
63</manifest>