The newest update seems to have changed some depen...
# refreshversions
d
The newest update seems to have changed some dependency names... so Android Studio didn't load up the new definitions for some reasons, and code complete was still using the old version even after cleaning the build and .gradle folders a few times... so I had to guess what they were changed to 🙈... it's a good thing there was the new list on the site...
j
sounds important do you mind to go back in your git history, create a branch from before the update update and see what failed?
d
implementation(AndroidX.lifecycle.runtimeKtx) implementation(AndroidX.lifecycle.runtime.ktx)
testImplementation(Testing.kotestExtensions.robolectric) testImplementation(Testing.kotest.extensions.robolectric)
testImplementation(Testing.kotestExtensions.wiremock) testImplementation(Testing.kotest.extensions.wiremock)
j
ah I know about this one, no way around it, kotest did a breaking change in a recent version
d
Yeah, but I'm using the one under 5.x... I still didn't have the time to update. I hope this didn't upgrade me w/o knowing...?
j
what it was supposed to do is to inline
testImplementation(Testing.kotestExtensions.robolectric)
as
testImplementation("io.kotest:whateveritwas:_"
) apparently that's not working That was I would do manually if I was you
d
Oh... so that was supposed to be covered... thanks for opening the issue! And keep the nice work going... 😉!
l
The exact issue is unclear. The replacement mechanism never changes the maven coordinates, it only does straight replacements with built-in dependency notations if there is a match for the underlying maven coordinates, otherwise, it replaces with the corresponding string literal and adds comments instead.
Also, please @dave08 submit issues yourself with the exact details, this channel is more a general discussion than when you have an actual issue that we prefer to have on GitHub next to any other one.
j
Dave, I think the reason might be that the version was changed Please comment whether that's the case https://github.com/jmfayard/refreshVersions/issues/607#issuecomment-1245942206