fix(room): Kotlin 2.1/KSP 2.0 환경에서 KSP 오류 해결을 위해 Room 2.7.0으로 업그레이드

Kotlin을 2.1.21, KSP를 2.1.21-2.0.2로 올린 뒤 발생한
`unexpected jvm signature V` 예외를 해결하기 위해 Room(compiler, runtime, ktx, rxjava3)
버전을 2.6.1 → 2.7.0으로 업그레이드.

빌드가 정상 완료되며 KSP 태스크도 성공적으로 수행됨을 확인함.
This commit is contained in:
2025-10-22 19:39:50 +09:00
parent 23c05b91d5
commit cf86dd3f30
2 changed files with 7 additions and 7 deletions

View File

@@ -181,10 +181,10 @@ dependencies {
implementation "com.android.billingclient:billing-ktx:6.2.0"
// ROOM
ksp "androidx.room:room-compiler:2.6.1"
implementation "androidx.room:room-ktx:2.6.1"
implementation "androidx.room:room-runtime:2.6.1"
implementation "androidx.room:room-rxjava3:2.6.1"
ksp "androidx.room:room-compiler:2.7.0"
implementation "androidx.room:room-ktx:2.7.0"
implementation "androidx.room:room-runtime:2.7.0"
implementation "androidx.room:room-rxjava3:2.7.0"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.4"