ionic 打包android@6出现xml/network_security_config not found解决方案

不知道为何,需要手动将android\app\src\main\res\xml中的network_security_config.xml复制一份到android\res\xml中才可以打包完成。
 
若是没有network_security_config.xml文件,则需要进行新建:
 
 
 
<?xml version="1.0" encoding="utf-8"?>
<network-security-config>
<domain-config cleartextTrafficPermitted="true">
    <domain includeSubdomains="true">localhost</domain>
</domain-config>
</network-security-config>

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.duanlonglong.com/qdjy/214.html