I have got following error while adding dependency in build.gradle
Error:Execution failed for task ':app:processDebugGoogleServices'.
> Please fix the version conflict either by updating the version of the google-services plugin (information about the latest version is available at https://bintray.com/android/android-tools/com.google.gms.google-services/) or updating the version of com.google.android.gms to 8.3.0.
I have added following dependency and plugin to build.gradle(app level) to integrate GCM 3:-
apply plugin: 'com.google.gms.google-services'
compile "com.google.android.gms:play-services:8.3.0"
build.gradle(Top Level):-
classpath 'com.google.gms:google-services:1.5.0-beta2'
Your advice will be appreciated.
Thank you!