允许 Android 9 Pie 中的所有网络连接:HTTP 和 HTTPS
在 Android 9 Pie 中,默认情况下强制执行使用 TLS 的加密连接,使未加密的请求失败。为了适应需要处理不同连接类型请求的应用程序,Android 提供了多种启用 HTTP 和 HTTPS 连接的选项。
使用 AndroidManifest.xml
最简单的方法就是在
<application android:usesCleartextTraffic="true"> ... </application>
使用 network_security_config.xml
要进行更精细的控制,Android 9 Pie 引入了 networkSecurityConfig 资源。此文件允许您为应用程序指定自定义网络安全配置。要为所有请求启用明文流量,请在 res/xml 目录中创建一个名为 network_security_config.xml 的文件,其中包含以下内容:
<?xml version="1.0" encoding="utf-8"?> <network-security-config> <base-config cleartextTrafficPermitted="true"> <trust-anchors> <certificates src="system" /> </trust-anchors> </base-config> </network-security-config>
在清单中引用 network_security_config.xml
创建 network_security_config.xml 文件后,请在
<?xml version="1.0" encoding="utf-8"?> <manifest ...> <application android:networkSecurityConfig="@xml/network_security_config"> ... </application> </manifest>
通过实现这些更改,您的应用将能够通过 Android 9 Pie 中的 HTTP 和 HTTPS 连接发出请求,确保与两种类型的网络交互。
以上是如何在我的 Android 9 Pie 应用程序中允许 HTTP 和 HTTPS 连接?的详细内容。更多信息请关注PHP中文网其他相关文章!