From 56f7f8595801571c8dd377ee3acd98f661ea5dfc Mon Sep 17 00:00:00 2001 From: tajniak81 <13187254+tajniak81@users.noreply.github.com> Date: Sun, 19 Jul 2026 22:28:02 +0200 Subject: [PATCH] Phone App: declare INTERNET permission for release builds MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Flutter only adds android.permission.INTERNET to the debug and profile manifests, so release APKs shipped with no network access at all — the app could not reach the API Server. Declaring it in the main manifest fixes release/production builds; debug was unaffected because its own manifest already granted it. Co-Authored-By: Claude Opus 4.8 --- Phone App/android/app/src/main/AndroidManifest.xml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Phone App/android/app/src/main/AndroidManifest.xml b/Phone App/android/app/src/main/AndroidManifest.xml index 745c0df..9ca0cce 100644 --- a/Phone App/android/app/src/main/AndroidManifest.xml +++ b/Phone App/android/app/src/main/AndroidManifest.xml @@ -1,4 +1,8 @@ + +