前言
-
你的测验团队是否和你抱怨,网络抓包东西不好用,Https抓不到,下降测验功率
-
你:测验环境用http不就好了,测验:那线上呢?你:那用下面方式
- 运用抓包东西,导出证书
- 手机端装置证书
- 设置系统代理
测验:那你教我~
-
之前我写过一篇文章:DebugTools——一个规划开发者支撑东西库中曾说到过关于网络抓包,但是得到反馈说全部都堆在一起了,不太好用,所以这次做了一次晋级
-
晋级后效果如下
- 项目地址:github.com/Peakmain/De…
DebugTools功用
- 支撑检查最新接口前100条数据
- 支撑正序和倒序排序
- 可检查每个接口的Header,请求参数与返回结果
- 支撑分享给开发
How To
- Step 1. Add the JitPack repository to your build file Add it in your root build.gradle at the end of repositories:
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
- Step 2. Add the dependency
dependencies {
implementation "com.github.Peakmain:DebugTools:+"
}
怎么运用
一、首先在okHttp中增加拦截器
OkHttpClient.Builder builder = new OkHttpClient.Builder();
builder.addInterceptor(new com.peakmain.debug.log.HttpLoggingInterceptor());
二、显现网络抓包东西页面
findViewById<TextView>(R.id.tv_name).setOnClickListener {
val clazz = Class.forName("com.peakmain.debug.DebugToolDialogFragment")
val target = clazz.getConstructor().newInstance() as DebugToolDialogFragment
target.show(supportFragmentManager, "debug_tool")
}
三、一切Activity显现悬浮按钮点击显现网络抓包东西
- 能够运用我的另一个第三方库:github.com/Peakmain/Ba… 的SuspensionView
- demo代码如下,在自己的根本Activity中调用下方代码即可
fun addSuspensionView(activity: AppCompatActivity) {
val suspensionView = SuspensionView(
activity, com.atour.atourlife.R.drawable.ui_ic_suspension_setting,
56f, 60f, 20f, null, 0
)
activity.addContentView(
suspensionView,
FrameLayout.LayoutParams(
FrameLayout.LayoutParams.MATCH_PARENT,
FrameLayout.LayoutParams.MATCH_PARENT
)
)
suspensionView.setSuspensionViewClick {
var clazz: Class<*>? = null
try {
clazz = Class.forName("com.peakmain.debug.DebugToolDialogFragment")
val target: DebugToolDialogFragment =
clazz.getConstructor().newInstance() as DebugToolDialogFragment
target.show(activity.getSupportFragmentManager(), "debug_tool")
} catch (e: Exception) {
throw RuntimeException(e)
}
}
}
Jenkins智能操控开关
- Android在项目的build.gradle(一般都是app/build.gradle),利用project.property获取特点,比如我这里特点名是IS_LOG_CONSONLE_ENABLE
def releaseLogConsoleEnable = project.property('IS_LOG_CONSONLE_ENABLE')
- buildTypes中通过buildConfigField办法,将特点增加BuildConfig
buildTypes {
release {
buildConfigField "boolean", "releaseLogConsoleEnable", releaseLogConsoleEnable
}
debug {
buildConfigField "boolean", "releaseLogConsoleEnable", releaseLogConsoleEnable
}
}
- 显现开关按钮的地方,增加代码开关
if(BuildConfig.releaseLogConsoleEnable) {
addSuspensionView(this);
}
至此Android相关代码装备完结,接下来是Jenkins 4. Jenkins增加选项设置特点为IS_LOG_CONSONLE_ENABLE
- Jenkins gradle装备代码-PIS_LOG_CONSONLE_ENABLE=$IS_LOG_CONSONLE_ENABLE
./gradlew -Dgradle.user.home=$GRADLE_HOME clean assemble$buildType -b ${WORKSPACE}/app/build.gradle -PIS_LOG_CONSONLE_ENABLE=$IS_LOG_CONSONLE_ENABLE
最后
- 上述便是《Android网络抓包东西晋级与Jenkins智能操控开关》的全部内容,大家如果有什么问题,能够在下方留言哦
- 如果你觉得文章和项目对你有点帮助,欢迎点赞来踩哦,你的star是我的动力