如何解决 Android P DownloadManager stopping with "Cleartext HTTP traffic to 127.0.0.1 not permitted"?
How to solve Android P DownloadManager stopping with "Cleartext HTTP traffic to 127.0.0.1 not permitted"?
我已经定义了一个自定义网络安全配置,并按照建议将其包含在我的清单中
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
编辑:在 "fixing" 这个问题之后更新(2018 年 8 月 21 日)似乎在安装应用程序几个小时后,DownloadManager 神秘地停止接受明文 HTTP。
我无法解释发生了什么。如果我重新启动设备一段时间后一切正常,那么 DownloadManager 会再次拒绝明文。我将此记为 Android P 错误,希望得到解决。
编辑 2:更新(2019 年 1 月 17 日)我的 pixel2 现在是 运行 android 9,带有 2019 年 1 月 5 日的补丁,我不再看到这个问题(所以远的)。我猜自 8 月以来,这个问题在某个补丁中得到了解决。
创建 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"
将 BASE_URL 协议从 http://... 替换为 https://
打开清单
添加android:usesCleartextTraffic="true"
我已经定义了一个自定义网络安全配置,并按照建议将其包含在我的清单中
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
编辑:在 "fixing" 这个问题之后更新(2018 年 8 月 21 日)似乎在安装应用程序几个小时后,DownloadManager 神秘地停止接受明文 HTTP。
我无法解释发生了什么。如果我重新启动设备一段时间后一切正常,那么 DownloadManager 会再次拒绝明文。我将此记为 Android P 错误,希望得到解决。
编辑 2:更新(2019 年 1 月 17 日)我的 pixel2 现在是 运行 android 9,带有 2019 年 1 月 5 日的补丁,我不再看到这个问题(所以远的)。我猜自 8 月以来,这个问题在某个补丁中得到了解决。
创建 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"
将 BASE_URL 协议从 http://... 替换为 https://
打开清单
添加android:usesCleartextTraffic="true"