|
| 1 | +<manifest xmlns:android="http://schemas.android.com/apk/res/android" |
| 2 | + package="com.flutterflow.fluttermet"> |
| 3 | + <uses-permission android:name="android.permission.INTERNET"/> |
| 4 | + <application |
| 5 | + android:label="flutter_met" |
| 6 | + android:icon="@mipmap/ic_launcher" |
| 7 | + android:requestLegacyExternalStorage="true"> |
| 8 | + <meta-data android:name="com.facebook.sdk.ApplicationId" |
| 9 | + android:value="@string/facebook_app_id"/> |
| 10 | + <activity android:name="com.facebook.FacebookActivity" |
| 11 | + android:configChanges= |
| 12 | + "keyboard|keyboardHidden|screenLayout|screenSize|orientation" |
| 13 | + android:label="@string/app_name" /> |
| 14 | + <activity |
| 15 | + android:name="com.facebook.CustomTabActivity" |
| 16 | + android:exported="true"> |
| 17 | + <intent-filter> |
| 18 | + <action android:name="android.intent.action.VIEW" /> |
| 19 | + <category android:name="android.intent.category.DEFAULT" /> |
| 20 | + <category android:name="android.intent.category.BROWSABLE" /> |
| 21 | + <data android:scheme="@string/fb_login_protocol_scheme" /> |
| 22 | + </intent-filter> |
| 23 | + </activity> |
| 24 | + |
| 25 | + <activity |
| 26 | + android:name=".MainActivity" |
| 27 | + android:launchMode="singleTop" |
| 28 | + android:theme="@style/LaunchTheme" |
| 29 | + android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode" |
| 30 | + android:hardwareAccelerated="true" |
| 31 | + android:windowSoftInputMode="adjustResize"> |
| 32 | + <!-- Specifies an Android theme to apply to this Activity as soon as |
| 33 | + the Android process has started. This theme is visible to the user |
| 34 | + while the Flutter UI initializes. After that, this theme continues |
| 35 | + to determine the Window background behind the Flutter UI. --> |
| 36 | + <meta-data |
| 37 | + android:name="io.flutter.embedding.android.NormalTheme" |
| 38 | + android:resource="@style/NormalTheme" |
| 39 | + /> |
| 40 | + <!-- Displays an Android View that continues showing the launch screen |
| 41 | + Drawable until Flutter paints its first frame, then this splash |
| 42 | + screen fades out. A splash screen is useful to avoid any visual |
| 43 | + gap between the end of Android's launch screen and the painting of |
| 44 | + Flutter's first frame. --> |
| 45 | + <meta-data |
| 46 | + android:name="io.flutter.embedding.android.SplashScreenDrawable" |
| 47 | + android:resource="@drawable/launch_background" |
| 48 | + /> |
| 49 | + <intent-filter> |
| 50 | + <action android:name="android.intent.action.MAIN"/> |
| 51 | + <category android:name="android.intent.category.LAUNCHER"/> |
| 52 | + </intent-filter> |
| 53 | + </activity> |
| 54 | + <!-- Don't delete the meta-data below. |
| 55 | + This is used by the Flutter tool to generate GeneratedPluginRegistrant.java --> |
| 56 | + <meta-data |
| 57 | + android:name="flutterEmbedding" |
| 58 | + android:value="2" /> |
| 59 | + </application> |
| 60 | +</manifest> |
0 commit comments