There is an issue when building a project with google services included. I added the following google services classpath to the root build.gradle
file:
dependencies {
classpath 'com.android.tools.build:gradle:2.3.3'
classpath 'com.google.gms:google-services:3.1.0'
}
and the project starts to complain with the following error when compiled:
Some file crunching failed, see logs for details
Error:Execution failed for task ':app:mergeDebugResources'.
Error: Some file crunching failed, see logs for details
I checked the logs for the IDE, but there seems to be no issue there. How do I fix this so that I could include google services in my project?