我正在使用stetho lib 来调试我的应用程序。
摇篮:
debugCompile 'com.facebook.stetho:stetho:1.4.1'
debugCompile 'com.uphyca:stetho_realm:2.0.0'
应用类:
if (BuildConfig.DEBUG) {
Stetho.initialize(..);
}
但是如果我需要创建一个发布版本,我必须每次评论:
import com.facebook.stetho.Stetho;
import com.uphyca.stetho_realm.RealmInspectorModulesProvider;
如何向编译器显示这些库仅用于调试?我们可以在不创建额外类、使用注释或类似的东西的情况下评论两行吗?