Android app does not reconizes user certificates.

Android app does not recognizes SSL certificates added by the user. WedDAVs in local networks requires SSL certificates to be added by the user. However, for the Android app, the only valid certificates are the system ones.

Updating the network_security_config.xml to:


<?xml version="1.0" encoding="utf-8"?>
<network-security-config>
<domain-config cleartextTrafficPermitted="true">
<domain includeSubdomains="true">arxiv.org</domain>
<domain includeSubdomains="true">home.arpa</domain>
<domain includeSubdomains="true">local</domain>
</domain-config>
<base-config>
<trust-anchors>
<certificates src="system" />
<certificates src="user" />
</trust-anchors>
</base-config>
</network-security-config>


solves the issue.
Sign In or Register to comment.