├── .gitignore ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── kotlin │ └── io │ │ └── github │ │ └── erikjhordanrey │ │ └── arch_components_paging_library │ │ ├── data │ │ ├── remote │ │ │ ├── MovieApi.kt │ │ │ ├── MoviesClient.kt │ │ │ ├── MoviesDeserializer.kt │ │ │ ├── MoviesRemoteConstants.kt │ │ │ ├── MoviesRemoteDataSource.kt │ │ │ └── MoviesService.kt │ │ ├── repository │ │ │ ├── MoviesRepository.kt │ │ │ └── PageListMovieBoundaryCallback.kt │ │ └── room │ │ │ ├── Movie.kt │ │ │ ├── MoviesDao.kt │ │ │ ├── MoviesDatabase.kt │ │ │ ├── MoviesRoomConstants.kt │ │ │ └── MoviesRoomDataSource.kt │ │ ├── di │ │ └── Injection.kt │ │ ├── view │ │ ├── MoviesActivity.kt │ │ ├── MoviesPagedListAdapter.kt │ │ ├── MoviesViewHolder.kt │ │ └── decorator │ │ │ └── MarginDecoration.kt │ │ └── viewmodel │ │ ├── MoviesViewModel.kt │ │ └── MoviesViewModelFactory.kt │ └── res │ ├── drawable-v24 │ └── ic_launcher_foreground.xml │ ├── drawable │ └── ic_launcher_background.xml │ ├── layout │ ├── activity_movies.xml │ └── item_movie.xml │ ├── mipmap-anydpi-v26 │ ├── ic_launcher.xml │ └── ic_launcher_round.xml │ ├── mipmap-hdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-mdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-xhdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-xxhdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-xxxhdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ └── values │ ├── colors.xml │ ├── dimens.xml │ ├── strings.xml │ └── styles.xml ├── art └── movies_.gif ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikjhordan-rey/Movies-PagingLibrary-Arch-Components/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikjhordan-rey/Movies-PagingLibrary-Arch-Components/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikjhordan-rey/Movies-PagingLibrary-Arch-Components/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikjhordan-rey/Movies-PagingLibrary-Arch-Components/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikjhordan-rey/Movies-PagingLibrary-Arch-Components/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/kotlin/io/github/erikjhordanrey/arch_components_paging_library/data/remote/MovieApi.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikjhordan-rey/Movies-PagingLibrary-Arch-Components/HEAD/app/src/main/kotlin/io/github/erikjhordanrey/arch_components_paging_library/data/remote/MovieApi.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/io/github/erikjhordanrey/arch_components_paging_library/data/remote/MoviesClient.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikjhordan-rey/Movies-PagingLibrary-Arch-Components/HEAD/app/src/main/kotlin/io/github/erikjhordanrey/arch_components_paging_library/data/remote/MoviesClient.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/io/github/erikjhordanrey/arch_components_paging_library/data/remote/MoviesDeserializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikjhordan-rey/Movies-PagingLibrary-Arch-Components/HEAD/app/src/main/kotlin/io/github/erikjhordanrey/arch_components_paging_library/data/remote/MoviesDeserializer.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/io/github/erikjhordanrey/arch_components_paging_library/data/remote/MoviesRemoteConstants.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikjhordan-rey/Movies-PagingLibrary-Arch-Components/HEAD/app/src/main/kotlin/io/github/erikjhordanrey/arch_components_paging_library/data/remote/MoviesRemoteConstants.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/io/github/erikjhordanrey/arch_components_paging_library/data/remote/MoviesRemoteDataSource.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikjhordan-rey/Movies-PagingLibrary-Arch-Components/HEAD/app/src/main/kotlin/io/github/erikjhordanrey/arch_components_paging_library/data/remote/MoviesRemoteDataSource.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/io/github/erikjhordanrey/arch_components_paging_library/data/remote/MoviesService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikjhordan-rey/Movies-PagingLibrary-Arch-Components/HEAD/app/src/main/kotlin/io/github/erikjhordanrey/arch_components_paging_library/data/remote/MoviesService.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/io/github/erikjhordanrey/arch_components_paging_library/data/repository/MoviesRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikjhordan-rey/Movies-PagingLibrary-Arch-Components/HEAD/app/src/main/kotlin/io/github/erikjhordanrey/arch_components_paging_library/data/repository/MoviesRepository.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/io/github/erikjhordanrey/arch_components_paging_library/data/repository/PageListMovieBoundaryCallback.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikjhordan-rey/Movies-PagingLibrary-Arch-Components/HEAD/app/src/main/kotlin/io/github/erikjhordanrey/arch_components_paging_library/data/repository/PageListMovieBoundaryCallback.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/io/github/erikjhordanrey/arch_components_paging_library/data/room/Movie.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikjhordan-rey/Movies-PagingLibrary-Arch-Components/HEAD/app/src/main/kotlin/io/github/erikjhordanrey/arch_components_paging_library/data/room/Movie.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/io/github/erikjhordanrey/arch_components_paging_library/data/room/MoviesDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikjhordan-rey/Movies-PagingLibrary-Arch-Components/HEAD/app/src/main/kotlin/io/github/erikjhordanrey/arch_components_paging_library/data/room/MoviesDao.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/io/github/erikjhordanrey/arch_components_paging_library/data/room/MoviesDatabase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikjhordan-rey/Movies-PagingLibrary-Arch-Components/HEAD/app/src/main/kotlin/io/github/erikjhordanrey/arch_components_paging_library/data/room/MoviesDatabase.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/io/github/erikjhordanrey/arch_components_paging_library/data/room/MoviesRoomConstants.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikjhordan-rey/Movies-PagingLibrary-Arch-Components/HEAD/app/src/main/kotlin/io/github/erikjhordanrey/arch_components_paging_library/data/room/MoviesRoomConstants.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/io/github/erikjhordanrey/arch_components_paging_library/data/room/MoviesRoomDataSource.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikjhordan-rey/Movies-PagingLibrary-Arch-Components/HEAD/app/src/main/kotlin/io/github/erikjhordanrey/arch_components_paging_library/data/room/MoviesRoomDataSource.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/io/github/erikjhordanrey/arch_components_paging_library/di/Injection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikjhordan-rey/Movies-PagingLibrary-Arch-Components/HEAD/app/src/main/kotlin/io/github/erikjhordanrey/arch_components_paging_library/di/Injection.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/io/github/erikjhordanrey/arch_components_paging_library/view/MoviesActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikjhordan-rey/Movies-PagingLibrary-Arch-Components/HEAD/app/src/main/kotlin/io/github/erikjhordanrey/arch_components_paging_library/view/MoviesActivity.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/io/github/erikjhordanrey/arch_components_paging_library/view/MoviesPagedListAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikjhordan-rey/Movies-PagingLibrary-Arch-Components/HEAD/app/src/main/kotlin/io/github/erikjhordanrey/arch_components_paging_library/view/MoviesPagedListAdapter.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/io/github/erikjhordanrey/arch_components_paging_library/view/MoviesViewHolder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikjhordan-rey/Movies-PagingLibrary-Arch-Components/HEAD/app/src/main/kotlin/io/github/erikjhordanrey/arch_components_paging_library/view/MoviesViewHolder.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/io/github/erikjhordanrey/arch_components_paging_library/view/decorator/MarginDecoration.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikjhordan-rey/Movies-PagingLibrary-Arch-Components/HEAD/app/src/main/kotlin/io/github/erikjhordanrey/arch_components_paging_library/view/decorator/MarginDecoration.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/io/github/erikjhordanrey/arch_components_paging_library/viewmodel/MoviesViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikjhordan-rey/Movies-PagingLibrary-Arch-Components/HEAD/app/src/main/kotlin/io/github/erikjhordanrey/arch_components_paging_library/viewmodel/MoviesViewModel.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/io/github/erikjhordanrey/arch_components_paging_library/viewmodel/MoviesViewModelFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikjhordan-rey/Movies-PagingLibrary-Arch-Components/HEAD/app/src/main/kotlin/io/github/erikjhordanrey/arch_components_paging_library/viewmodel/MoviesViewModelFactory.kt -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikjhordan-rey/Movies-PagingLibrary-Arch-Components/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikjhordan-rey/Movies-PagingLibrary-Arch-Components/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_movies.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikjhordan-rey/Movies-PagingLibrary-Arch-Components/HEAD/app/src/main/res/layout/activity_movies.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/item_movie.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikjhordan-rey/Movies-PagingLibrary-Arch-Components/HEAD/app/src/main/res/layout/item_movie.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikjhordan-rey/Movies-PagingLibrary-Arch-Components/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikjhordan-rey/Movies-PagingLibrary-Arch-Components/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikjhordan-rey/Movies-PagingLibrary-Arch-Components/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikjhordan-rey/Movies-PagingLibrary-Arch-Components/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikjhordan-rey/Movies-PagingLibrary-Arch-Components/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikjhordan-rey/Movies-PagingLibrary-Arch-Components/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikjhordan-rey/Movies-PagingLibrary-Arch-Components/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikjhordan-rey/Movies-PagingLibrary-Arch-Components/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikjhordan-rey/Movies-PagingLibrary-Arch-Components/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikjhordan-rey/Movies-PagingLibrary-Arch-Components/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikjhordan-rey/Movies-PagingLibrary-Arch-Components/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikjhordan-rey/Movies-PagingLibrary-Arch-Components/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikjhordan-rey/Movies-PagingLibrary-Arch-Components/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikjhordan-rey/Movies-PagingLibrary-Arch-Components/HEAD/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikjhordan-rey/Movies-PagingLibrary-Arch-Components/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikjhordan-rey/Movies-PagingLibrary-Arch-Components/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /art/movies_.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikjhordan-rey/Movies-PagingLibrary-Arch-Components/HEAD/art/movies_.gif -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikjhordan-rey/Movies-PagingLibrary-Arch-Components/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikjhordan-rey/Movies-PagingLibrary-Arch-Components/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikjhordan-rey/Movies-PagingLibrary-Arch-Components/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikjhordan-rey/Movies-PagingLibrary-Arch-Components/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikjhordan-rey/Movies-PagingLibrary-Arch-Components/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | --------------------------------------------------------------------------------