Skip to content

Latest commit

 

History

History
55 lines (38 loc) · 1.47 KB

README.md

File metadata and controls

55 lines (38 loc) · 1.47 KB

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
    }