Planning to implement In-App Updates in a project that is available in Play Store. However I have a question for the setup.
Sine the project is in Kotlin, can we add the ktx dependency only and leave the first one?
implementation 'com.google.android.play:app-update:2.0.0' // Is this needed?
implementation 'com.google.android.play:app-update-ktx:2.0.0'
I know that KTX are those dependencies that provides Kotlin Extension but in this case it seems that the documentation is requesting to add two dependency, unlike other dependency for example from Firebase where KTX also includes the whole SDK + Kotlin Extensions.
Reference: https://developer.android.com/guide/playcore/in-app-updates/kotlin-java#setup