Add network security config allowing plaintext for Android P

This commit is contained in:
Cameron Gutman 2018-03-07 10:58:02 -08:00
parent 3fd0f20e10
commit 15857efd36
2 changed files with 6 additions and 0 deletions

View File

@ -32,6 +32,7 @@
<application
android:allowBackup="true"
android:fullBackupContent="@xml/backup_rules"
android:networkSecurityConfig="@xml/network_security_config"
android:isGame="true"
android:banner="@drawable/atv_banner"
android:appCategory="game"

View File

@ -0,0 +1,5 @@
<base-config cleartextTrafficPermitted="true">
<trust-anchors>
<certificates src="system" />
</trust-anchors>
</base-config>