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 de93ab9 commit 0380365Copy full SHA for 0380365
platform/android/AndroidManifest.xml.in
@@ -48,6 +48,7 @@
48
android:label="@APP_NAME@"
49
android:icon="@AT@drawable/@APP_ICON@"
50
android:usesCleartextTraffic="true"
51
+ android:networkSecurityConfig="@xml/network_security_config"
52
android:requestLegacyExternalStorage="true"
53
android:theme="@style/AppTheme">
54
<activity
platform/android/res/xml/network_security_config.xml
@@ -0,0 +1,8 @@
1
+<network-security-config>
2
+ <base-config>
3
+ <trust-anchors>
4
+ <certificates src="user"/>
5
+ <certificates src="system"/>
6
+ </trust-anchors>
7
+ </base-config>
8
+</network-security-config>
0 commit comments