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:...
When the interface contains a table view or little content subclass UITableViewController
Table view controllers already contain the protocols you just need to manage your table views content and respond to changes...
The new app publishing format, the Android App Bundle, is an improved way to package your app. The Android App Bundle lets you more easily deliver a great experience in a smaller app size, allowing for the huge variety of Android devices available today. You don’t need to refactor your code to start...