热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

关于android:与firebase11.8.0和googleservices插件3.1.2冲突

Conflictwithfirebase11.8.0andgoogle-servicesplugin3.1.2


Conflict with firebase 11.8.0 and google-services plugin 3.1.2


我与 firebase 11.8.0 和 google-services 插件 3.1.2 存在明显冲突。构建失败,建议我改用 11.4.2 版的 firebase。

我的 gradle 构建文件的相关摘录:

根 build.gradle










1
2
3
4
5
6
7
8
9
10


buildscript {

    repositories {

        google()

        ...

    }

    dependencies {

        classpath 'com.google.gms:google-services:3.1.2'

        ...

    }

}


应用程序 build.gradle:










1
2
3
4
5
6
7
8
9


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

repositories {

    google()

    ....

}

dependencies {

    implementation"com.google.firebase:firebase-core:11.8.0"

    ....

}


我已经正确生成了 firebase 应用文件:










1
2


./app/src/debug/google-services.json

./app/src/release/google-services.json


当我使用 ./gradlew clean assembleDebug 构建时,构建失败并出现以下错误:










1
2
3
4
5
6
7
8
9


> Task :app:processDebugGoogleServices FAILED

Found com.google.firebase:firebase-core:11.8.0, but version 11.4.2 is needed for the google-services plugin.

FAILURE: Build failed with an exception.

* What went wrong:

Execution failed for task ':app:processDebugGoogleServices'.

> Please fix the version conflict either by updating the version of the google-services plugin (information about the latest version is available at https://bintray.com/android/android-tools/com.google.gms.google-services/) or updating the version of com.google.android.gms to 11.4.2.





解决方法是将此行移到应用程序 build.gradle 文件的底部(它不应该在顶部):










1


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


这是在文档中指定的:

https://firebase.google.com/docs/android/setup

Then, in your module Gradle file (usually the app/build.gradle), add

the apply plugin line at the bottom of the file to enable the Gradle

plugin:










1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16


apply plugin: 'com.android.application'

android {

  // ...

}

dependencies {

  // ...

  compile 'com.google.firebase:firebase-core:11.8.0'

  // Getting a"Could not find" error? Make sure you have

  // added the Google maven respository to your root build.gradle

}

// ADD THIS AT THE BOTTOM

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










推荐阅读
  • UNP 第9章:主机名与地址转换
    本章探讨了用于在主机名和数值地址之间进行转换的函数,如gethostbyname和gethostbyaddr。此外,还介绍了getservbyname和getservbyport函数,用于在服务器名和端口号之间进行转换。 ... [详细]
  • 本文详细介绍了如何在Linux系统上安装和配置Smokeping,以实现对网络链路质量的实时监控。通过详细的步骤和必要的依赖包安装,确保用户能够顺利完成部署并优化其网络性能监控。 ... [详细]
  • DNN Community 和 Professional 版本的主要差异
    本文详细解析了 DotNetNuke (DNN) 的两种主要版本:Community 和 Professional。通过对比两者的功能和附加组件,帮助用户选择最适合其需求的版本。 ... [详细]
  • 本文介绍如何使用阿里云的fastjson库解析包含时间戳、IP地址和参数等信息的JSON格式文本,并进行数据处理和保存。 ... [详细]
  • 本文将介绍如何编写一些有趣的VBScript脚本,这些脚本可以在朋友之间进行无害的恶作剧。通过简单的代码示例,帮助您了解VBScript的基本语法和功能。 ... [详细]
  • 本文详细介绍如何使用Python进行配置文件的读写操作,涵盖常见的配置文件格式(如INI、JSON、TOML和YAML),并提供具体的代码示例。 ... [详细]
  • 本文详细介绍了 Dockerfile 的编写方法及其在网络配置中的应用,涵盖基础指令、镜像构建与发布流程,并深入探讨了 Docker 的默认网络、容器互联及自定义网络的实现。 ... [详细]
  • 使用 Azure Service Principal 和 Microsoft Graph API 获取 AAD 用户列表
    本文介绍了一段通用代码示例,该代码不仅能够操作 Azure Active Directory (AAD),还可以通过 Azure Service Principal 的授权访问和管理 Azure 订阅资源。Azure 的架构可以分为两个层级:AAD 和 Subscription。 ... [详细]
  • 如何配置Unturned服务器及其消息设置
    本文详细介绍了Unturned服务器的配置方法和消息设置技巧,帮助用户了解并优化服务器管理。同时,提供了关于云服务资源操作记录、远程登录设置以及文件传输的相关补充信息。 ... [详细]
  • 本文详细记录了在基于Debian的Deepin 20操作系统上安装MySQL 5.7的具体步骤,包括软件包的选择、依赖项的处理及远程访问权限的配置。 ... [详细]
  • 优化ListView性能
    本文深入探讨了如何通过多种技术手段优化ListView的性能,包括视图复用、ViewHolder模式、分批加载数据、图片优化及内存管理等。这些方法能够显著提升应用的响应速度和用户体验。 ... [详细]
  • 本文详细介绍了如何使用 Yii2 的 GridView 组件在列表页面实现数据的直接编辑功能。通过具体的代码示例和步骤,帮助开发者快速掌握这一实用技巧。 ... [详细]
  • 本文深入探讨 MyBatis 中动态 SQL 的使用方法,包括 if/where、trim 自定义字符串截取规则、choose 分支选择、封装查询和修改条件的 where/set 标签、批量处理的 foreach 标签以及内置参数和 bind 的用法。 ... [详细]
  • 前言--页数多了以后需要指定到某一页(只做了功能,样式没有细调)html ... [详细]
  • 尽管某些细分市场如WAN优化表现不佳,但全球运营商路由器和交换机市场持续增长。根据最新研究,该市场预计在2023年达到202亿美元的规模。 ... [详细]
author-avatar
CoCo培培_409
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有