Skip to content

Commit 717f4e6

Browse files
authored
Update README.md
1 parent 3810924 commit 717f4e6

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

README.md

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ You can add the library via Gradle:
2525

2626
```kotlin
2727
dependencies {
28-
implementation("dev.gitlive:firebase-java-sdk:0.2.0")
28+
implementation("dev.gitlive:firebase-java-sdk:0.3.0")
2929
}
3030
```
3131

@@ -35,7 +35,7 @@ Or Maven:
3535
<dependency>
3636
<groupId>dev.gitlive</groupId>
3737
<artifactId>firebase-java-sdk</artifactId>
38-
<version>0.1.2</version>
38+
<version>0.3.0</version>
3939
</dependency>
4040
```
4141

@@ -95,9 +95,11 @@ The following libraries are available for the various Firebase products.
9595
| Service or Product | Port of Android version |
9696
|---------------------------------------------------------------------------------|:------------------------|
9797
| [Authentication](https://firebase.google.com/docs/auth) | N/A[^1] |
98-
| [Cloud Firestore](https://firebase.google.com/docs/firestore) | `24.1.2` |
99-
| [Realtime Database](https://firebase.google.com/docs/database) | `20.1.0` |
100-
| [Cloud Functions](https://firebase.google.com/docs/functions) | `20.1.0` |
98+
| [Cloud Firestore](https://firebase.google.com/docs/firestore) | `24.10.0` |
99+
| [Realtime Database](https://firebase.google.com/docs/database) | `20.3.0` |
100+
| [Cloud Functions](https://firebase.google.com/docs/functions) | `20.4.0` |
101+
| [Remote Config](https://firebase.google.com/docs/remote-config) | `21.6.0` |
102+
| [Installations](https://firebase.google.com/docs/projects/manage-installations) | `17.2.0` |
101103

102104
[^1]: Google has not open-sourced the Firebase Auth implementation for Android so a basic implementation using the Rest API is provided.
103105

@@ -119,11 +121,10 @@ Currently, the following limitations are observed:
119121
- `addAuthStateListener`
120122
- `removeAuthStateListener`
121123
- `signOut`
122-
* Cloud Firestore does not support [Offline Persistence](https://firebase.google.com/docs/firestore/manage-data/enable-offline#configure_offline_persistence) or [SSL](https://firebase.google.com/docs/reference/android/com/google/firebase/firestore/FirebaseFirestoreSettings.Builder#setSslEnabled(boolean)), 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:
123125
```java
124126
FirebaseFirestoreSettings settings = new FirebaseFirestoreSettings.Builder(db.getFirestoreSettings())
125127
.setPersistenceEnabled(false)
126-
.setSslEnabled(false)
127128
.build();
128129
db.setFirestoreSettings(settings);
129130
```

0 commit comments

Comments
 (0)