Advertisement
Guest User

Untitled

a guest
Mar 12th, 2019
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Dart 1.99 KB | None | 0 0
  1. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  2.     package="com.example.debtreminderbloc">
  3.  
  4.     <!-- The INTERNET permission is required for development. Specifically,
  5.          flutter needs it to communicate with the running application
  6.          to allow setting breakpoints, to provide hot reload, etc.
  7.     -->
  8.     <uses-permission android:name="android.permission.INTERNET"/>
  9.  
  10.     <!-- io.flutter.app.FlutterApplication is an android.app.Application that
  11.          calls FlutterMain.startInitialization(this); in its onCreate method.
  12.          In most cases you can leave this as-is, but you if you want to provide
  13.          additional functionality it is fine to subclass or reimplement
  14.          FlutterApplication and put your custom class here. -->
  15.     <application
  16.         android:name="io.flutter.app.FlutterApplication"
  17.         android:label="debt_reminder_bloc"
  18.         android:icon="@mipmap/ic_launcher">
  19.         <activity
  20.             android:name=".MainActivity"
  21.             android:launchMode="singleTop"
  22.             android:theme="@style/LaunchTheme"
  23.             android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|layoutDirection|fontScale|screenLayout|density"
  24.             android:hardwareAccelerated="true"
  25.             android:windowSoftInputMode="adjustResize">
  26.             <!-- This keeps the window background of the activity showing
  27.                  until Flutter renders its first frame. It can be removed if
  28.                  there is no splash screen (such as the default splash screen
  29.                  defined in @style/LaunchTheme). -->
  30.             <meta-data
  31.                 android:name="io.flutter.app.android.SplashScreenUntilFirstFrame"
  32.                 android:value="true" />
  33.             <intent-filter>
  34.                 <action android:name="android.intent.action.MAIN"/>
  35.                 <category android:name="android.intent.category.LAUNCHER"/>
  36.             </intent-filter>
  37.         </activity>
  38.     </application>
  39. </manifest>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement