Retrofit一一道来
2020-08-28 本文已影响0人
孙晓刚_0dcd
1、Retrofit的创建
new Retrofit.Builder()
.client(OkHttpClientManager.getClient())
.baseUrl(BuildConfig.APP_API_DOMAIN)
.addConverterFactory(FastJsonConverterFactory.create())
.addCallAdapterFactory(RxJavaCallAdapterFactory.create())
.build();