Android9.0网络请求解决方案_小笔记

本人小白一个,同事支招才完成功能.自己纠结半天.
解决方案:
1:在 res 下新建一个 xml 目录,然后创建一个名为:networks.xml 文件 ,该文件内容如下:



    

2:AndroidManifest.xml application 标签内应用上面的xml配置:

 		android:name=".app.MyApp"
        android:allowBackup="true"
        android:hardwareAccelerated="false"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:networkSecurityConfig="@xml/networks"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:theme="@style/NoAppTheme"

你可能感兴趣的:(Android9.0)