From 296305f8f6c9db1ef987c6e142e6c224828eb195 Mon Sep 17 00:00:00 2001 From: Scott Merchant Date: Thu, 19 Dec 2024 18:06:29 +0100 Subject: [PATCH] Fix http:// support on android app (#733) --- front/apps/mobile/app.config.ts | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/front/apps/mobile/app.config.ts b/front/apps/mobile/app.config.ts index afb76113..fa9c1206 100644 --- a/front/apps/mobile/app.config.ts +++ b/front/apps/mobile/app.config.ts @@ -70,7 +70,14 @@ const config: ExpoConfig = { }, }, plugins: [ - "expo-build-properties", + [ + "expo-build-properties", + { + android: { + usesCleartextTraffic: true, + }, + }, + ], "expo-localization", [ "react-native-video",