Skip to content

Commit 34b5fcf

Browse files
authored
Update README.md
1 parent b0f2049 commit 34b5fcf

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ Is the Firebase library or API you need missing? [Create an issue](https://githu
109109

110110
Currently, the following limitations are observed:
111111

112-
* Firebase Auth implementation is minimal and only supports a small subset of the API:
112+
#### Firebase Auth implementation is minimal and only supports a small subset of the API:
113113
- `signInAnonymously`
114114
- `signInWithCustomToken`
115115
- `signInWithEmailAndPassword`
@@ -121,14 +121,14 @@ Currently, the following limitations are observed:
121121
- `addAuthStateListener`
122122
- `removeAuthStateListener`
123123
- `signOut`
124-
* Cloud Firestore does not support [Offline Persistence](https://firebase.google.com/docs/firestore/manage-data/enable-offline#configure_offline_persistence) and should be setup as follows:
124+
#### Cloud Firestore does not support [Offline Persistence](https://firebase.google.com/docs/firestore/manage-data/enable-offline#configure_offline_persistence) and should be setup as follows:
125125
```java
126126
FirebaseFirestoreSettings settings = new FirebaseFirestoreSettings.Builder(db.getFirestoreSettings())
127127
.setPersistenceEnabled(false)
128128
.build();
129129
db.setFirestoreSettings(settings);
130130
```
131-
* Realtime Database does not support [Disk Persistence](https://firebase.google.com/docs/database/android/offline-capabilities), and should be setup as follows:
131+
#### Realtime Database does not support [Disk Persistence](https://firebase.google.com/docs/database/android/offline-capabilities), and should be setup as follows:
132132
```java
133133
FirebaseDatabase.getInstance().setPersistenceEnabled(false)
134134
```

0 commit comments

Comments
 (0)