0

我正在关注本教程,了解如何在我的 Android 应用程序中使用 Kotlin 管理 Gradle 依赖项,现在我想在我的应用程序模块中使用我的Versions对象中定义的版本(场景是我有一个开源屏幕,我想要显示库版本)。我怎样才能做到这一点?

我尝试将buildSrc目录添加到settings.gradle

include ':app', ':buildSrc' 

然后在我的build.gradle文件中,将其添加到依赖项块中:

dependencies {
    implementation project(':buildSrc')
}

但是,当我尝试编译和运行时,会抛出以下错误:

Don't know how to compute maven coordinate for artifact 'Gradle API' with component identifier of type 'class org.gradle.internal.component.local.model.OpaqueComponentIdentifier'.

并且网络上没有太多关于此错误的信息。

4

1 回答 1

0

尝试从您的设置和 build.gradle 中删除 buildSrc 模块。它自动构建并可供该项目中的所有其他模块访问。

于 2019-11-17T16:39:32.057 回答