September 2018
Intermediate to advanced
500 pages
12h 11m
English
Databases
Scheduling
Loaders
Notifications
Alarm Manager
Contacts
Search Framework
Location and Maps
Android provides two realms for dealing with databases: either you use the SQLite library included in the Android OS, or you use the Room architecture component. The latter is recommended since it adds an abstraction layer between the database and the client, simplifying the mapping between Kotlin objects and database storage objects. You can find exhaustive information about SQLite in the ...