Excluding the same group from multiple dependencies in gradle?
问题 I have the following code in the build.gradle in the app module of my Android project implementation('com.google.firebase:firebase-core:16.0.1', { exclude group: 'com.android.support' }) implementation('com.google.firebase:firebase-database:16.0.1', { exclude group: 'com.android.support' }) implementation('com.google.firebase:firebase-auth:16.0.1', { exclude group: 'com.android.support' }) implementation('com.google.firebase:firebase-crash:16.0.1', { exclude group: 'com.android.support' })