Bootstrap

OkHttp工具类Kotlin版

前言:最近用java学完安卓之后,时间很充裕,觉得java写安卓代码量相对多,于是转学kotlin了OkHttp是一个优秀的网络请求框架,相对于HttpUrlConnection好用多了,并且还支持多线程高并发,所以作为一个安卓开发者非常有必要学习一下,下面开始讲解OKHttp的使用
第一步、导入依赖

implementation 'com.squareup.okhttp3:okhttp:3.14.+'

第二步、配置

只需要将第二行 usesCleartextTraffic="true"复制到你的配置文件这个位置即可

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

<application
          

             android:usesCleartextTraffic="true"
            

            android:allowBackup="true"
            android:icon="@mipmap/ic_launcher"
            android:label="@string/app_name"
            android:roundIcon="@mipmap/ic_launcher_round"
            android:supportsRtl="true"
            android:theme="@style/AppTheme" tool
;