From 7f65ce0e8473181c0ff713a83b944d2c970e32c9 Mon Sep 17 00:00:00 2001 From: Laura Neto <12862535+lauraneto@users.noreply.github.com> Date: Sun, 19 Oct 2025 19:22:30 +0200 Subject: [PATCH] Allow HTTP (non secure) requests in Android app --- android/app/src/main/AndroidManifest.xml | 3 ++- capacitor.config.ts | 4 +++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml index 8dc3eb2..13e1d3e 100644 --- a/android/app/src/main/AndroidManifest.xml +++ b/android/app/src/main/AndroidManifest.xml @@ -6,7 +6,8 @@ android:label="@string/app_name" android:roundIcon="@mipmap/ic_launcher_round" android:supportsRtl="true" - android:theme="@style/AppTheme"> + android:theme="@style/AppTheme" + android:usesCleartextTraffic="true">