Davide Giuseppe Farella
07/06/2020, 5:05 PMFailed to resolve: org.jetbrains.kotlin:kotlin-*:1.4-M3
Both with and without Gradle Metadata ( Gradle 6.5.1 )
So I applied
allprojects {
configurations.all {
resolutionStrategy.force(
"org.jetbrains.kotlin:kotlin-test:1.3.72",
"org.jetbrains.kotlin:kotlin-test-common:1.3.72",
"org.jetbrains.kotlin:kotlin-stdlib:1.3.72"
)
}
}
but, at runtime I got:
Class 'assert4k.assert' is compiled by a pre-release version of Kotlin and cannot be loaded by this version of the compiler
Any way around that? 😕