|
@@ -1,10 +1,13 @@
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
package="tech.soit.flutter_tetris">
|
|
|
- <!-- io.flutter.app.FlutterApplication is an android.app.Application that
|
|
|
- calls FlutterMain.startInitialization(this); in its onCreate method.
|
|
|
- In most cases you can leave this as-is, but you if you want to provide
|
|
|
- additional functionality it is fine to subclass or reimplement
|
|
|
- FlutterApplication and put your custom class here. -->
|
|
|
+
|
|
|
+ <uses-permission android:name="android.permission.INTERNET" />
|
|
|
+ <uses-permission android:name="android.permission.CHANGE_WIFI_MULTICAST_STATE" />
|
|
|
+ <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
|
|
|
+ <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
|
|
+ <uses-permission android:name="android.permission.CHANGE_WIFI_STATE" />
|
|
|
+ <uses-permission android:name="android.permission.CHANGE_NETWORK_STATE" />
|
|
|
+
|
|
|
<application
|
|
|
|
|
|
android:label="flutter_tetris"
|
|
@@ -12,6 +15,7 @@
|
|
|
<activity
|
|
|
android:name=".MainActivity"
|
|
|
android:launchMode="singleTop"
|
|
|
+ android:exported="true"
|
|
|
android:theme="@style/LaunchTheme"
|
|
|
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
|
|
|
android:hardwareAccelerated="true"
|