itnoles
04/29/2020, 9:07 PMLeland Richardson [G]
04/29/2020, 9:52 PMitnoles
04/30/2020, 2:08 AMLeland Richardson [G]
04/30/2020, 2:47 AMitnoles
04/30/2020, 2:47 AMLeland Richardson [G]
04/30/2020, 2:49 AMitnoles
04/30/2020, 2:50 AMLeland Richardson [G]
04/30/2020, 2:51 AMitnoles
04/30/2020, 2:53 AMjim
04/30/2020, 8:23 AM1.3.70
in our smoketest, you might consider downgrading to 1.3.70
instead of 1.3.72
, not sure if that will solve your issue though. You an also try suppressing the message with the flag they suggested in the message ( -language-version 1.3
) or maybe try skipping the runtime check (-Xskip-runtime-version-check
). The root cause of the error is that we're getting super close to the Kotlin 1.4 release, but Kotlin 1.4 isn't released yet so you can't easily depend upon it, so you mostly need to suppress the warnings until it's released.
Here is a gradle config fragment that might help (it's what we're using for a similar warning in androidx):
allprojects {
tasks.withType(KotlinCompile).configureEach {
kotlinOptions {
freeCompilerArgs += ["-Xskip-runtime-version-check"]
}
}
}
1.4-M1
for the runtime. We're in a bit of a twilight zone as we get closer to Kotlin 1.4.
Please do post in the group if you find a configuration that works for you, as that may help others with similar constraints/setups.itnoles
04/30/2020, 4:07 PMLeland Richardson [G]
04/30/2020, 4:25 PMitnoles
04/30/2020, 5:52 PMLeland Richardson [G]
04/30/2020, 5:58 PMitnoles
04/30/2020, 6:00 PMLeland Richardson [G]
04/30/2020, 6:04 PM