File tree 4 files changed +44
-5
lines changed
4 files changed +44
-5
lines changed Original file line number Diff line number Diff line change
1
+ .. code-block :: flutter
2
+
3
+ // Get on-disk location of the default Realm
4
+ final storagePath = Configuration.defaultStoragePath;
5
+ // See value in your application
6
+ print(storagePath);
7
+
8
+
Original file line number Diff line number Diff line change
1
+ .. code-block :: kotlin
2
+
3
+ config = SyncConfiguration.Builder(user, setOf(Item::class))
4
+ .initialSubscriptions { realm ->
5
+ add(
6
+ realm.query<Item>(
7
+ "owner_id == $0",
8
+ realmApp.currentUser!!.identity
9
+ ),
10
+ "User's Items"
11
+ )
12
+ }
13
+ .build()
14
+
15
+ // Log on-disk location of the realm file
16
+ Log.v("My Tag", "Realm Path: ${config.path}")
17
+
Original file line number Diff line number Diff line change @@ -120,24 +120,28 @@ migration guide.
120
120
.. tab::
121
121
:tabid: android
122
122
123
- :ref:`Schema Versions & Migrations - Java SDK <java-schema-versions-and-migrations>`
123
+ :ref:`Schema Versions & Migrations - Realm Java SDK <java-schema-versions-and-migrations>`
124
124
125
125
.. tab::
126
126
:tabid: ios
127
127
128
- :ref:`Schema Versions & Migrations - Swift SDK <ios-schema-versions-and-migrations>`
128
+ :ref:`Schema Versions & Migrations - Realm Swift SDK <ios-schema-versions-and-migrations>`
129
129
130
130
.. tab::
131
131
:tabid: node
132
132
133
- :ref:`Schema Versions & Migrations - Node.js SDK <node-schema-versions-and-migrations>`
133
+ :ref:`Schema Versions & Migrations - Realm Node.js SDK <node-schema-versions-and-migrations>`
134
134
135
135
.. tab::
136
136
:tabid: react-native
137
137
138
- :ref:`Schema Versions & Migrations - React Native SDK <react-native-schema-versions-and-migrations>`
138
+ :ref:`Schema Versions & Migrations - Realm React Native SDK <react-native-schema-versions-and-migrations>`
139
139
140
140
.. tab::
141
141
:tabid: dotnet
142
142
143
- :ref:`Schema Versions & Migrations - .NET SDK <dotnet-schema-versions-and-migrations>`
143
+ :ref:`Schema Versions & Migrations - Realm .NET SDK <dotnet-schema-versions-and-migrations>`
144
+ .. tab::
145
+ :tabid: flutter
146
+
147
+ :ref:`Schema Versions & Migrations - Realm Flutter SDK <flutter-manually-migrate-schema>`
Original file line number Diff line number Diff line change @@ -63,6 +63,16 @@ To find your default realm file path:
63
63
64
64
.. include:: /includes/find-realm-file-dotnet.rst
65
65
66
+ .. tab:: Flutter
67
+ :tabid: flutter
68
+
69
+ .. include:: /includes/find-realm-file-flutter.rst
70
+
71
+ .. tab:: Kotlin
72
+ :tabid: kotlin
73
+
74
+ .. include:: /includes/find-realm-file-kotlin.rst
75
+
66
76
Once you know the location of your local realm file, you can browse
67
77
to that location from the :guilabel:`Open Realm file` dialog.
68
78
You can’t perform that action at this time.
0 commit comments