Is there any way to find out (on the web) what dependencies on Play Services exactly a certain Firebase SDK really has? I know that
https://firebase.google.com/support/release-notes/android exists, and I just found
https://firebase.google.com/docs/android/android-play-services?hl=en , but which only talks about the "latest release" of each SDK.
For some context, I'm in the process of updating a few of my Android apps. One uses com.google.android.gms:play-services-ads directly, and when updating the dependency from 19.8.0 to 20.0.0 I found out that there had been some major changes I had to deal with.
Another app uses com.google.firebase:firebase-ads, which in turn has a dependency on play-services-ads, and when updating the Firebase BoM version from 26.1.1 to 26.8.0 I wanted to know whether that means a Play Services version bump to v20.
For what it's worth, while the second resource seems to claim that it does, Android Studio's gradle claims otherwise (and I assume the Firebase version (19.8.0) might actually correspond to the same Play Services version?).
Am I missing something obvious here?