From 2e986fa298bfd8a32228278807423be5a66db700 Mon Sep 17 00:00:00 2001 From: Damyan Ivanov Date: Sat, 30 Nov 2019 23:26:48 +0200 Subject: [PATCH] permit cleartext traffic on P clearly using https is better, but this is something outside of MoLe's control, so let the users use whatever they want The profile editor already warns when authorization is used over plain http --- app/src/main/AndroidManifest.xml | 5 ++++- .../main/res/xml/network_security_config.xml | 20 +++++++++++++++++++ 2 files changed, 24 insertions(+), 1 deletion(-) create mode 100644 app/src/main/res/xml/network_security_config.xml diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index 35f37475..51950343 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -15,6 +15,7 @@ ~ along with MoLe. If not, see . --> @@ -27,7 +28,9 @@ android:label="@string/app_name" android:roundIcon="@drawable/app_icon" android:supportsRtl="true" - android:theme="@style/AppTheme"> + android:networkSecurityConfig="@xml/network_security_config" + android:theme="@style/AppTheme" + tools:ignore="GoogleAppIndexingWarning"> + + + + \ No newline at end of file -- 2.39.2