If I use apply plugin: \'com.google.gms.google-services\' in my build.gradle, Google says, The default configuration includes Firebase Analytics a
If you want to disable the Firebase Analytics Crash Reporting, use the below code inside app.gradle file.Hope this will help you.
configurations
{
all*.exclude group: 'com.google.firebase', module: 'firebase-crash'
}
Currently, google resolved this issue. If you got this issue in future you can try this above code.