This article is for the developers who’ve heard of or have been using Realm Database in their Android apps. This is a tutorial that aims to help you set up your Android project in a way that takes less space than it normally would. A Time Before Realm… Let’s go back to a time when I’d implemented a normal, boring SQLite database in app. The APK size of the app was 4MB . But as most of you know, writing a SQLite database is quite boring and consists of a lot of boilerplate code. Changing the database schema meant making a lot of changes in other parts of the code as well. Enter, Realm When I first heard about Realm from someone on Reddit, I was blown away by how easy it was to set it up and get a database up and running, one that even came with cloud syncing functionalities! It was easy to make changes to the database schema without having to change much of the code I’d already written. It was super easy and quick to perform CRUD o...
Programming Tutorials For IOS and React Native