我已经定义了一个自定义网络安全配置,并按照推荐的here
将其包含在清单中res / xml / network_security_config.xml:
<?xml version="1.0" encoding="utf-8"?>
<network-security-config>
<domain-config cleartextTrafficPermitted="true">
<domain includeSubdomains="true">127.0.0.1</domain>
<domain includeSubdomains="true">localhost</domain>
</domain-config>
</network-security-config>
,这是在我的 Android.manifest 中:
<application android:icon="@drawable/icon"
android:allowBackup="false"
android:usesCleartextTraffic="true"
android:networkSecurityConfig="@xml/network_security_config"
android:label="@string/app_name"
android:theme="@style/AppTheme"
android:persistent="true" >
即使在尝试通过HTTP与127.0.0.1进行通信时进行了这些更改,我也在logcat中看到了这一点:
08-09 10:50:34.395 30791 3607 D NetworkSecurityConfig: Using Network Security Config from resource network_security_config debugBuild: true
08-09 10:50:34.397 30791 3607 D NetworkSecurityConfig: Using Network Security Config from resource network_security_config debugBuild: true
08-09 10:50:34.401 30791 3607 W DownloadManager: [647] Stop requested with status HTTP_DATA_ERROR: Cleartext HTTP traffic to 127.0.0.1 not permitted
08-09 10:50:34.402 30791 3607 D DownloadManager: [647] Finished with status WAITING_TO_RETRY
编辑:“修复”此问题后更新(2018年8月21日),似乎在安装应用程序几小时后,DownloadManager神秘地停止接受明文HTTP。
我无法解释发生了什么。如果我重新启动设备,在一段时间内一切正常,则DownloadManager再次拒绝明文。我将其写为Android P错误,希望可以解决。
编辑2:更新(2019年1月17日),我的pixel2现在正在运行android 9,并从2019年1月5日开始安装了补丁程序,到目前为止我再也没有看到这个问题。我猜这是从八月开始在某个补丁中解决的。
答案 0 :(得分:20)
创建XML res / xml / network_security_config.xml
<?xml version="1.0" encoding="utf-8"?>
<network-security-config>
<base-config cleartextTrafficPermitted="true" />
</network-security-config>
在AndroidManifest.xml中的标签应用程序中引用此文件。喜欢:
android:networkSecurityConfig="@xml/network_security_config"
答案 1 :(得分:0)
将BASE_URL协议从 http:// ... 替换为 https://
答案 2 :(得分:0)