is `kotlinx-coroutines-play-services` still releva...
# coroutines
a
is
kotlinx-coroutines-play-services
still relevant? there is `.await()`in the firebase-*-ktx package for Task APIs, but seems kotlinx package has a few more things… not sure which should be my go-to
y
a
It looks like firebase adds
kotlinx-coroutines-play-services
as an
api
dependency as part of
firebase-common
, so I'd expect that if you are using an
.await()
with firebase you are directly using
kotlinx-coroutines-play-services
even if you aren't directly importing it yourself
👍 1