• 欢迎访问搞代码网站,推荐使用最新版火狐浏览器和Chrome浏览器访问本网站!
  • 如果您觉得本站非常有看点,那么赶紧使用Ctrl+D 收藏搞代码吧

独乐乐不如众乐乐你的项目还在纠结用日志打印log么Android开发okhttp3便捷拦截监听

android 搞代码 4年前 (2022-03-01) 16次浏览 已收录 0个评论
文章目录[隐藏]

SimpleInterceptor

SimpleInterceptor 是Android OkHttp客户端的的拦挡接口工具,为的是不便测试或开发,疾速查找问题。

环境要求

  1. Android 4.1+
  2. OkHttp 3.x or 4.x
  3. androidx

git地址

github地址 :https://gitee.com/dileber/SimpleInterceptor
如果感觉不错 github 给个星
正告

应用此拦截器时生成和存储的数据可能蕴含敏感信息,如受权或Cookie头,以及申请和响应主体的内容。
由此,其只能用于调试过程,不可公布到线上

配置
project : build.gradle

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

版本于okhttp关联:
如果app 集成的是okhttp3 3.+版本那么请选用 3.0版本代码
如果app 集成的是okhttp3 4.+版本那么请选用 4.0版本代码

okhttp3 3.+
dependencies {

    debugImplementation 'com.github.smartbackme.SimpleInterceptor:simpleinterceptor-debug:3.0'
    releaseImplementation 'com.github.smartbackme.SimpleInterceptor:simpleinterceptor-release:3.0'
}
or

okhttp3 4.+
dependencies {

    debugImplementation 'com.github.smartbackme.SimpleInterceptor:simpleinterceptor-debug:4.0'
    releaseImplementation 'com.github.smartbackme.SimpleInterceptor:simpleinterceptor-release:4.0'
}

应用:

OkHttpClient.Builder()
            .addInterceptor(SimpleInterceptor(context))
            .build()

搞代码网(gaodaima.com)提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发送到邮箱[email protected],我们会在看到邮件的第一时间内为您处理,或直接联系QQ:872152909。本网站采用BY-NC-SA协议进行授权
转载请注明原文链接:独乐乐不如众乐乐你的项目还在纠结用日志打印log么Android开发okhttp3便捷拦截监听
喜欢 (0)
[搞代码]
分享 (0)
发表我的评论
取消评论

表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址