File tree Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -59,6 +59,18 @@ FirebasePlatform.initializeFirebasePlatform(object : FirebasePlatform() {
59
59
})
60
60
```
61
61
62
+ #### Customizing Firestore offline data persistence database location
63
+
64
+ The ` FirebasePlatform ` interface also includes a ` getDatabasePath ` method for you to override if the following default implementation is not suitable:
65
+
66
+ ``` kotlin
67
+ open fun getDatabasePath (name : String ): File = File (" ${System .getProperty(" java.io.tmpdir" )}${File .separatorChar}$name " )
68
+ ```
69
+
70
+ This is used by Firestore to support [ offline data persistence] ( https://firebase.google.com/docs/firestore/manage-data/enable-offline ) .
71
+
72
+ #### Initialize the Firebase application
73
+
62
74
It is also up to you to initialize the Firebase application object manually (unlike the Android SDK which is normally initialized via
63
75
the configuration file).
64
76
You can’t perform that action at this time.
0 commit comments