From 98710ff39f1d80ab134c2aac6e82533cc54bba44 Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Thu, 19 Feb 2026 15:24:15 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=92=20Disable=20cleartext=20traffic=20?= =?UTF-8?q?in=20Android=20manifest?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Added android:usesCleartextTraffic="false" to the application tag in AndroidManifest.xml to prevent unencrypted HTTP traffic and protect against man-in-the-middle attacks. Co-authored-by: visatk <261909119+visatk@users.noreply.github.com> --- android/app/src/main/AndroidManifest.xml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml index de8dcec..bfaa660 100644 --- a/android/app/src/main/AndroidManifest.xml +++ b/android/app/src/main/AndroidManifest.xml @@ -2,7 +2,8 @@ + android:icon="@mipmap/ic_launcher" + android:usesCleartextTraffic="false">