AndroidManifest.xml 1.5 KB

123456789101112131415161718192021222324252627282930
  1. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  2. package="com.ricemarch.fooddeliveryapp">
  3. <!-- io.flutter.app.FlutterApplication is an android.app.Application that
  4. calls FlutterMain.startInitialization(this); in its onCreate method.
  5. In most cases you can leave this as-is, but you if you want to provide
  6. additional functionality it is fine to subclass or reimplement
  7. FlutterApplication and put your custom class here. -->
  8. <application
  9. android:name="io.flutter.app.FlutterApplication"
  10. android:label="fooddeliveryapp"
  11. android:icon="@mipmap/ic_launcher">
  12. <activity
  13. android:name=".MainActivity"
  14. android:launchMode="singleTop"
  15. android:theme="@style/LaunchTheme"
  16. android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
  17. android:hardwareAccelerated="true"
  18. android:windowSoftInputMode="adjustResize">
  19. <intent-filter>
  20. <action android:name="android.intent.action.MAIN"/>
  21. <category android:name="android.intent.category.LAUNCHER"/>
  22. </intent-filter>
  23. </activity>
  24. <!-- Don't delete the meta-data below.
  25. This is used by the Flutter tool to generate GeneratedPluginRegistrant.java -->
  26. <meta-data
  27. android:name="flutterEmbedding"
  28. android:value="2" />
  29. </application>
  30. </manifest>