重复类 co.touchlab.stately.collections.FunctionsKt

问题描述 投票:0回答:1
我想将

KamelMedia 库更新到最新版本,但我在构建时收到此错误:

Duplicate class co.touchlab.stately.collections.FunctionsKt found in modules stately-collections-jvm-2.0.0-rc3 (co.touchlab:stately-collections-jvm:2.0.0-rc3) and stately-iso-collections-jvm-2.0.5 (co.touchlab:stately-iso-collections-jvm:2.0.5)


我正在使用 kotlin 多平台项目,并且我也在其他模块中使用 Stately 库,但是。

我试图排除

implementation("media.kamel:kamel-image:0.9.2") { exclude( group = "co.touchlab", module = "stately-collections-jvm" <-- this library I'm using in the different module ) }
有人遇到过这个问题并知道如何解决吗?

android gradle dependencies
1个回答
0
投票
我解决了这个问题。应在从具有 KamelMedia 依赖项的模块继承的每个模块中声明排除。

也许有一天有人会发现这个解决方案很有用:)

© www.soinside.com 2019 - 2024. All rights reserved.