In order to import Realm dependencies in Android Studio, write these in build.gradle (app level):
apply plugin: 'realm-android'
....
android {
.......
realm {
syncEnabled = true;
}
}
dependencies {
.......
implementation 'io.realm:realm-android-library:10.11.0'
}