当前位置: 首页 > 知识库问答 >
问题:

通用域名格式。谷歌。gms:google服务与Firebase插件的兼容性问题

苏运良
2023-03-14

今天,为了更新一个旧项目,我(在Android上)遇到了一个问题,我认为这与Firebase的一个插件有关。我不断发现以下错误:

失败:生成失败,出现异常。

哪里出错了:

库com.google.android.gms: play-services-base正在被[[15.0.1,15.0.1]]的其他库请求,但解析为11.8.0。禁用插件并使用./gradlew: app:依赖项检查您的依赖项树。

下面是我的pubspec文件中的一个片段,用于显示我的项目中的插件:

dependencies:
  flutter:
    sdk: flutter
  firebase_auth: ^0.5.18
  firebase_storage: ^1.0.1
  cloud_firestore: ^0.7.4
  firestore_helpers: ^2.0.5
  image_picker: ^0.2.0
  location: 1.1.6
  flutter_webview_plugin: 0.0.9+1
  font_awesome_flutter: 4.7.2
  flutter_map: ^0.0.1

  # The following adds the Cupertino Icons font to your application.
  # Use with the CupertinoIcons class for iOS style icons.
  cupertino_icons: ^0.1.0

这个片段显示了项目的当前状态,以及Firebase产品的所有新版本。
我也更新了我的build.gradle文件,当然,它们看起来像这个atm:

Android级别的构建。渐变文件:

buildscript {
    repositories {
        google()
        jcenter()
    }

    dependencies {
        classpath 'com.android.tools.build:gradle:3.0.1'
        classpath 'com.google.gms:google-services:4.0.1'
    }
}

allprojects {
    repositories {
        google()
        jcenter()
    }
}

rootProject.buildDir = '../build'
subprojects {
    project.buildDir = "${rootProject.buildDir}/${project.name}"
}
subprojects {
    project.evaluationDependsOn(':app')
}

task clean(type: Delete) {
    delete rootProject.buildDir
}

应用级别build.gradle文件:

def localProperties = new Properties()
def localPropertiesFile = rootProject.file('local.properties')
if (localPropertiesFile.exists()) {
    localPropertiesFile.withInputStream { stream ->
        localProperties.load(stream)
    }
}

def flutterRoot = localProperties.getProperty('flutter.sdk')
if (flutterRoot == null) {
    throw new GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.")
}

apply plugin: 'com.android.application'
apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"

android {
    compileSdkVersion 26
    buildToolsVersion '26.0.3'

    lintOptions {
        disable 'InvalidPackage'
    }

    defaultConfig {
        // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
        applicationId "com.test.tester"
        minSdkVersion 16
        targetSdkVersion 26
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }

    buildTypes {
        release {
            // TODO: Add your own signing config for the release build.
            // Signing with the debug keys for now, so `flutter run --release` works.
            signingConfig signingConfigs.debug
        }
        profile {
            matchingFallbacks = ['debug', 'release']
        }
    }
}

flutter {
    source '../..'
}

dependencies {
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'com.android.support.test:runner:1.0.1'
    androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
}
apply plugin: 'com.google.gms.google-services'

根据文档,我相信这就是我必须做的一切,但也许我错过了什么。
有人知道如何解决这个问题吗?

共有1个答案

苍嘉澍
2023-03-14

打开此链接,其中包含需要使用的Firebase库版本列表

 类似资料:
  • 我正在尝试使用改装将图像上载到本地服务器。下面是我的php代码。 但是我得到了这样一个错误:com.google.gson.stream.MalformedJsonException使用JsonReader.setLenient(true)在第1行第1列路径$处接受格式错误的JSON。 然后,我在初始化改装的类中添加了以下代码。 现在我得到以下错误:com.google.gson.JsonSynt

  • 我是android和admob的新手。我下载了sdk...导入了play服务库,并完成了在sdk文档上编写的所有内容。但是当我添加xml片段时: 我在错误日志中收到以下消息 通用域名格式。谷歌。Androidgms。ads.AdView未能实例化。我知道之前有人问过这个问题,但没有一个对我有用。上述错误的错误日志: 另外,我已经从开普勒切换到eclipse luna,这是导致问题的原因吗?我的xm

  • 最终解决方案 我只是个白痴。增加版本后的真正问题是,我已经应用了插件而不是在文件末尾。检查这个主题,我之前搜索得很糟糕 原始问题 我从来都不明白Gradle是怎么工作的,很抱歉问了一些愚蠢的问题。 我正面临一个问题,我不知道问题出在哪里,也不知道现在该怎么办。我有GCM的应用程序,一切都很好,直到我们添加了第二语言的应用程序。 然后我得到一个错误,即< code>google_app_id没有被翻

  • 由于我们已经从 GCM 升级到 FCM,所以我们遇到了一个问题,因为该应用程序突然需要自定义 google-services.json,而我似乎没有找到能够让我添加新应用程序并生成新文件的 API 或 cli 工具. 有人找到自动化的方法了吗?

  • 我的应用程序运行良好,谷歌地图也正常工作。我从com更改了包名。实例hellworld,这样我就可以把它放在我想要的游戏存储中,同时更新了清单,相应地更改了API键。 我的应用程序中的所有其他活动都运行良好。但是当我打开包含地图的活动时,它会抛出此错误。

  • 问题内容: 建筑: 我们有一个使用2个pubsub主题/订阅对的架构: 定期由cronjob触发主题(例如,每5分钟触发一次)。订阅是我们云功能的触发器。 主题充当我们的一项服务发布的后台作业的队列。云功能在每次执行时读取订阅,以为排队的后台作业提供服务。 这使我们可以控制后台作业的服务频率,而与将它们添加到队列的时间无关。 云功能(由触发)通过pull读取消息。它决定准备好哪些后台作业,并在成功