Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.59 KB | None | 0 0
  1. <!-- io.flutter.app.FlutterApplication is an android.app.Application that
  2. calls FlutterMain.startInitialization(this); in its onCreate method.
  3. In most cases you can leave this as-is, but you if you want to provide
  4. additional functionality it is fine to subclass or reimplement
  5. FlutterApplication and put your custom class here. -->
  6.  
  7. <uses-permission android:name="android.permission.INTERNET"/>
  8. <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
  9. <application
  10. android:name="io.flutter.app.FlutterApplication"
  11. android:label="Motive Booster"
  12. android:icon="@mipmap/ic_launcher">
  13. <activity
  14. android:name=".MainActivity"
  15. android:launchMode="singleTop"
  16. android:theme="@style/LaunchTheme"
  17. android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
  18. android:hardwareAccelerated="true"
  19. android:windowSoftInputMode="adjustResize">
  20. <!-- This keeps the window background of the activity showing
  21. until Flutter renders its first frame. It can be removed if
  22. there is no splash screen (such as the default splash screen
  23. defined in @style/LaunchTheme). -->
  24. <meta-data
  25. android:name="io.flutter.app.android.SplashScreenUntilFirstFrame"
  26. android:value="true" />
  27. <intent-filter>
  28. <action android:name="android.intent.action.MAIN"/>
  29. <category android:name="android.intent.category.LAUNCHER"/>
  30. </intent-filter>
  31. </activity>
  32. </application>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement