We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 69a5de1 commit 7617a9cCopy full SHA for 7617a9c
build.gradle.kts
@@ -14,6 +14,18 @@ buildscript {
14
// Add our custom gradle build logic to buildscript classpath
15
classpath(libs.aws.kotlin.repo.tools.build.support)
16
}
17
+
18
+ configurations.classpath {
19
+ resolutionStrategy {
20
+ /*
21
+ Version bumping the SDK to 1.5.x in repo tools broke our buildscript classpath:
22
+ java.lang.NoSuchMethodError: 'void kotlinx.coroutines.CancellableContinuation.resume(java.lang.Object, kotlin.jvm.functions.Function3)
23
24
+ FIXME: Figure out what broke our buildscipt classpath, this is a temporary fix
25
+ */
26
+ force("com.squareup.okhttp3:okhttp-coroutines:5.0.0-alpha.14")
27
+ }
28
29
30
31
plugins {
0 commit comments