【发布时间】: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
【问题讨论】:
-
jar is empty...
-
我认为最新的
gradle plugin存在一些问题。我今天在这上面浪费了 2 个小时。 -
我想我会等到他们将其上传到 Maven,而不是 Google 托管 :) 现在将使用 4.3.5
标签: android android-gradle-plugin google-play-services