|
4 | 4 | <i>Real-time code collaboration inside any IDE</i><br/> |
5 | 5 | <br/> |
6 | 6 | <br/> |
7 | | -The Firebase Kotlin SDK is a Kotlin-first SDK for Firebase. It's API is similar to the [Firebase Android SDK Kotlin Extensions](https://firebase.github.io/firebase-android-sdk/reference/kotlin/firebase-ktx/) but also supports multiplatform projects, enabling you to use Firebase directly from your common source targeting *iOS*, *Android* or *JS*. |
| 7 | +The Firebase Kotlin SDK is a Kotlin-first SDK for Firebase. It's API is similar to the <a href="https://firebase.github.io/firebase-android-sdk/reference/kotlin/firebase-ktx/">Firebase Android SDK Kotlin Extensions</a> but also supports multiplatform projects, enabling you to use Firebase directly from your common source targeting <strong>iOS</strong>, <strong>Android</strong> or <strong>JS</strong>. |
8 | 8 |
|
9 | 9 | ## Available libraries |
10 | 10 |
|
11 | 11 | The following libraries are available for the various Firebase products. |
12 | 12 |
|
13 | 13 | | Service or Product | Gradle Dependency | API Coverage | |
14 | 14 | | ------------------------------------------------------------------------------------ | :-----------------------------------------------------------------------------------------------------------------------------------|:-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | |
15 | | -| [Authentication](https://firebase.google.com/docs/auth#kotlin-android) | [`dev.gitlive:firebase-auth:1.2.0`](https://search.maven.org/artifact/dev.gitlive/firebase-auth/1.2.0/pom) | [](/firebase-auth/src/commonMain/kotlin/dev/gitlive/firebase/auth/auth.kt) | |
16 | | -| [Realtime Database](https://firebase.google.com/docs/database#kotlin-android) | [`dev.gitlive:firebase-database:1.2.0`](https://search.maven.org/artifact/dev.gitlive/firebase-database/1.2.0/pom) | [](/firebase-database/src/commonMain/kotlin/dev/gitlive/firebase/database/database.kt) | |
17 | | -| [Cloud Firestore](https://firebase.google.com/docs/firestore#kotlin-android) | [`dev.gitlive:firebase-firestore:1.2.0`](https://search.maven.org/artifact/dev.gitlive/firebase-firestore/1.2.0/pom) | [](/firebase-firestore/src/commonMain/kotlin/dev/gitlive/firebase/firestore/firestore.kt) | |
18 | | -| [Cloud Functions](https://firebase.google.com/docs/functions/callable#kotlin-android)| [`dev.gitlive:firebase-functions:1.2.0`](https://search.maven.org/artifact/dev.gitlive/firebase-functions/1.2.0/pom) | [](/firebase-functions/src/commonMain/kotlin/dev/gitlive/firebase/functions/functions.kt) | |
19 | | -| [Cloud Messaging](https://firebase.google.com/docs/messaging#kotlin-android) | [`dev.gitlive:firebase-messaging:1.2.0`](https://search.maven.org/artifact/dev.gitlive/firebase-messaging/1.2.0/pom) |  | |
20 | | -| [Cloud Storage](https://firebase.google.com/docs/storage#kotlin-android) | [`dev.gitlive:firebase-storage:1.2.0`](https://search.maven.org/artifact/dev.gitlive/firebase-storage/1.2.0/pom) |  | |
| 15 | +| [Authentication](https://firebase.google.com/docs/auth#kotlin-android) | [`dev.gitlive:firebase-auth:1.3.0`](https://search.maven.org/artifact/dev.gitlive/firebase-auth/1.3.0/pom) | [](/firebase-auth/src/commonMain/kotlin/dev/gitlive/firebase/auth/auth.kt) | |
| 16 | +| [Realtime Database](https://firebase.google.com/docs/database#kotlin-android) | [`dev.gitlive:firebase-database:1.3.0`](https://search.maven.org/artifact/dev.gitlive/firebase-database/1.3.0/pom) | [](/firebase-database/src/commonMain/kotlin/dev/gitlive/firebase/database/database.kt) | |
| 17 | +| [Cloud Firestore](https://firebase.google.com/docs/firestore#kotlin-android) | [`dev.gitlive:firebase-firestore:1.3.0`](https://search.maven.org/artifact/dev.gitlive/firebase-firestore/1.3.0/pom) | [](/firebase-firestore/src/commonMain/kotlin/dev/gitlive/firebase/firestore/firestore.kt) | |
| 18 | +| [Cloud Functions](https://firebase.google.com/docs/functions/callable#kotlin-android)| [`dev.gitlive:firebase-functions:1.3.0`](https://search.maven.org/artifact/dev.gitlive/firebase-functions/1.3.0/pom) | [](/firebase-functions/src/commonMain/kotlin/dev/gitlive/firebase/functions/functions.kt) | |
| 19 | +| [Cloud Messaging](https://firebase.google.com/docs/messaging#kotlin-android) | [`dev.gitlive:firebase-messaging:1.3.0`](https://search.maven.org/artifact/dev.gitlive/firebase-messaging/1.3.0/pom) |  | |
| 20 | +| [Cloud Storage](https://firebase.google.com/docs/storage#kotlin-android) | [`dev.gitlive:firebase-storage:1.3.0`](https://search.maven.org/artifact/dev.gitlive/firebase-storage/1.3.0/pom) |  | |
21 | 21 |
|
22 | 22 | Is the Firebase library or API you need missing? [Create an issue](https://github.com/GitLiveApp/firebase-kotlin-sdk/issues/new?labels=API+coverage&template=increase-api-coverage.md&title=Add+%5Bclass+name%5D.%5Bfunction+name%5D+to+%5Blibrary+name%5D+for+%5Bplatform+names%5D) to request additional API coverage or be awesome and [submit a PR](https://github.com/GitLiveApp/firebase-kotlin-sdk/fork) |
23 | 23 |
|
@@ -163,12 +163,12 @@ If you are building a Kotlin multiplatform library which will be consumed from J |
163 | 163 |
|
164 | 164 | ```json |
165 | 165 | "dependencies": { |
166 | | - "@gitlive/firebase-auth": "1.2.0", |
167 | | - "@gitlive/firebase-database": "1.2.0", |
168 | | - "@gitlive/firebase-firestore": "1.2.0", |
169 | | - "@gitlive/firebase-functions": "1.2.0", |
170 | | - "@gitlive/firebase-storage": "1.2.0", |
171 | | - "@gitlive/firebase-messaging": "1.2.0" |
| 166 | + "@gitlive/firebase-auth": "1.3.0", |
| 167 | + "@gitlive/firebase-database": "1.3.0", |
| 168 | + "@gitlive/firebase-firestore": "1.3.0", |
| 169 | + "@gitlive/firebase-functions": "1.3.0", |
| 170 | + "@gitlive/firebase-storage": "1.3.0", |
| 171 | + "@gitlive/firebase-messaging": "1.3.0" |
172 | 172 | } |
173 | 173 | ``` |
174 | 174 |
|
|
0 commit comments