Ensure Kotlin 1.3 compatibility

Closes gh-9765
This commit is contained in:
Eleftheria Stein 2021-05-18 15:13:13 +02:00
parent 26e34368c0
commit 34b55242fe
1 changed files with 2 additions and 2 deletions

View File

@ -100,10 +100,10 @@ rncToXsd {
tasks.withType(KotlinCompile).configureEach {
kotlinOptions {
apiVersion = "1.4"
languageVersion = "1.3"
apiVersion = "1.3"
freeCompilerArgs = ["-Xjsr305=strict", "-Xsuppress-version-warnings"]
jvmTarget = "1.8"
languageVersion = "1.4"
}
}