Android Jetpack

Paging LV2 - 2 (Network Simple Ex)

개복치 개발자 2023. 3. 8. 09:51

// retrofit
implementation 'com.squareup.retrofit2:retrofit:2.9.0'
implementation 'com.squareup.retrofit2:converter-gson:2.9.0'

// paging
def paging_version = "3.1.1"
implementation "androidx.paging:paging-runtime:$paging_version"

// LifecycleScope
def lifecycle_version = "2.5.1"
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:$lifecycle_version"

 

 

 

 

 

 

 

 

 

- 참조

 

https://github.com/MindorksOpenSource/Paging3-Android-Tutorial/tree/master/app/src/main/java/com/mindorks/example/paging3

 

GitHub - MindorksOpenSource/Paging3-Android-Tutorial: An example project to demonstrate how to use the Paging-3 in Android.

An example project to demonstrate how to use the Paging-3 in Android. - GitHub - MindorksOpenSource/Paging3-Android-Tutorial: An example project to demonstrate how to use the Paging-3 in Android.

github.com

 

'Android Jetpack' 카테고리의 다른 글

Paging LV3 - 2 (Loading)  (0) 2023.03.20
Paging LV3 - 1 (Simple Ex)  (0) 2023.03.18
Paging LV2 - 1 (Json To Kotlin Class)  (0) 2023.03.06
Paging LV1 - 3 (Simple Ex)  (0) 2023.03.05
Paging LV1 - 2 (Paging 소스 살펴보기)  (0) 2023.02.25