Allow self signed certificates

Specially useful for self hosted instances that are not reachable over the
internet or similar

Closes #116
This commit is contained in:
Roland Geider
2022-12-06 17:56:12 +01:00
parent 32e3c0f3b9
commit 9db063d65c

View File

@@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<network-security-config xmlns:tools="http://schemas.android.com/tools">
<base-config>
<trust-anchors>
<!-- Trust preinstalled CAs -->
<certificates src="system" />
<!-- Additionally trust user added CAs -->
<certificates
src="user"
tools:ignore="AcceptsUserCertificates" />
</trust-anchors>
</base-config>
</network-security-config>