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);
}
}
- targetSdkVersion设置为28以下
- 添加1.8版本
compileOptions {
targetCompatibility 1.8
sourceCompatibility 1.8
}