Nenhuma descrição

AndroidManifest.xml 1.9KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  2. package="com.example.example">
  3. <!-- The INTERNET permission is required for development. Specifically,
  4. flutter needs it to communicate with the running application
  5. to allow setting breakpoints, to provide hot reload, etc.
  6. -->
  7. <uses-permission android:name="android.permission.INTERNET"/>
  8. <!-- io.flutter.app.FlutterApplication is an android.app.Application that
  9. calls FlutterMain.startInitialization(this); in its onCreate method.
  10. In most cases you can leave this as-is, but you if you want to provide
  11. additional functionality it is fine to subclass or reimplement
  12. FlutterApplication and put your custom class here. -->
  13. <application
  14. android:name="io.flutter.app.FlutterApplication"
  15. android:label="example"
  16. android:icon="@mipmap/ic_launcher">
  17. <activity
  18. android:name=".MainActivity"
  19. android:launchMode="singleTop"
  20. android:theme="@style/LaunchTheme"
  21. android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|layoutDirection|fontScale|screenLayout|density"
  22. android:hardwareAccelerated="true"
  23. android:windowSoftInputMode="adjustResize">
  24. <!-- This keeps the window background of the activity showing
  25. until Flutter renders its first frame. It can be removed if
  26. there is no splash screen (such as the default splash screen
  27. defined in @style/LaunchTheme). -->
  28. <meta-data
  29. android:name="io.flutter.app.android.SplashScreenUntilFirstFrame"
  30. android:value="true" />
  31. <intent-filter>
  32. <action android:name="android.intent.action.MAIN"/>
  33. <category android:name="android.intent.category.LAUNCHER"/>
  34. </intent-filter>
  35. </activity>
  36. </application>
  37. </manifest>