Allow cleartext for kiwix.org

This commit is contained in:
mhutti1 2019-02-17 23:40:51 +00:00 committed by Isaac Hutt
parent b3de56016f
commit f721d03bf0
2 changed files with 8 additions and 1 deletions

View File

@ -22,7 +22,8 @@
android:icon="@mipmap/kiwix_icon"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
android:theme="@style/AppTheme"
android:networkSecurityConfig="@xml/network_security_config">
<activity
android:name=".splash.SplashActivity"
android:label="@string/app_name"

View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<network-security-config>
<domain-config cleartextTrafficPermitted="true">
<domain includeSubdomains="true">kiwix.org</domain>
</domain-config>
</network-security-config>