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
}
複製代碼