We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8f0be76 commit 76710ceCopy full SHA for 76710ce
app/src/main/AndroidManifest.xml
@@ -12,6 +12,7 @@
12
android:fullBackupContent="@xml/backup_rules"
13
android:icon="@mipmap/ic_launcher"
14
android:label="@string/app_name"
15
+ android:networkSecurityConfig="@xml/network_security_config"
16
android:supportsRtl="false"
17
android:theme="@style/Theme.M3KHelper"
18
tools:replace="android:supportsRtl"
app/src/main/res/xml/network_security_config.xml
@@ -0,0 +1,8 @@
1
+<?xml version="1.0" encoding="utf-8"?>
2
+<network-security-config>
3
+ <domain-config cleartextTrafficPermitted="true">
4
+ <domain includeSubdomains="true">127.0.0.1</domain>
5
+ <domain includeSubdomains="true">0.0.0.0</domain>
6
+ <domain includeSubdomains="true">::1</domain>
7
+ </domain-config>
8
+</network-security-config>
0 commit comments