今天解決了一個關於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"即可解決。