Step 1. Add the JitPack repository to your build file
Add it in your root settings.gradle at the end of repositories:
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
}
Add it in your settings.gradle.kts at the end of repositories:
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
maven { url = uri("https://jitpack.io") }
}
}
Add to pom.xml
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
Add it in your build.sbt at the end of resolvers:
resolvers += "jitpack" at "https://jitpack.io"
Add it in your project.clj at the end of repositories:
:repositories [["jitpack" "https://jitpack.io"]]
Step 2. Add the dependency
dependencies {
implementation 'com.github.zhangguoning:realm-java:'
}
dependencies {
implementation("com.github.zhangguoning:realm-java:")
}
<dependency>
<groupId>com.github.zhangguoning</groupId>
<artifactId>realm-java</artifactId>
<version></version>
</dependency>
libraryDependencies += "com.github.zhangguoning" % "realm-java" % ""
:dependencies [[com.github.zhangguoning/realm-java ""]]
Realm is a mobile database that runs directly inside phones, tablets or wearables. This repository holds the source code for the Java version of Realm, which currently runs only on Android.
Please see the detailed instructions in our docs to add Realm to your project.
Documentation for Realm can be found at realm.io/docs/java. The API reference is located at realm.io/docs/java/api.
If you want to test recent bugfixes or features that have not been packaged in an official release yet, you can use a -SNAPSHOT release of the current development version of Realm via Gradle, available on OJO
buildscript {
repositories {
maven {
url 'http://oss.jfrog.org/artifactory/oss-snapshot-local'
}
}
dependencies {
classpath "io.realm:realm-gradle-plugin:<version>-SNAPSHOT"
}
}
allprojects {
repositories {
maven {
url 'http://oss.jfrog.org/artifactory/oss-snapshot-local'
}
}
}
See version.txt for the latest version number.
In case you don't want to use the precompiled version, you can build Realm yourself from source.
Install CMake from SDK manager in Android Studio ("SDK Tools" -> "CMake").
Realm currently requires version r10e of the NDK. Download the one appropriate for your development platform, from the NDK archive.
You may unzip the file wherever you choose. For OSX, a suggested location is ~/Library/Android
. The download will unzip as the directory android-ndk-r10e
.
If you will be building with Android Studio, you will need to tell it to use the correct NDK. To do this, define the variable ndk.dir
in realm/local.properties
and assign it the full path name of the directory that you unzipped above. Note that there is a local.properites
in the root directory that is not the one that needs to be edited.
ndk.dir=/Users/brian/Library/Android/android-ndk-r10e/r10e
Add two environment variables to your profile (presuming you installed the NDK in ~/Library/android-ndk-r10e
):
export ANDROID_HOME=~/Library/Android/sdk
export ANDROID_NDK_HOME=~/Library/Android/android-ndk-r10e
If you will be launching Android Studio from the OS X Finder, you should also run the following two commands:
launchctl setenv ANDROID_HOME "$ANDROID_HOME"
launchctl setenv ANDROID_NDK_HOME "$ANDROID_NDK_HOME"
If you'd like to specify the location in which to store the archives of Realm Core, define the REALM_CORE_DOWNLOAD_DIR
environment variable. It enables you to keep Core's archive when executing git clean -xfd
.
export REALM_CORE_DOWNLOAD_DIR=~/.realmCore
OS X users must also run the following command in order for Android Studio to see this environment variable..
launchctl setenv REALM_CORE_DOWNLOAD_DIR "$REALM_CORE_DOWNLOAD_DIR"
It would be a good idea to add all of the symbol definitions (and their accompanying launchctl
commands, if you are using OS X) to your ~/.profile
(or ~/.zprofile
if the login shell is zsh
)
You can download the source code of Realm Java by using git. Since realm-java has git submodules, use --recursive
when cloning the repository.
git clone git@github.com:realm/realm-java.git --recursive
or
git clone https://github.com/realm/realm-java.git --recursive
Once you have completed all the pre-requisites building Realm is done with a simple command
./gradlew assemble
That command will generate:
The full build may take an hour or more, to complete.
./gradlew tasks
will show all the available tasks./gradlew javadoc
will generate the Javadocs./gradlew monkeyExamples
will run the monkey tests on all the examples./gradlew installRealmJava
will install the Realm library and plugin to mavenLocal()./gradlew clean -PdontCleanJniFiles
will remove all generated files except for JNI related files. This reduces recompilation time a lot../gradlew connectedUnitTests -PbuildTargetABIs=$(adb shell getprop ro.product.cpu.abi)
will build JNI files only for the ABI which corresponds to the connected device. These tests require a running Object Server (see below)Generating the Javadoc using the command above may generate warnings. The Javadoc is generated despite the warnings.
The repository is organized in six Gradle projects:
realm
: it contains the actual library (including the JNI layer) and the annotations processor.realm-annotations
: it contains the annotations defined by Realm.realm-transformer
: it contains the bytecode transformer.gradle-plugin
: it contains the Gradle plugin.examples
: it contains the example projects. This project directly depends on gradle-plugin
which adds a dependency to the artifacts produced by realm
.This means that ./gradlew clean
and ./gradlew cleanExamples
will fail if assembleExamples
has not been executed first.
Note that IntelliJ does not support multiple projects in the same window
so each of the six Gradle projects must be imported as a separate IntelliJ project.
Since the repository contains several completely independent Gradle projects, several independent builds are run to assemble it.
Seeing a line like: :realm:realm-library:compileBaseDebugAndroidTestSources UP-TO-DATE
in the build log does not imply
that you can run ./gradlew :realm:realm-library:compileBaseDebugAndroidTestSources
.
The ./examples
folder contain a number of example projects showing how Realm can be used. If this is the first time you checkout or pull a new version of this repository to try the examples, you must call ./gradlew installRealmJava
from the top-level directory first. Otherwise the examples will not compile as they depend on all Realm artifacts being installed in mavenLocal()
.
Standalone examples can be downloaded from website.
To run these tests you must have a device connected to the build computer and the adb
command must be in your PATH
Connect an Android device and verify that that the command adb devices
shows a connected device:
adb devices
List of devices attached
004c03eb5615429f device
Run instrumentation tests:
cd realm
./gradlew connectedBaseDebugAndroidTest
These tests may take as much as half an hour to complete.
Tests in realm/realm-library/src/syncIntegrationTest
require a running testing server to work.
A docker image can be built from tools/sync_test_server/Dockerfile
to run the test server.
tools/sync_test_server/start_server.sh
will build the docker image automatically.
To run a testing server locally:
Install docker.
Run tools/sync_test_server/start_server.sh
:
cd tools/sync_test_server
./start_server.sh
This command will not complete until the server has stopped.
Run instrumentation tests
In a new terminal window, run:
cd realm
./gradlew connectedObjectServerDebugAndroidTest
Note that if using VirtualBox (Genymotion), the network needs to be bridged for the tests to work.
This is done in VirtualBox > Network
. Set "Adapter 2" to "Bridged Adapter".
These tests may take as much as half an hour to complete.
See CONTRIBUTING.md for more details!
This project adheres to the Contributor Covenant Code of Conduct. By participating, you are expected to uphold this code. Please report unacceptable behavior to info@realm.io.
The directory realm/config/studio
contains lint and style files recommended for project code.
Import them from Android Studio with Android Studio > Preferences... > Code Style > Manage... > Import,
or Android Studio > Preferences... > Inspections > Manage... > Import. Once imported select the
style/lint in the drop-down to the left of the Manage... button.
Realm Java is published under the Apache 2.0 license. The underlying core is available under the Realm Core Binary License while we work to open-source it under the Apache 2.0 license.
This product is not being made available to any person located in Cuba, Iran, North Korea, Sudan, Syria or the Crimea region, or to any other person that is not eligible to receive the product under U.S. law.
If you use Realm and are happy with it, all we ask is that you please consider sending out a tweet mentioning @realm, announce your app on our mailing-list, or email help@realm.io to let us know about it!
And if you don't like it, please let us know what you would like improved, so we can fix it!