Skip to content

BeforeConfig

StormKid edited this page Jul 2, 2019 · 1 revision

1、在mainifest中申请Internet权限

<uses-permission android:name="android.permission.INTERNET"/>

2、适配Android 9.0 http请求问题

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
          ...>

    ...

    <application
            ...
            android:usesCleartextTraffic="true"
            android:networkSecurityConfig="@xml/net_config"
            >
        ...
    </application>

</manifest>

注意:已为项目使用者们配好xml,直接使用即可