Hello, I’ve got a weird issue in one of my project...
# gradle
y
Hello, I’ve got a weird issue in one of my project, sometimes when I sync it, gradles tries to download
Failed <https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib-common/1.3.0-rc-51/kotlin-stdlib-common-1.3.0-rc-51.pom>
or
Failed <https://jitpack.io/org/jetbrains/kotlin/kotlin-stdlib-common/1.3.0-rc-51/kotlin-stdlib-common-1.3.0-rc-51.pom>
even though I don’t have any dependencies to this version. I’ve checked with
./gradlew app:dependencies | grep kotlin-stdlib-common
the lowest version is 1.6.20 and highest is 2.1.0 If anyone got an idea how I can fix this I would be really grateful
👀 1
t
Gradle build scan is your best friend in this situation
y
I did one as well
t
y
Oh okay yes it might be a solution to avoid searching every repo for this dependency
Thank you