构建flutter项目时出现错误

问题描述 投票:0回答:1

这是尝试构建项目时显示的错误

FAILURE: Build failed with an exception.

* What went wrong:

Execution failed for task ':app:processDebugGoogleServices'.

> No matching client found for package name 'com.example.charity1_project'

* Try:

> Run with --stacktrace option to get the stack trace.

> Run with --info or --debug option to get more log output.

> Run with --scan to get full insights.

* Get more help at https://help.gradle.org

BUILD FAILED in 10s

Error: Gradle task assembleDebug failed with exit code 1

flutter firebase google-cloud-firestore
1个回答
0
投票

发生错误的原因是 google-services.json 文件中的包名称与 AndroidManifest.xml 中的包名称不匹配。要解决此问题:

打开 google-services.json 并确保 client 下的 package_name 与您应用程序的包名称匹配。 打开 AndroidManifest.xml 并确保顶部的 package 属性与 google-services.json 中的包名称匹配。 如果它们不匹配,请更新其中之一以确保一致性。 将您的项目与 Gradle 文件同步并重建。 这应该可以解决问题。

© www.soinside.com 2019 - 2024. All rights reserved.