contrib/Development.md
There are three ways to build Realm
dependencies.list/REALM_CORE_VERSION and build the Swift SDK against it../build.sh build. Similarly to 2., this also downloads Core and builds against it.To build Realm against a custom Core branch, update Package.swift by updating the Realm Core dependency from exact to branch:
dependencies: [
- .package(url: "https://github.com/realm/realm-core.git", exact: coreVersion)
+ .package(url: "https://github.com/realm/realm-core.git", branch: "*your-custom-branch*")
],