首先附上Android P系統變動:android
https://blog.csdn.net/zhangbijun1230/article/details/79920606api
而後再附上原文地址:安全
https://blog.csdn.net/baidu_37001358/article/details/82656448網絡
由於我這邊最直接的感覺就是APP沒法訪問網絡,因此適配上只是關注這一點,是否還有其餘須要適配的點,我這裏不太清楚,只能說是看本身需求了。.net
我加上了下方的操做以後,親測mate 20等android 9.0的手機都可以使用正常,9.0如下的也無任何影響。xml
最後是修改過程:blog
在api上訪問http協議被認爲時不安全的因此須要配置:
1.在res目錄下建立xml文件夾,建立network_security_config.xml文件utf-8
<?xml version="1.0" encoding="utf-8"?>
<network-security-config>
<base-config cleartextTrafficPermitted="true" />
</network-security-config>
在AndroidManifest文件中配置 it
android:networkSecurityConfig=」@xml/network_security_config」 io