android/etc
[android] jetpack room gradle setting
pearlab
2023. 7. 28. 16:16
jetpack room gradle setting
build error
1. Could not find method kapt
add plugin
id 'kotlin-kapt' // room추가
2. Could not find method ksp()
add plugin
id 'com.google.devtools.ksp' version '1.8.0-1.0.8' // room추가
plugins {
id 'com.android.application'
id 'org.jetbrains.kotlin.android'
id 'kotlin-kapt' // room추가
id 'com.google.devtools.ksp' version '1.8.0-1.0.8' // room추가
}
android {
...
}
dependencies {
...
def room_version = "2.5.0"
implementation "androidx.room:room-runtime:$room_version"
annotationProcessor "androidx.room:room-compiler:$room_version"
// To use Kotlin annotation processing tool (kapt)
kapt "androidx.room:room-compiler:$room_version"
// To use Kotlin Symbol Processing (KSP)
ksp "androidx.room:room-compiler:$room_version"
// optional - RxJava2 support for Room
implementation "androidx.room:room-rxjava2:$room_version"
// optional - RxJava3 support for Room
implementation "androidx.room:room-rxjava3:$room_version"
// optional - Guava support for Room, including Optional and ListenableFuture
implementation "androidx.room:room-guava:$room_version"
// optional - Test helpers
testImplementation "androidx.room:room-testing:$room_version"
// optional - Paging 3 Integration
implementation "androidx.room:room-paging:$room_version"
// optional - Test helpers
testImplementation("androidx.room:room-testing:$room_version")
// optional - Paging 3 Integration
implementation("androidx.room:room-paging:$room_version")
}
reference andriod developer
https://developer.android.com/training/data-storage/room?hl=ko