Advertisement
Guest User

Untitled

a guest
Jul 18th, 2019
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Dart 2.34 KB | None | 0 0
  1. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  2.     package="com.example.iris_flutter">
  3.  
  4.     <!-- io.flutter.app.FlutterApplication is an android.app.Application that
  5.          calls FlutterMain.startInitialization(this); in its onCreate method.
  6.          In most cases you can leave this as-is, but you if you want to provide
  7.          additional functionality it is fine to subclass or reimplement
  8.          FlutterApplication and put your custom class here. -->
  9.     <application
  10.         android:name="io.flutter.app.FlutterApplication"
  11.         android:label="Gramado Summit"
  12.         android:icon="@mipmap/ic_launcher">
  13.         <meta-data
  14.     android:name="com.google.firebase.messaging.default_notification_color"
  15.     android:resource="@color/colorAccent" />
  16.         <activity
  17.             android:name=".MainActivity"
  18.             android:launchMode="singleTop"
  19.             android:theme="@style/LaunchTheme"
  20.             android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
  21.             android:hardwareAccelerated="true"
  22.             android:windowSoftInputMode="adjustResize">
  23.             <!-- This keeps the window background of the activity showing
  24.                  until Flutter renders its first frame. It can be removed if
  25.                  there is no splash screen (such as the default splash screen
  26.                  defined in @style/LaunchTheme). -->
  27.             <meta-data
  28.                 android:name="io.flutter.app.android.SplashScreenUntilFirstFrame"
  29.                 android:value="true" />
  30.             <intent-filter>
  31.                 <action android:name="android.intent.action.MAIN"/>
  32.                 <category android:name="android.intent.category.LAUNCHER"/>
  33.             </intent-filter>
  34.             <intent-filter>
  35.                 <action android:name="FLUTTER_NOTIFICATION_CLICK" />
  36.                 <category android:name="android.intent.category.DEFAULT" />
  37.             </intent-filter>
  38.         </activity>
  39.         <service
  40.             android:name="com.google.firebase.messaging.FirebaseMessagingService"
  41.             android:exported="false">
  42.             <intent-filter>
  43.                 <action android:name="com.google.firebase.MESSAGING_EVENT" />
  44.             </intent-filter>
  45.         </service>
  46.     </application>
  47. </manifest>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement