15 lines
499 B
XML
15 lines
499 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<network-security-config xmlns:tools="http://schemas.android.com/tools">
|
|
|
|
<!-- Explicitly enable cleartext traffic communication because users might use their own network -->
|
|
<base-config
|
|
cleartextTrafficPermitted="true"
|
|
tools:ignore="InsecureBaseConfiguration" />
|
|
|
|
<debug-overrides>
|
|
<trust-anchors>
|
|
<!-- Trust user added CAs while debuggable only -->
|
|
<certificates src="user" />
|
|
</trust-anchors>
|
|
</debug-overrides>
|
|
</network-security-config> |