Closed RuslanMingaliev closed 1 year ago
try using following in your app: build.gradle:
configurations.all {
resolutionStrategy.eachDependency { org.gradle.api.artifacts.DependencyResolveDetails details ->
def requested = details.requested
if (requested.group == 'org.jetbrains.kotlin' && (requested.name == 'kotlin-stdlib-jdk7' || requested.name == 'kotlin-stdlib')) {
details.useVersion kotlin_version
}
}
}
any update on this bug? I am facing same issue on my project
@RuslanMingaliev ?
This is an obsolete issue. We don't have enough information on this issue. The latest version does not have this issue.
Too many people face significant problems with new Kaspresso version.
Build fails with error:
One of the possible reasons is using Kotlin 1.4 (in Kaspresso) with no backward-compatibility with Kotlin 1.3 (in the application module).