Skip to content

Commit 9db063d

Browse files
committed
Allow self signed certificates
Specially useful for self hosted instances that are not reachable over the internet or similar Closes #116
1 parent 32e3c0f commit 9db063d

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<network-security-config xmlns:tools="http://schemas.android.com/tools">
3+
<base-config>
4+
<trust-anchors>
5+
6+
<!-- Trust preinstalled CAs -->
7+
<certificates src="system" />
8+
9+
<!-- Additionally trust user added CAs -->
10+
<certificates
11+
src="user"
12+
tools:ignore="AcceptsUserCertificates" />
13+
</trust-anchors>
14+
</base-config>
15+
</network-security-config>

0 commit comments

Comments
 (0)