Anytime I try to build my project I keep getting this error:
Execution failed for task \':app:processReleaseGoogleServices\'.
No matching client found for pa
In my case it solved my problem
...
"client": [
{
"client_info": {
"mobilesdk_app_id": "yourid",
"android_client_info": {
"package_name": "ru.example.app"
}
},
...
package_name should be same as in applicationId
defaultConfig {
applicationId "ru.example.app"
minSdkVersion 15
targetSdkVersion 23
...
}