Skip to content

Commit e46b00a

Browse files
committed
[Fix] GitHub Actions : Kotlin 버전 2.1.0 업그레이드 및 기타 의존성 버전 변경
1 parent caeffd3 commit e46b00a

File tree

4 files changed

+16
-7
lines changed

4 files changed

+16
-7
lines changed

.idea/kotlinc.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/build.gradle.kts

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ plugins {
66
// Hilt 의존성 주입 (DI) 라이브러리 사용
77
id("com.google.dagger.hilt.android")
88
id("kotlin-kapt")
9+
10+
// Compose Compiler 플러그인 추가
11+
id("org.jetbrains.kotlin.plugin.compose")
912
}
1013

1114
android {
@@ -45,7 +48,7 @@ android {
4548
compose = true
4649
}
4750
composeOptions {
48-
kotlinCompilerExtensionVersion = "1.5.1"
51+
kotlinCompilerExtensionVersion = "1.5.15"
4952
}
5053
packaging {
5154
resources {
@@ -61,8 +64,8 @@ dependencies {
6164
implementation("com.google.firebase:firebase-auth-ktx")
6265

6366
// Hilt 의존성 주입 (DI) 라이브러리 사용
64-
implementation("com.google.dagger:hilt-android:2.51")
65-
kapt("com.google.dagger:hilt-android-compiler:2.51")
67+
implementation("com.google.dagger:hilt-android:2.55")
68+
kapt("com.google.dagger:hilt-android-compiler:2.55")
6669

6770
// Room (로컬 DB) 의존성 주입
6871
implementation("androidx.room:room-runtime:2.6.1")

build.gradle.kts

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,20 @@
11
// Top-level build file where you can add configuration options common to all sub-projects/modules.
22
plugins {
33
alias(libs.plugins.android.application) apply false
4-
alias(libs.plugins.jetbrains.kotlin.android) apply false
4+
5+
// Kotlin 버전 업그레이드
6+
alias(libs.plugins.jetbrains.kotlin.android) version "2.1.0" apply false
7+
58
id("com.google.gms.google-services") version "4.4.3" apply false
69

710
// Hilt 의존성 주입 (DI) 라이브러리 사용
8-
id("com.google.dagger.hilt.android") version "2.51" apply false
11+
id("com.google.dagger.hilt.android") version "2.55" apply false
912

1013
// Spotless 의존성 주입 (Ktlint 관련 툴)
1114
id("com.diffplug.spotless") version "6.22.0"
15+
16+
// Compose Complier 플러그인 추가
17+
id("org.jetbrains.kotlin.plugin.compose") version "2.1.0" apply false
1218
}
1319

1420
subprojects {

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[versions]
22
agp = "8.5.1"
3-
kotlin = "1.9.0"
3+
kotlin = "2.1.0"
44
coreKtx = "1.13.1"
55
junit = "4.13.2"
66
junitVersion = "1.2.1"

0 commit comments

Comments
 (0)