I followed google documentation to integrate my app to Google Analytics. But when adding
apply plugin: \'com.google.gms.google-services\'
and b
Need to enter the following entry in both gradle:
Add the following to the @project level gradle file:
classpath 'com.android.tools.build:gradle:1.3.0'
classpath 'com.google.gms:google-services:3.0.0'
Add the following to the @app level gradle file:
// Dependency for Google Sign-In
compile 'com.google.android.gms:play-services-auth:9.4.0'
Add plugin:
apply plugin: 'com.google.gms.google-services'