|
1 |
| -<manifest xmlns:android="http://schemas.android.com/apk/res/android" |
2 |
| - package="com.example.flutter_firebase_calendar"> |
3 |
| - <!-- io.flutter.app.FlutterApplication is an android.app.Application that |
4 |
| - calls FlutterMain.startInitialization(this); in its onCreate method. |
5 |
| - In most cases you can leave this as-is, but you if you want to provide |
6 |
| - additional functionality it is fine to subclass or reimplement |
7 |
| - FlutterApplication and put your custom class here. --> |
| 1 | +<manifest xmlns:android="http://schemas.android.com/apk/res/android"> |
8 | 2 | <application
|
9 |
| - android:name="io.flutter.app.FlutterApplication" |
10 |
| - android:label="flutter_firebase_calendar" |
| 3 | + android:label="flutter_application" |
| 4 | + android:name="${applicationName}" |
11 | 5 | android:icon="@mipmap/ic_launcher">
|
12 | 6 | <activity
|
13 | 7 | android:name=".MainActivity"
|
| 8 | + android:exported="true" |
14 | 9 | android:launchMode="singleTop"
|
| 10 | + android:taskAffinity="" |
15 | 11 | android:theme="@style/LaunchTheme"
|
16 | 12 | android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
|
17 | 13 | android:hardwareAccelerated="true"
|
|
24 | 20 | android:name="io.flutter.embedding.android.NormalTheme"
|
25 | 21 | android:resource="@style/NormalTheme"
|
26 | 22 | />
|
27 |
| - <!-- Displays an Android View that continues showing the launch screen |
28 |
| - Drawable until Flutter paints its first frame, then this splash |
29 |
| - screen fades out. A splash screen is useful to avoid any visual |
30 |
| - gap between the end of Android's launch screen and the painting of |
31 |
| - Flutter's first frame. --> |
32 |
| - <meta-data |
33 |
| - android:name="io.flutter.embedding.android.SplashScreenDrawable" |
34 |
| - android:resource="@drawable/launch_background" |
35 |
| - /> |
36 | 23 | <intent-filter>
|
37 | 24 | <action android:name="android.intent.action.MAIN"/>
|
38 | 25 | <category android:name="android.intent.category.LAUNCHER"/>
|
|
44 | 31 | android:name="flutterEmbedding"
|
45 | 32 | android:value="2" />
|
46 | 33 | </application>
|
| 34 | + <!-- Required to query activities that can process text, see: |
| 35 | + https://developer.android.com/training/package-visibility and |
| 36 | + https://developer.android.com/reference/android/content/Intent#ACTION_PROCESS_TEXT. |
| 37 | +
|
| 38 | + In particular, this is used by the Flutter engine in io.flutter.plugin.text.ProcessTextPlugin. --> |
| 39 | + <queries> |
| 40 | + <intent> |
| 41 | + <action android:name="android.intent.action.PROCESS_TEXT"/> |
| 42 | + <data android:mimeType="text/plain"/> |
| 43 | + </intent> |
| 44 | + </queries> |
47 | 45 | </manifest>
|
0 commit comments