gradle 获取错误“不能确定构造器参数#1:缺少工厂类型的参数....“正在尝试构建Android-SimpleLocation

20jt8wwn  于 2022-11-14  发布在  Android
关注(0)|答案(1)|浏览(86)

在尝试构建Android-SimpleLocation时,我得到以下错误:

Unable to determine constructor argument #1: missing parameter of type Factory, or no service of type Factory<LoggingManagerInternal>.
Open File (which is a link to my build.gradle file)

有什么想法吗?

zc0qhyus

zc0qhyus1#

您正在使用下列依赖项,

classpath 'com.github.dcendents:android-maven-gradle-plugin:1.3'

使用以下或更高版本更新这些内容。

classpath 'com.github.dcendents:android-maven-gradle-plugin:1.5'

相关问题