Advertisement
harmonyV

test

Mar 16th, 2025
38
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Diff 2.62 KB | None | 0 0
  1.         android:label="GutZen"
  2.         android:name="${applicationName}"
  3.         android:icon="@mipmap/launcher_icon">
  4.         <activity
  5.             android:name=".MainActivity"
  6.             android:exported="true"
  7.             android:launchMode="singleTop"
  8.             android:taskAffinity=""
  9.             android:theme="@style/LaunchTheme"
  10.             android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
  11.             android:hardwareAccelerated="true"
  12.             android:windowSoftInputMode="adjustResize">
  13.             <!-- Specifies an Android theme to apply to this Activity as soon as
  14.                  the Android process has started. This theme is visible to the user
  15.                  while the Flutter UI initializes. After that, this theme continues
  16.                  to determine the Window background behind the Flutter UI. -->
  17.             <meta-data
  18.               android:name="io.flutter.embedding.android.NormalTheme"
  19.               android:resource="@style/NormalTheme"
  20.               />
  21.             <intent-filter>
  22.                 <action android:name="android.intent.action.MAIN"/>
  23.                 <category android:name="android.intent.category.LAUNCHER"/>
  24.                 <action android:name="android.intent.action.VIEW" />
  25.                 <category android:name="android.intent.category.DEFAULT" />
  26.                 <category android:name="android.intent.category.BROWSABLE" />
  27.                 <!-- Accepts URIs that begin with YOUR_SCHEME://YOUR_HOST -->
  28.                 <data
  29.                     android:scheme="myapp"
  30.                     android:host="login-callback" />
  31.             </intent-filter>
  32.         </activity>
  33.         <!-- Don't delete the meta-data below.
  34.              This is used by the Flutter tool to generate GeneratedPluginRegistrant.java -->
  35.         <meta-data
  36.             android:name="flutterEmbedding"
  37.             android:value="2" />
  38.         <meta-data
  39.             android:name="com.posthog.posthog.AUTO_INIT"
  40.             android:value="false" />
  41.  
  42.     </application>
  43.     <!-- Required to query activities that can process text, see:
  44.          https://developer.android.com/training/package-visibility and
  45.          https://developer.android.com/reference/android/content/Intent#ACTION_PROCESS_TEXT.
  46.  
  47.          In particular, this is used by the Flutter engine in io.flutter.plugin.text.ProcessTextPlugin. -->
  48.     <queries>
  49.         <intent>
  50.             <action android:name="android.intent.action.PROCESS_TEXT"/>
  51.             <data android:mimeType="text/plain"/>
  52.         </intent>
  53.     </queries>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement