Skip to content

【Android】 Android开发工具之http请求日志打印

License

Notifications You must be signed in to change notification settings

ZhangLang001/HttpCanary

Repository files navigation

HttpCanary

Android网络请求日志打印输出

Download GitHub issues GitHub forks GitHub stars GitHub license


效果展示

http_logohttp_logo

依赖

debugImplementation  'fairy.easy.httpcanary:httpcanary:{latestVersion}'
releaseImplementation  'fairy.easy.httpcanary:httpcanary-no-op:{latestVersion}'
//androidX使用
//debugImplementation  'fairy.easy.httpcanary:httpcanary-androidx:{latestVersion}'

调用方式

public class App extends Application {

    @Override
    public void onCreate() {
        super.onCreate();
        HttpCanary.install(this);
    }
}

注意事项

  1. targetSdkVersion设置为28以下
  2. 添加1.8版本
 compileOptions {
        targetCompatibility 1.8
        sourceCompatibility 1.8
    }

About

【Android】 Android开发工具之http请求日志打印

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages