We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c7c8d90 commit e07dd4eCopy full SHA for e07dd4e
2 files changed
app/src/main/AndroidManifest.xml
@@ -33,6 +33,7 @@
33
android:roundIcon="@mipmap/ic_launcher_round"
34
android:label="@string/app_name"
35
android:supportsRtl="true"
36
+ android:networkSecurityConfig="@xml/network_security_config"
37
android:theme="@style/Theme.CashPilotAndroid">
38
39
<activity
app/src/main/res/xml/network_security_config.xml
@@ -0,0 +1,9 @@
1
+<?xml version="1.0" encoding="utf-8"?>
2
+<network-security-config>
3
+ <!-- CashPilot connects to a user-configured server that may use HTTP on local networks -->
4
+ <base-config cleartextTrafficPermitted="true">
5
+ <trust-anchors>
6
+ <certificates src="system" />
7
+ </trust-anchors>
8
+ </base-config>
9
+</network-security-config>
0 commit comments