Room persistence library is an object-relational mapping used on top of SQLite database. Which is mainly introduced to save the app developer time on database. In olden day's every developer used to write 1000+...
On watching online streaming KotlinConf 2018 Keynote, which I was expected to see only updates in terms of mobile apps, I become excited when I see they bring the multiplatform Kotlin/Native-1.3(Beta), which...
Currently, Android System has two main means to schedule tasks :
AlarmManager
JobScheduler API
The latest apps should use the JobScheduler API. When the system is optimizing based on memory, power, connectivity conditions, APPs can still schedule jobs.
JobScheduler always runs in main UI thread:...