今天解决了一个关于OKhtt引入的问题关于okhttp3找不到导入文件
创建network_config.xml文件
<?xml version="1.0" encoding="utf-8"?> <network-security-config xmlns:tools="http://schemas.android.com/tools"> <base-config cleartextTrafficPermitted="true" tools:ignore="InsecureBaseConfiguration"> <trust-anchors> <certificates src="system" /> </trust-anchors> </base-config> </network-security-config>
然后在android.xml文件中导入android:networkSecurityConfig="@xml/network_config"即可解决。
标签:xml,27,network,博客,2024,android,config From: https://www.cnblogs.com/xuechenhao173/p/18111626