github传送门android
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);
}
}
复制代码
compileOptions {
targetCompatibility 1.8
sourceCompatibility 1.8
}
复制代码