Advertisement
Guest User

Untitled

a guest
Sep 19th, 2019
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.24 KB | None | 0 0
  1. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  2. package="com.rappiddesign.chronicallysimple">
  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="rebel_flux"
  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. <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/>
  33. <uses-permission android:name="android.permission.VIBRATE" />
  34. <receiver android:name="com.dexterous.flutterlocalnotifications.ScheduledNotificationReceiver" />
  35. <receiver android:name="com.dexterous.flutterlocalnotifications.ScheduledNotificationBootReceiver">
  36. <intent-filter>
  37. <action android:name="android.intent.action.BOOT_COMPLETED"></action>
  38. </intent-filter>
  39. </receiver>
  40. </application>
  41. </manifest>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement