【问题标题】:Plugin [id: 'com.google.gms.google-services'] was not found in any of the following sources [duplicate]在以下任何来源中都找不到插件 [id: 'com.google.gms.google-services']
【发布时间】:2021-05-14 12:22:49
【问题描述】:

我在项目 gradle 中使用此版本没有错误

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

但是当我改为4.3.7时:

Plugin [id: 'com.google.gms.google-services'] was not found in any of the following sources:

* Try:
Run with --info or --debug option to get more log output. Run with --scan to get full insights.

* Exception is:
org.gradle.api.plugins.UnknownPluginException: Plugin [id: 'com.google.gms.google-services'] was not found in any of the following sources:

- Gradle Core Plugins (plugin is not in 'org.gradle' namespace)
- Plugin Repositories (plugin dependency must include a version number for this source)

App gradle 开头(错误来自第 4 行):

plugins {
    id 'com.android.application'
    id 'com.getkeepsafe.dexcount'
    id 'com.google.gms.google-services'
    id 'com.google.firebase.firebase-perf'
    id 'com.google.firebase.crashlytics'
    id 'kotlin-android'
    id 'kotlin-kapt'
    id 'kotlin-parcelize'
}

项目 gradle 以:

buildscript {
    ext.kotlin_version = '1.5.0'
    repositories {
        google()
        mavenCentral()
        maven { url 'https://dl.bintray.com/kotlin/kotlin-eap' }
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:4.2.1'
        classpath 'com.google.gms:google-services:4.3.7'
        classpath "com.getkeepsafe.dexcount:dexcount-gradle-plugin:2.1.0-RC01"
        classpath "com.google.firebase:perf-plugin:1.4.0"
        classpath "com.google.firebase:firebase-crashlytics-gradle:2.6.1"
        classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
    }
}

在 Google maven 存储库中存在此版本,但我无法以某种方式应用它:https://maven.google.com/web/index.html?q=google-services#com.google.gms:google-services:4.3.7

我尝试在 gradle-wrapper.properties 使用最新的 gradle 6.9、7.0 和 7.0.1

【问题讨论】:

标签: android android-gradle-plugin google-play-services


【解决方案1】:

请改用版本4.3.8,有关上下文请参见github issue

【讨论】:

【解决方案2】:

使用classpath 'com.google.gms:google-services:4.3.5' 而不是版本4.3.7 这可能是库的问题

【讨论】:

  • 仍在使用这个旧版本。只想使用最新版本..
猜你喜欢
  • 1970-01-01
  • 2021-12-22
  • 2022-09-20
  • 2020-07-28
  • 1970-01-01
  • 2022-07-30
  • 2017-02-14
相关资源
最近更新 更多