05-14 15:41
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
Tags
- Data Binding
- Android
- RETROFIT
- 달러예금
- 용산 호반써밋 에이디션
- ChatGPT
- Andorid
- 고금리
- Swift
- MG더뱅킹정기예금
- JetPack
- KB
- CHAT GPT
- ios
- ndkVersion
- 사전청약
- ndk r24
- EditText
- BindingAdapter
- audio record
- Android Studio
- arm-linux-androideabi
- 3rd framework
- java
- 예금
- kotlin
- 새마을금고
- 청약
- Mac
- gradle
Archives
- Today
- Total
pear
[android] jetpack room gradle setting 본문
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
'android > etc' 카테고리의 다른 글
[android] Application components(4대 컴포턴트) (0) | 2023.08.09 |
---|---|
[android]android studio - issue module not specified (0) | 2023.06.16 |