Sakethsaketh001.hashnode.dev·Feb 12, 2023Guide for Android's Data Persistence Library - Room DatabaseLast updated on February 12, 2023 This blog further moves with Kotlin for examples with Room-DB Introduction Storing data locally is one of the most important yet necessary things to do when building an application for mobile devices. That's where...98 readsAndroid DevelopmentKotlin
sandhya bhatsandhyabhat.hashnode.dev·Jan 20, 2023How to use Room Library for Data Storage in Android AppsWhat is Room? ROOM is a persistence library that provides an abstraction layer/wrapper over the SQLite database. Why Room? A simpler and cleaner approach to app development because - a>Reduces the use of error-prone boilerplate code b>Provides annota...database