20230927 TIL 팀 과제 진행

이성진·2023년 9월 27일
0

TIL

목록 보기
44/95

진행상황.

build.gradle 에 추가

//Retrofit and Gson
implementation("com.squareup.retrofit2:retrofit:2.9.0")
implementation("com.squareup.retrofit2:converter-gson:2.9.0")

// OkHttp and Logging Interceptor
implementation("com.squareup.okhttp3:okhttp:4.9.1")
implementation("com.squareup.okhttp3:logging-interceptor:4.9.1")

VideoItem 추가

data class VideoItem(
val title: String,
val thumbnail: Int,
val channelProfileImage: Int,
val channelName: String,
val viewsAndDate: String
)

SearchAdapter 추가하여 리싸이클리어뷰 연결.

profile
2023.08 ~ Android Kotlin 공부

0개의 댓글