06-05 00:40
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- JetPack
- 고금리
- EditText
- BindingAdapter
- 3rd framework
- Android
- ndk r24
- 새마을금고
- kotlin
- gradle
- Data Binding
- MG더뱅킹정기예금
- KB
- Android Studio
- 달러예금
- ndkVersion
- 용산 호반써밋 에이디션
- Andorid
- 예금
- ChatGPT
- Swift
- arm-linux-androideabi
- CHAT GPT
- 사전청약
- 청약
- audio record
- RETROFIT
- java
- ios
- Mac
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 |