本仓库仅为兼容OkHttp3.12.x, 支持Android4.4开发. 主仓库为OkHttp最新版本

Overview

不仅仅是网络请求的异步任务库

使用文档 | 备用访问


Android上不是最强网络任务库, 基于OkHttp且完美支持其所有函数组件, 支持协程高并发网络请求


Net 1.x 版本为RxJava实现
Net 2.x 版本为协程实现(开发者无需掌握协程也可以使用)
Net 3.x 版本为OkHttp实现, 不限定OkHttp版本


欢迎贡献代码/问题


主要功能

  • Kotlin
  • 协程(不懂协程也可上手)
  • 并发/串行请求
  • 队列/同步请求
  • 快速切换线程
  • DSL作用域编程
  • 配合ViewModel
  • 数据转换器
  • 队列/同步请求返回Result
  • 自动JSON解析
  • 自动处理下拉刷新和上拉加载
  • 自动处理分页加载
  • 自动缺省页
  • 自动处理生命周期
  • 自动处理加载对话框
  • 自动错误信息吐司
  • 自动异常捕获(定位到请求)
  • 使用任意泛型(String/Response/File/List/Map/Pair...)解析数据
  • Request可存储键值对Tag
  • Request支持Id/Group分组
  • 日志记录器(解决日志过长展示不清晰数据加密等问题, 比抓包更强大)
  • 并发请求返回最快请求结果
  • 全局取消请求/自动取消请求
  • 协程作用域支持错误和结束回调
  • 支持先强制读取缓存后网络请求二次刷新
  • 内置超强轮循器(倒计时)
  • 监听上传/下载进度信息(使用时间, 每秒速度, 剩余时间...)

安装

如果你不是在 Android 4.4 (API level 19)上开发建议使用最新版本: Net, 本仓库属于其兼容库

在项目根目录的 build.gradle 添加仓库

allprojects {
    repositories {
        // ...
        maven { url 'https://jitpack.io' }
    }
}

在 module 的 build.gradle 添加依赖

// 协程库(版本可自定)
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.9'
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.9'

// OkHttp3.12.x(限此版本号以下)
implementation "com.squareup.okhttp3:okhttp:3.12.0"
implementation 'com.github.liangjingkanji:Net-okhttp3:3.0.11'

// 支持自动下拉刷新和缺省页的(可选)
implementation 'com.github.liangjingkanji:BRV:1.3.22'

Contribute

supported by JetBrains

License

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
You might also like...
Comments
  • v3.4.8未能成功内置okhttp:3.12.13

    v3.4.8未能成功内置okhttp:3.12.13

    问题描述

    Net-okhttp3:3.4.8 未能成功内置okhttp:3.12.13

    期望行为

    如何复现

    implementation("com.github.liangjingkanji:Net-okhttp3:3.4.8")
    implementation("com.github.Txca:Net-okhttp3:3.4.6-R2")
    

    分别使用以上依赖,> Task :app:dependencies

    截图

    1 2 3

    版本

    • Net: 3.4.8
    • OkHttp: -
    • Gradle: 7.3.3
    • Android Studio: 2021.2.1 Patch 1
    • Android: -
    opened by TxcA 32
  • MultiDex优化

    MultiDex优化

    1. 既然是 <API21 专用,那么sample的App需继承MultiDexApplication(或其它实现方法),否则必崩MultiDex

    2. 由于app 依赖 Net-okhttp3 仅编译时依赖 okhttp3,导致启动时若直接调用Net大概率会导致NoClassDefFoundError or NoSuchMethodError。原因为MultiDex并不一定100%能处理好复杂依赖情况。最佳解决办法当然是multiDexKeepFile,这样对于用户可以随时更新依赖的okhttp版本。但是对于一个已经基本宣布不再更新的okhttp:3.12.x,这里可以直接使用api来依赖,降低集成难度。square在okhttp:3.12.10时也说明了这个问题 -> Supporting a full decade of Android releases on our 3.12.x branch is tricky!

    3. 由于API21开始才默认开启TLSv1.1和TLSv1.2,所以新增了一个useLegacyTLS()的方法。用于快捷解决javax.net.ssl.SSLProtocolException: SSL handshake aborted: ssl=0xb82109a0: Failure in SSL library, usually a protocol errorokhttp issues #4053

       NetConfig.initialize(...){
           ...
           useLegacyTLS()
       }
    

    题外话: 我看了下com.drake.net.compatible.OkHttpClient 是2022-04-22 #d26e1068 新增了一些扩展,用于适配okhttp4.x的一些习惯,但是2022-04-30 Net-okhttp3:3.4.6的包里却没有这些扩展...

    opened by TxcA 10
Releases(3.5.2)
Owner
劉強東
一個不將就的鍵盤俠
劉強東