2

当我尝试在我的 Android 应用程序中使用 stetho-timber 库时,我遇到了这个问题:

错误:模块 'com.facebook.stetho:stetho-timber:1.3.1' 依赖于一个或多个 Android 库,但它是一个 jar

怎么了?!

4

1 回答 1

1

在检查了它的代码后,我发现它使用了木材 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,使用起来非常棒,试一试!:)

于 2016-10-09T17:27:10.503 回答