同期ルート ディレクトリ

mongodb-realmフォルダーの場所をマークするルート フォルダーを設定します。 このフォルダーには、Device Sync を使用してデバイスと Atlas 間でデータを同期するときに使用されるすべてのファイルとRealmが含まれています。

デフォルトのルート ディレクトリはプラットフォームに依存しています。

// For Android the default directory is obtained using
val dir = "${Context.getFilesDir()}"

// For JVM platforms the default directory is obtained using
val dir = "${System.getProperty("user.dir")}"

// For macOS the default directory is obtained using
val dir = "${NSFileManager.defaultManager.currentDirectoryPath}"

// For iOS the default directory is obtained using
val dir = "${NSFileManager.defaultManager.URLForDirectory(
NSDocumentDirectory,
NSUserDomainMask,
null,
true,
null
)}"

Return

使用された Builder インスタンス。

パラメーター

rootDir

mongodb-realmディレクトリが作成されるディレクトリ。