File tree Expand file tree Collapse file tree 4 files changed +16
-7
lines changed
Expand file tree Collapse file tree 4 files changed +16
-7
lines changed Original file line number Diff line number Diff 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
1114android {
@@ -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" )
Original file line number Diff line number Diff line change 11// Top-level build file where you can add configuration options common to all sub-projects/modules.
22plugins {
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
1420subprojects {
Original file line number Diff line number Diff line change 11[versions ]
22agp = " 8.5.1"
3- kotlin = " 1.9 .0"
3+ kotlin = " 2.1 .0"
44coreKtx = " 1.13.1"
55junit = " 4.13.2"
66junitVersion = " 1.2.1"
You can’t perform that action at this time.
0 commit comments