Gradle任务 assembleDebug 在与Firebase同步时失败。

huangapple go评论77阅读模式
英文:

Gradle task assembleDebug failed while sync with firebase

问题

以下是翻译好的内容:

  • 发生了什么问题:
    无法确定任务 ':app:compileDebugJavaWithJavac' 的依赖关系。
    > 无法解决配置 ':app:debugCompileClasspath' 的所有任务依赖关系。
    > 找不到 com.google.firebase:firebase-analytics:。
    所需依赖项:
    项目 :app

  • 尝试:
    使用 --stacktrace 选项运行以获取堆栈跟踪信息。使用 --info 或 --debug 选项运行以获取更多日志输出。使用 --scan 运行以获取完整的洞察信息。

  • https://help.gradle.org 获取更多帮助。

构建失败,用时 2 秒
异常:Gradle 任务 assembleDebug 以退出代码 1 失败

英文:
  • What went wrong:
    Could not determine the dependencies of task ':app:compileDebugJavaWithJavac'.
    > Could not resolve all task dependencies for configuration ':app:debugCompileClasspath'.
    > Could not find com.google.firebase:firebase-analytics:.
    Required by:
    project :app

  • Try:
    Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.

  • Get more help at https://help.gradle.org

BUILD FAILED in 2s
Exception: Gradle task assembleDebug failed with exit code 1

答案1

得分: 0

请尝试使用:

implementation 'com.google.firebase:firebase-core:16.0.1'

而不是:

implementation 'com.google.firebase:firebase-analytics'

英文:

Please try using:

implementation 'com.google.firebase:firebase-core:16.0.1'

instead of:

implementation 'com.google.firebase:firebase-analytics'

huangapple
  • 本文由 发表于 2020年10月4日 14:19:04
  • 转载请务必保留本文链接:https://go.coder-hub.com/64191718.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定