Advertisement
Guest User

AndroidManifest.xml

a guest
Jan 22nd, 2020
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.82 KB | None | 0 0
  1. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  2.    package="com.example.sesale">
  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="sesale"
  12.        android:icon="@mipmap/ic_launcher">
  13.         <meta-data android:name="com.google.android.geo.API_KEY"
  14.            android:value="AIzaSyCFMsQrZK6tGN7XlYkik8Iyb9JhF1M9KyE"/>
  15.         <activity
  16.            android:name=".MainActivity"
  17.            android:launchMode="singleTop"
  18.            android:theme="@style/LaunchTheme"
  19.            android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
  20.            android:hardwareAccelerated="true"
  21.            android:windowSoftInputMode="adjustResize">
  22.             <!-- This keeps the window background of the activity showing
  23.                 until Flutter renders its first frame. It can be removed if
  24.                 there is no splash screen (such as the default splash screen
  25.                 defined in @style/LaunchTheme). -->
  26.             <meta-data
  27.                android:name="io.flutter.app.android.SplashScreenUntilFirstFrame"
  28.                android:value="true" />
  29.             <intent-filter>
  30.                 <action android:name="android.intent.action.MAIN"/>
  31.                 <category android:name="android.intent.category.LAUNCHER"/>
  32.             </intent-filter>
  33.         </activity>
  34.     </application>
  35. </manifest>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement