Android Studio 错误:未找到 ID 为“com.google.gms.google-services”的插件
Posted
技术标签:
【中文标题】Android Studio 错误:未找到 ID 为“com.google.gms.google-services”的插件【英文标题】:Android Studio Error : Plugin with id 'com.google.gms.google-services' not found 【发布时间】:2021-02-27 16:21:10 【问题描述】:我是 android 开发新手。我在这个项目中使用 Firebase,但在 gradle:build 期间出现此错误
未找到 ID 为“com.google.gms.google-services”的插件。
这是我的 build.gradle 文件:
apply plugin: 'com.android.application'
apply plugin: 'com.google.gms.google-services'
android
compileSdkVersion 29
buildToolsVersion "29.0.3"
defaultConfig
applicationId "com.health.healthbloom"
minSdkVersion 17
targetSdkVersion 29
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
buildTypes
release
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
dependencies
implementation fileTree(dir: "libs", include: ["*.jar"])
implementation 'androidx.appcompat:appcompat:1.2.0'
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
implementation 'com.google.android.material:material:1.2.1'
implementation 'com.google.firebase:firebase-database:19.5.1'
implementation 'com.google.firebase:firebase-auth:20.0.1'
implementation 'com.android.support:support-annotations:28.0.0'
testImplementation 'junit:junit:4.13'
androidTestImplementation 'androidx.test.ext:junit:1.1.2'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
implementation 'pl.droidsonroids.gif:android-gif-drawable:1.2.21'
implementation 'com.hbb20:ccp:2.3.1'
implementation 'com.chaos.view:pinview:1.4.3'
我也尝试在依赖项中添加它:-
类路径'com.google.gms:google-services:3.0.0'
【问题讨论】:
插件在你的根级 build.gradle 中配置。请务必遵循文档中的所有说明。 firebase.google.com/docs/android/setup 【参考方案1】:尝试将此添加到您的 build.gradle 依赖项中:
classpath 'com.google.gms:google-services:4.3.4'
另外,删除
apply plugin:'com.google.gms.google-services'
从您的项目/build.gradle 并将其添加到您的 app/build.gradle。
你也可以在这里查看更多信息https://firebase.google.com/docs/android/setup#manually_add_firebase
【讨论】:
【参考方案2】:将此添加到依赖项没有解决:
classpath 'com.google.gms:google-services:3.0.0'
尝试添加这个:
classpath 'com.google.gms:google-services:+'
到根 build.gradle。检查Go To Setting > Android SDK > SDK Tools > Google Play Service
【讨论】:
【参考方案3】:只做一个clean build
和rebuild
或者做invalidate cache and restart
它将重新启动您的 android studio。
你可以在file>invalidate cache and restart中找到它
【讨论】:
谢谢!我已经尝试过了,但它仍然给出同样的错误。【参考方案4】:您可以简单地从 firebase 中删除所有实现,而不是转到 Tools > Firebase
并连接您需要的所有内容,而无需担心
【讨论】:
尝试和测试,但仍然得到同样的错误。感谢您的帮助 您能否将您的项目级 gradle 添加到问题中?也许我知道问题出在哪里以上是关于Android Studio 错误:未找到 ID 为“com.google.gms.google-services”的插件的主要内容,如果未能解决你的问题,请参考以下文章
在 Android Studio 中运行参数化单元测试时,未找到给定的测试包括错误
未找到Android Studio NDK iostream文件,无法在CMakeList中启用neon