一、应用
1、查看数本地数据
2、查看网络请求
二、使用引用
1、引入依赖包
//debug工具包
debugImplementation "com.facebook.stetho:stetho:$rootProject.ext.stethoVersion"
debugImplementation "com.facebook.stetho:stethookhttp3:$rootProject.ext.stethoVersion"
2、在Application中添加初始化代码及添加okhttp网络拦截器
private void setStetho() {
Stetho.initializeWithDefaults(this);
}
OkGo.getInstance().getOkHttpClientBuilder()
.addNetworkInterceptor(new StethoInterceptor());
网友评论