Skip to content

Commit

Permalink
TECH: Downgrade Kotlin version to 1.8.22 (#632)
Browse files Browse the repository at this point in the history
  • Loading branch information
RuslanMingaliev authored Feb 13, 2024
1 parent 391e197 commit 8ef7f52
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ tasks.register<Exec>("installGitHooks") {
commandLine("git")
args("config", "core.hooksPath", ".githooks")

onlyIf { !project.hasProperty("CI") }
val isCi = project.hasProperty("CI")
onlyIf { !isCi }
}

val initialTaskNames: List<String> = project.gradle.startParameter.taskNames
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

import org.jetbrains.kotlin.gradle.tasks.KotlinCompile

val kotlinLanguageVersion = "1.9"
val kotlinLanguageVersion = "1.8"

tasks.withType<KotlinCompile>().configureEach {
kotlinOptions {
Expand Down
4 changes: 2 additions & 2 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[versions]
kotlin = "1.9.20"
kotlin = "1.8.22"
detekt = "1.21.0"
espresso = "3.5.1"
kakao = "3.5.1"
kakaoCompose = "0.2.3"
kakaoExtClicks = "1.0.0"
allure = "2.4.0"
compose = "1.5.4"
composeCompiler = "1.5.4"
composeCompiler = "1.4.8"
activityCompose = "1.4.0"
androidXTest = "1.5.0"
testOrchestrator = "1.4.2"
Expand Down

0 comments on commit 8ef7f52

Please sign in to comment.