mirror of
https://github.com/streamyfin/streamyfin.git
synced 2025-08-20 18:37:18 +02:00
16 lines
612 B
XML
16 lines
612 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<network-security-config xmlns:tools="http://schemas.android.com/tools">
|
|
<!-- Allow cleartext network traffic -->
|
|
<base-config
|
|
cleartextTrafficPermitted="true"
|
|
tools:ignore="InsecureBaseConfiguration">
|
|
<trust-anchors>
|
|
<!-- Trust pre-installed CAs -->
|
|
<certificates src="system" />
|
|
<!-- Additionally trust user added CAs -->
|
|
<certificates
|
|
src="user"
|
|
tools:ignore="AcceptsUserCertificates" />
|
|
</trust-anchors>
|
|
</base-config>
|
|
</network-security-config> |