From 9f98ef70013b7695d47a6567afd95b19a9e0e1f9 Mon Sep 17 00:00:00 2001 From: doodlezucc <electerminator@gmail.com> Date: Wed, 25 Oct 2023 10:50:45 +0200 Subject: [PATCH] enable internet permission on android --- android/app/src/main/AndroidManifest.xml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml index 13e88bf..0b39d2b 100644 --- a/android/app/src/main/AndroidManifest.xml +++ b/android/app/src/main/AndroidManifest.xml @@ -1,4 +1,5 @@ <manifest xmlns:android="http://schemas.android.com/apk/res/android"> + <uses-permission android:name="android.permission.INTERNET" /> <application android:label="better_untis" android:name="${applicationName}" @@ -16,12 +17,12 @@ while the Flutter UI initializes. After that, this theme continues to determine the Window background behind the Flutter UI. --> <meta-data - android:name="io.flutter.embedding.android.NormalTheme" - android:resource="@style/NormalTheme" - /> + android:name="io.flutter.embedding.android.NormalTheme" + android:resource="@style/NormalTheme" + /> <intent-filter> - <action android:name="android.intent.action.MAIN"/> - <category android:name="android.intent.category.LAUNCHER"/> + <action android:name="android.intent.action.MAIN" /> + <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> <!-- Don't delete the meta-data below. @@ -30,4 +31,4 @@ android:name="flutterEmbedding" android:value="2" /> </application> -</manifest> +</manifest> \ No newline at end of file -- GitLab