Thanks for helping.
Android Studio doesn't currently support dependency update suggestions with Gradle Kotlin DSL.
You need to use a plugin to check for dependency updates like this one: https://github.com/ben-manes/gradle-versions-plugin
Add this plugin in your project-level build.gradle.kts
file:
plugins {
id("com.github.ben-manes.versions") version "0.28.0"
}
And then simply run ./gradlew dependencyUpdates
to check for dependency updates.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With