Home > Software design >  Can't build flutter apk because of File google-services.json is missing
Can't build flutter apk because of File google-services.json is missing

Time:06-23

i have a problem when i try to build flutter apk i get this error even tho i have the right file with the right name in the right place ! i tried deleting the pub cash folder from flutter folder but still the same

FAILURE: Build failed with an exception.

  • What went wrong: Execution failed for task ':cloud_firestore:processReleaseGoogleServices'.

File google-services.json is missing. The Google Services Plugin cannot function without it. Searched Location: AppData\Local\Pub\Cache\hosted\pub.dartlang.org\cloud_firestore-3.1.18\android\src\release\google-services.json AppData\Local\Pub\Cache\hosted\pub.dartlang.org\cloud_firestore-3.1.18\android\src\google-services.json AppData\Local\Pub\Cache\hosted\pub.dartlang.org\cloud_firestore-3.1.18\android\google-services.json

  • 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.

BUILD FAILED in 1m 7s Running Gradle task 'assembleRelease'... 68.6s Gradle task assembleRelease failed with exit code 1 Process finished with exit code 1

CodePudding user response:

flutter clean
flutter pub get

It helped me in my case

CodePudding user response:

Happened to me before and the reason was that there was a space in the file name
"google-services .json"

So double-check if the file name is exactly like this "google-services.json" and the path for the file is APP_NAME\android\app\google-services.json

If everything is correct run flutter clean then flutter pub get

  • Related