codelab-android-paging
codelab-android-paging copied to clipboard
Jetpack Paging codelab
Switched to the `advanced/end` sample but the build fails with: ``` > Task :app:dataBindingMergeDependencyArtifactsDebug FAILED Execution failed for task ':app:dataBindingMergeDependencyArtifactsDebug'. > Configuration `debugRuntimeClasspath` contains AndroidX dependencies, but the `android.useAndroidX` property...
According to the codelab what basic/start is supposed to load only the current days articles but what is actually happening is all 500 articles are being loaded at once without...
Configuration `debugRuntimeClasspath` contains AndroidX dependencies, but the `android.useAndroidX` property is not enabled, which may cause runtime issues. Set `android.useAndroidX=true` in the `gradle.properties` file and retry. The following AndroidX dependencies are...
Update dependencies and packages
After continuously scrolling down, after a while RecyclerView is switching his position to some element which was before, resulting in not smooth displaying of elements in it. I only change...
I decided to try Pager without the Room database. I use HashMap as the simplest database. First I implemented PagingSource. ``` class MapPagingSource( private val map: () -> Map )...