Hey guys, we currently working on a legacy project...
# android
m
Hey guys, we currently working on a legacy project; migrating to Kotlin as we work along. It's been a mix of maintenance/making stable and new feature development. Right now we are implementing a large new feature which we NEED pagination. SQLite is used across the project and updating the entire project to use some SQL abstraction is not in the picture right now. I was looking into paging 3 but the examples I've found all use some library such as Room or SQLDelight. Is there any other recommended paging libs in the community or is paging 3 compatible with SQLLite?
not kotlin but kotlin colored 2
f
this is not Kotlin specific, but you can use the paging library with any backing data source, you need to create a
PagingSource
and a
RemoteMediator
to interface with your data source
👌 1