# Execution failed for task ':app:processDebugGoogleServices'

**URL:** https://discuss.gradle.org/t/execution-failed-for-task-processdebuggoogleservices/38504
**Category:** Help/Discuss
**Created:** [December 10, 2020, 10:36pm UTC](https://discuss.gradle.org/t/execution-failed-for-task-processdebuggoogleservices/38504 "2020-12-10T22:36:52Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![SK1n](https://sea1.discourse-cdn.com/gradle/user_avatar/discuss.gradle.org/sk1n/32/8978_2.png) [@SK1n](https://discuss.gradle.org/u/SK1n)
#### Post date: [December 10, 2020, 10:36pm UTC](https://discuss.gradle.org/t/execution-failed-for-task-processdebuggoogleservices/38504/1 "2020-12-10T22:36:52Z")

</div>

So I get the following error when running my flutter app:

```
 FAILURE: Build failed with an exception.
* What went wrong:
Execution failed for task ':app:processDebugGoogleServices'.
> com.google.gson.stream.MalformedJsonException: Expected ':' at line 11 column 10 path $.client[0].client_info.<<<<<<<

* 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 33s
Exception: Gradle task assembleDebug failed with exit code 1

```

After I added `apply plugin: 'com.google.gms.google-services'` in android/app/build.gradle  
And I need this line because if I don’t have it I get error from firebase package

Any help on how I can fix this?
