gpt4 book ai didi

android - google-services 插件无法检测到 com.google.android.gms 或 com.google.firebase 的任何版本 - 奇怪的行为

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:14:27 24 4
gpt4 key购买 nike

我有一个包含 4 个模块的项目:

  • 应用(主要)
  • 公共(public)库
  • C
  • D

我已将 firebase 正确设置为此处的状态:https://firebase.google.com/docs/android/setup

在我的应用模块中,我不使用任何额外的库,只使用模块依赖项:

dependencies {
debugCompile project(path: ':common-lib', configuration: 'debug')
releaseCompile project(path: ':common-lib', configuration: 'release')
}

在我的common-lib 模块中,我使用了 firebase 库:

dependencies {
(...)
compile 'com.google.firebase:firebase-core:11.2.0'
compile 'com.google.firebase:firebase-crash:11.2.0'
compile 'com.google.firebase:firebase-messaging:11.2.0'
compile 'com.google.firebase:firebase-config:11.2.0'
compile 'com.google.firebase:firebase-ads:11.2.0'
}

在这种情况下项目编译但我收到消息:

google-services plugin could not detect any version for com.google.android.gms or com.google.firebase, default version: 9.0.0 will be used.
please apply google-services plugin at the bottom of the build file.

有趣的是,当我将 common-lib firebase 依赖项复制到我的应用程序模块时,消息消失了。

这是一个错误吗?我是不是设置错了什么?我的应用程序输出文件是否包含正确的 11.2.0 版本的 firebase 库,或者如消息所说的那样包含 9.0.0?


已编辑

项目build.gradle:

buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.3.3'
classpath 'com.google.gms:google-services:3.1.0'
}
}

allprojects {
repositories {
jcenter()
maven {
url 'https://maven.google.com'
// Alternative URL is 'https://dl.google.com/dl/android/maven2/'
}
maven { url 'https://jitpack.io' }
}
}

应用模块build.gradle

apply plugin: 'com.android.application'

android {
(...)
}


dependencies {

debugCompile project(path: ':common-lib', configuration: 'debug')
debugTestCompile project(path: ':common-lib', configuration: 'debugTest')
releaseCompile project(path: ':common-lib', configuration: 'release')

}

apply plugin: 'com.google.gms.google-services'

common-lib moudle build.gradle

apply plugin: 'com.android.library'


android {
(...)
}
dependencies {
(...)
//firebase
compile 'com.google.firebase:firebase-core:11.2.0'
compile 'com.google.firebase:firebase-crash:11.2.0'
compile 'com.google.firebase:firebase-messaging:11.2.0'
compile 'com.google.firebase:firebase-config:11.2.0'
compile 'com.google.firebase:firebase-ads:11.2.0'
}

最佳答案

你试过添加这个吗:

apply plugin: 'com.google.gms.google-services' 在 gradle 文件的根级别?

关于android - google-services 插件无法检测到 com.google.android.gms 或 com.google.firebase 的任何版本 - 奇怪的行为,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46077013/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com