MongoDB Developer
Realm
plus
Sign in to follow topics
MongoDB Developer Centerchevron-right
Developer Topicschevron-right
Productschevron-right
Realmchevron-right

Introduction to the Realm SDK for Android

Mohit Sharma4 min read • Published Feb 18, 2022 • Updated Sep 23, 2022
AndroidRealmKotlin
Facebook Icontwitter iconlinkedin icon
Rate this tutorial
star-empty
star-empty
star-empty
star-empty
star-empty
This is a beginner article where we introduce you to the Realm Android SDK, dive through its features, and illustrate development of the process with a demo application to get you started quickly.
In this article, you will learn how to set up an Android application with the Realm Android SDK, write basic queries to manipulate data, and you'll receive an introduction to Realm Studio, a tool designed to view the local Realm database.
Pre-Requisites: You have created at least one app using Android Studio.
What is Realm?
Realm is an object database that is simple to embed in your mobile app. Realm is a developer-friendly alternative to mobile databases such as SQLite and CoreData.
Before we start, create an Android application. Feel free to skip the step if you already have one.
Step 0: Open Android Studio and then select Create New Project. For more information, you can visit the official Android website.
Now, let's get started on how to add the Realm SDK to your application.
Step 1: Add the gradle dependency to the project level build.gradle file:
Also, add mavenCentral as our dependency, which was previously jCenter for Realm 10.3.x and below.
Step 2: Add the Realm plugin to the app level build.gradle file:
Keep in mind that order matters. You should add the realm-android plugin after kotlin-kapt.
We have completed setting up Realm in the project. Sync Gradle so that we can move to the next step.
Step 3: Initialize and create our first database:
The Realm SDK needs to be initialized before use. This can be done anywhere (application class, activity, or fragment) but to keep it simple, we recommend doing it in the application class.
Now that we have the Realm SDK added to our project, let's explore basic CRUD (Create, Read, Update, Delete) operations. To do this, we'll create a small application, building on MVVM design principles.
The application counts the number of times the app has been opened, which has been manipulated to give an illustration of CRUD operation.
  1. Create app view object when opened the first time — C R U D
  2. Read app viewed counts—C R U D
  3. Update app viewed counts—C R U D
  4. Delete app viewed counts— C R U D
Realm Android App
Once you have a good understanding of the basic operations, then it is fairly simple to apply this to complex data transformation as, in the end, they are nothing but collections of CRUD operations.
Before we get down to the actual task, it's nice to have background knowledge on how Realm works. Realm is built to help developers avoid common pitfalls, like heavy lifting on the main thread, and follow best practices, like reactive programming.
The default configuration of the Realm allows programmers to read data on any thread and write only on the background thread. This configuration can be overwritten with:
In this example, we keep allowQueriesOnUiThread(true) which is the default configuration.
Let's get started and create our object class VisitInfo which holds the visit count:
In the above snippet, you will notice that we have extended the class with RealmObject, which allows us to directly save the object into the Realm.
We can insert it into the Realm like this:
To read the object, we write our query as:
To update the object, we use:
And finally, to delete the object:
So now, you will have figured out that it's very easy to perform any operation with Realm. You can also check out the Github repo for the complete application.
The next logical step is how to view data in the database. For that, let's introduce Realm Studio.
Realm Studio is a developer tool for desktop operating systems that allows you to manage Realm database instances.
Realm Studio is a very straightforward tool that helps you view your local Realm database file. You can install Realm Studio on any platform from https://docs.mongodb.com/realm/studio/.
Let's grab our database file from our emulator or real device.
Animation showing how to get the database file from emulator or real device. The process is explained in the following paragraphs.
Detailed steps are as follows:
Step 1: Go to Android Studio, open "Device File Explorer" from the right-side panel, and then select your emulator.
Android Studio Data
Step 2: Get the Realm file for our app. For this, open the folder named data as highlighted above, and then go to the data folder again. Next, look for the folder with your package name. Inside the files folder, look for the file named after the database you set up through the Realm SDK. In my case, it is test.db.
Android Studio screenshot
Step 3: To export, right-click on the file and select "Save As," and then open the file in Realm Studio.
Realm Studio screenshot
Notice the visit count in the VisitInfo class (AKA table) which is equivalent to the visit count of the application. That's all, folks. Hope it helps to solve the last piece of the puzzle.
If you're an iOS developer, please check out Accessing Realm Data on iOS Using Realm Studio.
If you have questions, please head to our developer community website where the MongoDB engineers and the MongoDB community will help you build your next big idea with MongoDB.

Facebook Icontwitter iconlinkedin icon
Rate this tutorial
star-empty
star-empty
star-empty
star-empty
star-empty
Related
News & Announcements

Introduction to Atlas Device Sync for Android


Oct 19, 2022 | 4 min read
Tutorial

Developing a Side-Scrolling Platformer Game with Unity and MongoDB Realm


Feb 03, 2023 | 20 min read
Article

A Preview of Flexible Sync


Jun 14, 2023 | 5 min read
Article

Document our Realm-Powered Swift Frameworks using DocC


May 13, 2022 | 6 min read