If I use apply plugin: \'com.google.gms.google-services\' in my build.gradle, Google says, The default configuration includes Firebase Analytics a
You need to remove compile com.google.android.gms:play-services:9.0.0
from your build dependencies and replace it with with the individual libraries that you need. A list of the Google Play libraries is provided here, the Firebase libraries are listed here.
When you include play-services:9.x.x
, you get all the Google Play and Firebase libraries, including Firebase Crash Reporting.