当我尝试在我的Android应用程序中使用Stetho-timber库时,我遇到了这个问题:
错误:模块'com.facebook.stetho:stetho-timber:1.3.1'取决于一个
或更多Android库,但是是一个jar
怎么了?!
最佳答案
检查其代码后,我发现它使用的是木材v3.0.1!
只需将其添加到build.gradle依赖项标签中,即可在stetho库中排除木材,
因为它是旧版本并与新版本冲突:
dependencies {
compile ("com.facebook.stetho:stetho-timber:1.3.1") {
exclude group: "com.jakewharton.timber", module: "timber"
}
.
.
.
我最近找到了Facebook Stetho Library,使用起来很棒,请尝试一下! :)