Gradle upgrades my `androidx.core:core` dependency...
# gradle
r
Gradle upgrades my
androidx.core:core
dependency to the
1.15.0-alpha01
even though I specified
1.13.1
in all my projects. How can I figure out which package caused gradle to pick a newer version?
not kotlin but kotlin colored 3
v
Please always have a look at channel and server topics. Not Kotlin-related questions are off-topic here. 😉
Besides that, the most convenient is to look at a build
--scan
. Other options would be the
dependencies
and
dependencyInsight
tasks.
r
Sorry, only found
androidDependencies
, which wasn't as helpful. Thanks for the hints. Added the gradle slack to my neverending list ^^
👌 1
c
Did you manage to solve the issue? I also use 1.13.1 but started to get this error all of a sudden.
Dependency 'androidx.core:core:1.15.0-alpha01' requires libraries and applications that depend on it to compile against version 35 or later of the Android APIs.
r
Yeah, found a
+
in one of the dependencies I used, I fixed it to
1.13.1
👌 1