当前位置: 首页 > 知识库问答 >
问题:

在模块类中发现重复的类

黄沈浪
2023-03-14

我添加了一个dialogflow库,并出现此错误。

Duplicate class org.threeten.bp.Clock found in modules threetenbp-1.3.7-no-tzdb-no-tzdb.jar 
(org.threeten:threetenbp:1.3.7) and threetenbp-1.3.7.jar (org.threeten:threetenbp:1.3.7)
Duplicate class org.threeten.bp.Clock$FixedClock found in modules threetenbp-1.3.7-no-tzdb-no- 
tzdb.jar (org.threeten:threetenbp:1.3.7) and threetenbp-1.3.7.jar (org.threeten:threetenbp:1.3.7)
Duplicate class org.threeten.bp.Clock$OffsetClock found in modules threetenbp-1.3.7-no-tzdb-no- 
tzdb.jar (org.threeten:threetenbp:1.3.7) and threetenbp-1.3.7.jar (org.threeten:threetenbp:1.3.7)
    configurations {
    all*.exclude module: 'org.threeten.bp' //
}

    implementation ('com.google.cloud:google-cloud-dialogflow:0.117.0-alpha') {
    exclude group :"org.threeten.bp"
}

android.enableJetifier=true
android.useAndroidX=true
//com.jakeewharton.threvenabp:threvenabp:1.1.1'

Github上的build.gradle文件

共有1个答案

郭逸清
2023-03-14

在排除配置中,您没有定义名称,并且错误地传递了模块名称。

configurations {
    all{
       exclude group :"org.threeten", module: "threetenbp"
    }
}

我的完整答案在这里

 类似资料: