我已经在我的应用中添加了google-services.json文件,但它仍然给我错误。 错误:任务':app:processDebugGoogleServices'执行失败。
文件google-services.json缺失。没有它,Google Services插件无法运行。 搜索位置: C:\ Users \用户维卡斯\ AndroidStudioProjects \ FireBaseFunctionality \程序\ SRC \调试\谷歌,services.json C:\ Users \用户维卡斯\ AndroidStudioProjects \ FireBaseFunctionality \应用\ Google处理services.json
答案 0 :(得分:2)
有同样的问题-在本教程的下一步之前构建。您必须从firebase网站生成并下载文件。参见Error "File google-services.json is missing from module root folder. The Google Services Plugin cannot function without it" -很晚,但是现在有人可能需要这个。
答案 1 :(得分:1)
进入SDK管理器 - > SDK工具---->安装播放服务和USB工具和存储库 我用上面的方法解决了同样的问题
或者您可以更改Google服务的名称 google-services.json而不是 谷歌服务(任何数字).json
答案 2 :(得分:0)
只需更改内部版本即可。
compile fileTree (dir: 'libs', include: ['* .jar'])
至
implementation fileTree(dir: 'libs', include: ['*.jar'])
答案 3 :(得分:0)
转到用于构建应用程序的fld sdk文件夹。删除文件夹.pub-cache中的所有内容 现在发布并运行。
答案 4 :(得分:0)
有时我们将下载的文件复制并放入应用程序目录中。但它改变了名称。例如 googleservices(1).json 而不是 googleservices.json。所以请确保文件名正确。
答案 5 :(得分:0)
对我有用的是:
然后按照 https://console.firebase.google.com 步骤在 android studio 中执行:
项目级 build.gradle (/build.gradle):
buildscript {
repositories {
// Check that you have the following line (if not, add it):
google() // Google's Maven repository
}
dependencies {
...
// Add this line
classpath 'com.google.gms:google-services:4.3.8'
}
}
allprojects {
...
repositories {
// Check that you have the following line (if not, add it):
google() // Google's Maven repository
...
}
}
应用级 build.gradle (//build.gradle):
apply plugin: 'com.android.application'
// Add this line
apply plugin: 'com.google.gms.google-services'
dependencies {
// Import the Firebase BoM
implementation platform('com.google.firebase:firebase-bom:28.3.0')
// Add the dependency for the Firebase SDK for Google Analytics
// When using the BoM, don't specify versions in Firebase dependencies
implementation 'com.google.firebase:firebase-analytics'
// Add the dependencies for any other desired Firebase products
// https://firebase.google.com/docs/android/setup#available-libraries
}
最后,在 IDE 中出现的栏中按“立即同步”: