Hi in a pull request renovate for kotlin 2.0.21 i'...
# multiplatform
p
Hi in a pull request renovate for kotlin 2.0.21 i've got this error on lintAnalyseDebugAndroidTest. Someone has the same error ?
Copy code
Execution failed for task ':composeApp:lintAnalyzeDebugAndroidTest'.
> Could not resolve all files for configuration ':composeApp:debugAndroidTestRuntimeClasspath'.
   > Could not resolve org.jetbrains.kotlin:kotlin-test.
     Required by:
         project :composeApp
      > Cannot find a version of 'org.jetbrains.kotlin:kotlin-test' that satisfies the version constraints:
           Dependency path '...:composeApp:unspecified' --> 'org.jetbrains.kotlin:kotlin-test'
           Constraint path '...:composeApp:unspecified' --> 'org.jetbrains.kotlin:kotlin-test:2.0.21'
           Dependency path '...:composeApp:unspecified' --> 'org.jetbrains.kotlin:kotlin-test'
           Constraint path '...:composeApp:unspecified' --> 'org.jetbrains.kotlin:kotlin-test:2.0.21'
           Constraint path '....:composeApp:unspecified' --> 'org.jetbrains.kotlin:kotlin-test:{strictly 2.0.20}' because of the following reason: version resolved in configuration ':composeApp:debugRuntimeClasspath' by consistent resolution
           Dependency path '...:composeApp:unspecified' --> 'org.jetbrains.kotlin:kotlin-test:2.0.21' (jvmJUnitRuntimeElements) --> 'org.jetbrains.kotlin:kotlin-test-junit:2.0.21' (jvmJUnitRuntimeElements) --> 'org.jetbrains.kotlin:kotlin-test:2.0.21'
           Dependency path '....:composeApp:unspecified' --> 'org.jetbrains.kotlin:kotlin-test:2.0.21'
🧵 1
to fix I've must add this :
Copy code
configurations.all {
    resolutionStrategy {
        force("org.jetbrains.kotlin:kotlin-test:2.0.21")
    }
}