This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <manifest xmlns:android="http://schemas.android.com/apk/res/android" | |
| xmlns:tools="http://schemas.android.com/tools"> | |
| <application | |
| android:name=".SampleApplication" | |
| android:allowBackup="true" | |
| tools:targetApi="31"> | |
| </application> | |
| </manifest> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public abstract class RecyclerViewPaginator extends RecyclerView.OnScrollListener { | |
| /* | |
| * This is the Page Limit for each request | |
| * i.e. every request will fetch 19 transactions | |
| * */ | |
| private Long batchSize = 19l; | |
| /* | |
| * Variable to keep track of the current page |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Inside my app/build.gradle.kts | |
| dependencies { | |
| // Google Maps | |
| implementation(libs.google.maps.compose) | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [versions] | |
| googleMapsCompose = "6.5.2" | |
| [libraries] | |
| ## Google Maps Compose: simplifies the integration of Google Maps into Jetpack Compose by providing | |
| ## composable functions that wrap the Maps SDK | |
| google-maps-compose = { group = "com.google.maps.android", name = "maps-compose", version.ref = "googleMapsCompose" } |
NewerOlder