AndroidManifest.xml 1.7 KB

12345678910111213141516171819202122232425262728293031323334
  1. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  2. xmlns:tools="http://schemas.android.com/tools"
  3. package="com.rhyme.r_scan_example">
  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="r_scan_example"
  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>
  33. </manifest>