/**
* Toggle whether debug logging is enabled.
* <p>
* <b>WARNING:</b> Enabling this will result in excessive object allocation. This should be only
* be used for debugging Picasso behavior. Do NOT pass {@code BuildConfig.DEBUG}.
*/
@SuppressWarnings("UnusedDeclaration") // Public API.
public void setLoggingEnabled(boolean enabled) {
loggingEnabled = enabled;
}
正在学习毕加索的源码,不知道为什么不能用BuildConfig.DEBUG
?</p>
我知道 Eclipse/ADT 中存在一些问题,但它在 Android Studio/Gradle 中仍然不可靠吗?还是其他一些原因?