Skip to content
This repository was archived by the owner on Apr 4, 2023. It is now read-only.

Commit 3267da2

Browse files
Docs++
1 parent 3f2e277 commit 3267da2

File tree

2 files changed

+7
-9
lines changed

2 files changed

+7
-9
lines changed

docs/DATABASE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Since this is the most likely feature you'll use with this plugin it has already
1111
## Functions
1212

1313
### init
14-
You can optionally pass `persist` to the `init` function to make Firebase save data to the local disc so it will work in offline scenario's. Default `false`.
14+
You can optionally pass `persist` to the [`init` function](../README.md#init) to make Firebase save data to the local disc so it will work in offline scenario's. Default `false`.
1515

1616
```js
1717
firebase.init({

docs/REMOTECONFIG.md

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@
66
</table>
77

88
## Enabling Remote Config
9+
Since plugin version 3.2.0 you can retrieve _Remote Config_ properties.
10+
This feature lets you configure parameters in your Firebase instance like these:
11+
12+
<img src="images/remote-config.png" width="500px" height="482px" alt="Remote Config"/>
13+
914
To enable support for Remote Config you need to manually adjust
1015
[Podfile](platforms/ios/Podfile) and [include.gradle](platforms/android/include.gradle).
1116

@@ -14,14 +19,7 @@ Just uncomment the relevant lines (one for each platform) to add the SDK's to yo
1419
## Functions
1520

1621
### getRemoteConfig
17-
Since plugin version 3.2.0 you can retrieve _Remote Config_ properties.
18-
This feature lets you configure parameters in your Firebase instance like these:
19-
20-
<img src="images/remote-config.png" width="500px" height="482px" alt="Remote Config"/>
21-
22-
Using this function you can retrieve the current values of the remote properties
23-
so you can change app behavior on the fly easily (feature toggles for instance).
24-
22+
Using this function you can retrieve the current values of the remote properties so you can change app behavior on the fly easily (feature toggles for instance).
2523

2624
```js
2725
firebase.getRemoteConfig({

0 commit comments

Comments
 (0)