fix(build): Room KAPT→KSP 마이그레이션 및 configuration cache 비활성화로 Kotlin 2.0 빌드 오류 해결
- Room을 2.6.1로 업데이트하고 KAPT를 KSP로 전환 - room-rxjava3 의존성 추가(RxJava3 반환 타입 지원) - ObjectBox 플러그인과 충돌 회피를 위해 configuration cache 비활성화 - AGP 8.4.2 + Kotlin 2.0.21 환경에서 빌드 성공 확인
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
||||
buildscript {
|
||||
ext {
|
||||
kotlin_version = '1.8.0'
|
||||
kotlin_version = '2.0.21'
|
||||
}
|
||||
repositories {
|
||||
google()
|
||||
@@ -17,9 +17,10 @@ buildscript {
|
||||
}
|
||||
|
||||
plugins {
|
||||
id 'com.android.application' version '8.1.1' apply false
|
||||
id 'com.android.library' version '8.1.1' apply false
|
||||
id 'org.jetbrains.kotlin.android' version '1.8.20' apply false
|
||||
id 'com.android.application' version '8.4.2' apply false
|
||||
id 'com.android.library' version '8.4.2' apply false
|
||||
id 'org.jetbrains.kotlin.android' version '2.0.21' apply false
|
||||
id 'com.google.devtools.ksp' version '2.0.21-1.0.25' apply false
|
||||
|
||||
id "org.jlleitschuh.gradle.ktlint" version "11.2.0"
|
||||
id 'com.google.gms.google-services' version '4.3.15' apply false
|
||||
|
||||
Reference in New Issue
Block a user