AndroidManifest.xml 1.5 KB

123456789101112131415161718192021222324252627282930
  1. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  2. package="tech.soit.flutter_tetris">
  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:label="flutter_tetris"
  10. android:icon="@mipmap/ic_launcher">
  11. <activity
  12. android:name=".MainActivity"
  13. android:launchMode="singleTop"
  14. android:theme="@style/LaunchTheme"
  15. android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
  16. android:hardwareAccelerated="true"
  17. android:windowSoftInputMode="adjustResize">
  18. <intent-filter>
  19. <action android:name="android.intent.action.MAIN"/>
  20. <category android:name="android.intent.category.LAUNCHER"/>
  21. </intent-filter>
  22. </activity>
  23. <!-- Don't delete the meta-data below.
  24. This is used by the Flutter tool to generate GeneratedPluginRegistrant.java -->
  25. <meta-data
  26. android:name="flutterEmbedding"
  27. android:value="2" />
  28. </application>
  29. </manifest>