added configuration for allowing http (cleartext) requests on Android 7 and later (sdk >= 24)

This commit is contained in:
russa
2020-10-08 18:12:59 +02:00
parent 097faad07a
commit 1c27b62148
2 changed files with 11 additions and 0 deletions
@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<network-security-config>
<domain-config cleartextTrafficPermitted="true">
<domain includeSubdomains="true">localhost</domain>
<domain includeSubdomains="true">httpbin.org</domain>
</domain-config>
</network-security-config>