We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb0cfa7 commit 3aab019Copy full SHA for 3aab019
example/android/app/src/main/AndroidManifest.xml
@@ -16,6 +16,7 @@
16
android:label="Instabug - Flutter"
17
android:name="${applicationName}"
18
android:icon="@mipmap/ic_launcher"
19
+ android:networkSecurityConfig="@xml/network_security_config"
20
android:usesCleartextTraffic="true">
21
<activity
22
android:name=".MainActivity"
example/android/app/src/main/res/xml/network_security_config.xml
@@ -0,0 +1,12 @@
1
+<?xml version="1.0" encoding="utf-8"?>
2
+<network-security-config>
3
+ <domain-config cleartextTrafficPermitted="true">
4
+ <domain includeSubdomains="true">localhost</domain>
5
+ </domain-config>
6
+ <base-config>
7
+ <trust-anchors>
8
+ <certificates src="system" />
9
+ <certificates src="user" />
10
+ </trust-anchors>
11
+ </base-config>
12
+</network-security-config>
0 commit comments