Skip to content

Commit b3b6f4a

Browse files
committedMar 15, 2023
Added publish function for crashlytics.
1 parent ce715f2 commit b3b6f4a

File tree

13 files changed

+58
-49
lines changed

13 files changed

+58
-49
lines changed
 

‎.github/workflows/publish.yml

+9
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,15 @@ jobs:
103103
uses: eskatos/gradle-command-action@v1
104104
with:
105105
arguments: :firebase-perf:publish
106+
env:
107+
sonatypeUsername: ${{ secrets.SONATYPEUSERNAME }}
108+
sonatypePassword: ${{ secrets.SONATYPEPASSWORD }}
109+
ORG_GRADLE_PROJECT_signingKey: ${{ secrets.GPG_PRIVATE_KEY }}
110+
ORG_GRADLE_PROJECT_signingPassword: ${{ secrets.PASSPHRASE }}
111+
- name: Publish Firebase Crashlytics
112+
uses: eskatos/gradle-command-action@v1
113+
with:
114+
arguments: :firebase-crashlytics:publish
106115
env:
107116
sonatypeUsername: ${{ secrets.SONATYPEUSERNAME }}
108117
sonatypePassword: ${{ secrets.SONATYPEPASSWORD }}

‎README.md

+20-20
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,16 @@ The following libraries are available for the various Firebase products.
1212

1313
| Service or Product | Gradle Dependency | API Coverage |
1414
|---------------------------------------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------------|:-------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
15-
| [Authentication](https://firebase.google.com/docs/auth) | [`dev.gitlive:firebase-auth:1.7.1`](https://search.maven.org/artifact/dev.gitlive/firebase-auth/1.7.1/pom) | [![80%](https://img.shields.io/badge/-80%25-green?style=flat-square)](/firebase-auth/src/commonMain/kotlin/dev/gitlive/firebase/auth/auth.kt) |
16-
| [Realtime Database](https://firebase.google.com/docs/database) | [`dev.gitlive:firebase-database:1.7.1`](https://search.maven.org/artifact/dev.gitlive/firebase-database/1.7.1/pom) | [![70%](https://img.shields.io/badge/-70%25-orange?style=flat-square)](/firebase-database/src/commonMain/kotlin/dev/gitlive/firebase/database/database.kt) |
17-
| [Cloud Firestore](https://firebase.google.com/docs/firestore) | [`dev.gitlive:firebase-firestore:1.7.1`](https://search.maven.org/artifact/dev.gitlive/firebase-firestore/1.7.1/pom) | [![60%](https://img.shields.io/badge/-60%25-orange?style=flat-square)](/firebase-firestore/src/commonMain/kotlin/dev/gitlive/firebase/firestore/firestore.kt) |
18-
| [Cloud Functions](https://firebase.google.com/docs/functions) | [`dev.gitlive:firebase-functions:1.7.1`](https://search.maven.org/artifact/dev.gitlive/firebase-functions/1.7.1/pom) | [![80%](https://img.shields.io/badge/-80%25-green?style=flat-square)](/firebase-functions/src/commonMain/kotlin/dev/gitlive/firebase/functions/functions.kt) |
19-
| [Cloud Messaging](https://firebase.google.com/docs/cloud-messaging) | [`dev.gitlive:firebase-messaging:1.7.1`](https://search.maven.org/artifact/dev.gitlive/firebase-messaging/1.7.1/pom) | ![0%](https://img.shields.io/badge/-0%25-lightgrey?style=flat-square) |
20-
| [Cloud Storage](https://firebase.google.com/docs/storage) | [`dev.gitlive:firebase-storage:1.7.1`](https://search.maven.org/artifact/dev.gitlive/firebase-storage/1.7.1/pom) | ![0%](https://img.shields.io/badge/-0%25-lightgrey?style=flat-square) |
21-
| [Installations](https://firebase.google.com/docs/projects/manage-installations) | [`dev.gitlive:firebase-installations:1.7.1`](https://search.maven.org/artifact/dev.gitlive/firebase-installations/1.7.1/pom) | [![90%](https://img.shields.io/badge/-90%25-green?style=flat-square)](/firebase-installations/src/commonMain/kotlin/dev/gitlive/firebase/installations/installations.kt) |
22-
| [Remote Config](https://firebase.google.com/docs/remote-config) | [`dev.gitlive:firebase-config:1.7.1`](https://search.maven.org/artifact/dev.gitlive/firebase-config/1.7.1/pom) | ![20%](https://img.shields.io/badge/-20%25-orange?style=flat-square) |
23-
| [Performance](https://firebase.google.com/docs/perf-mon) | [`dev.gitlive:firebase-perf:1.7.1`](https://search.maven.org/artifact/dev.gitlive/firebase-perf/1.7.1/pom) | ![1%](https://img.shields.io/badge/-1%25-orange?style=flat-square) |
24-
| [Crashlytics](https://firebase.google.com/docs/crashlytics) | [`dev.gitlive:firebase-crashlytics:1.7.1`](https://search.maven.org/artifact/dev.gitlive/firebase-crashlytics/1.7.1/pom) | ![80%](https://img.shields.io/badge/-1%25-orange?style=flat-square) |
15+
| [Authentication](https://firebase.google.com/docs/auth) | [`dev.gitlive:firebase-auth:1.7.2`](https://search.maven.org/artifact/dev.gitlive/firebase-auth/1.7.2/pom) | [![80%](https://img.shields.io/badge/-80%25-green?style=flat-square)](/firebase-auth/src/commonMain/kotlin/dev/gitlive/firebase/auth/auth.kt) |
16+
| [Realtime Database](https://firebase.google.com/docs/database) | [`dev.gitlive:firebase-database:1.7.2`](https://search.maven.org/artifact/dev.gitlive/firebase-database/1.7.2/pom) | [![70%](https://img.shields.io/badge/-70%25-orange?style=flat-square)](/firebase-database/src/commonMain/kotlin/dev/gitlive/firebase/database/database.kt) |
17+
| [Cloud Firestore](https://firebase.google.com/docs/firestore) | [`dev.gitlive:firebase-firestore:1.7.2`](https://search.maven.org/artifact/dev.gitlive/firebase-firestore/1.7.2/pom) | [![60%](https://img.shields.io/badge/-60%25-orange?style=flat-square)](/firebase-firestore/src/commonMain/kotlin/dev/gitlive/firebase/firestore/firestore.kt) |
18+
| [Cloud Functions](https://firebase.google.com/docs/functions) | [`dev.gitlive:firebase-functions:1.7.2`](https://search.maven.org/artifact/dev.gitlive/firebase-functions/1.7.2/pom) | [![80%](https://img.shields.io/badge/-80%25-green?style=flat-square)](/firebase-functions/src/commonMain/kotlin/dev/gitlive/firebase/functions/functions.kt) |
19+
| [Cloud Messaging](https://firebase.google.com/docs/cloud-messaging) | [`dev.gitlive:firebase-messaging:1.7.2`](https://search.maven.org/artifact/dev.gitlive/firebase-messaging/1.7.2/pom) | ![0%](https://img.shields.io/badge/-0%25-lightgrey?style=flat-square) |
20+
| [Cloud Storage](https://firebase.google.com/docs/storage) | [`dev.gitlive:firebase-storage:1.7.2`](https://search.maven.org/artifact/dev.gitlive/firebase-storage/1.7.2/pom) | ![0%](https://img.shields.io/badge/-0%25-lightgrey?style=flat-square) |
21+
| [Installations](https://firebase.google.com/docs/projects/manage-installations) | [`dev.gitlive:firebase-installations:1.7.2`](https://search.maven.org/artifact/dev.gitlive/firebase-installations/1.7.2/pom) | [![90%](https://img.shields.io/badge/-90%25-green?style=flat-square)](/firebase-installations/src/commonMain/kotlin/dev/gitlive/firebase/installations/installations.kt) |
22+
| [Remote Config](https://firebase.google.com/docs/remote-config) | [`dev.gitlive:firebase-config:1.7.2`](https://search.maven.org/artifact/dev.gitlive/firebase-config/1.7.2/pom) | ![20%](https://img.shields.io/badge/-20%25-orange?style=flat-square) |
23+
| [Performance](https://firebase.google.com/docs/perf-mon) | [`dev.gitlive:firebase-perf:1.7.2`](https://search.maven.org/artifact/dev.gitlive/firebase-perf/1.7.2/pom) | ![1%](https://img.shields.io/badge/-1%25-orange?style=flat-square) |
24+
| [Crashlytics](https://firebase.google.com/docs/crashlytics) | [`dev.gitlive:firebase-crashlytics:1.7.2`](https://search.maven.org/artifact/dev.gitlive/firebase-crashlytics/1.7.2/pom) | ![80%](https://img.shields.io/badge/-1%25-orange?style=flat-square) |
2525

2626

2727

@@ -203,16 +203,16 @@ If you are building a Kotlin multiplatform library which will be consumed from J
203203

204204
```json
205205
"dependencies": {
206-
"@gitlive/firebase-auth": "1.7.1",
207-
"@gitlive/firebase-config": "1.7.1",
208-
"@gitlive/firebase-database": "1.7.1",
209-
"@gitlive/firebase-firestore": "1.7.1",
210-
"@gitlive/firebase-functions": "1.7.1",
211-
"@gitlive/firebase-installations": "1.7.1",
212-
"@gitlive/firebase-messaging": "1.7.1",
213-
"@gitlive/firebase-storage": "1.7.1"
214-
"@gitlive/firebase-perf": "1.7.1"
215-
"@gitlive/firebase-crashlytics": "1.7.1"
206+
"@gitlive/firebase-auth": "1.7.2",
207+
"@gitlive/firebase-config": "1.7.2",
208+
"@gitlive/firebase-database": "1.7.2",
209+
"@gitlive/firebase-firestore": "1.7.2",
210+
"@gitlive/firebase-functions": "1.7.2",
211+
"@gitlive/firebase-installations": "1.7.2",
212+
"@gitlive/firebase-messaging": "1.7.2",
213+
"@gitlive/firebase-storage": "1.7.2"
214+
"@gitlive/firebase-perf": "1.7.2"
215+
"@gitlive/firebase-crashlytics": "1.7.2"
216216
}
217217
```
218218

‎firebase-app/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@gitlive/firebase-app",
3-
"version": "1.7.1",
3+
"version": "1.7.2",
44
"description": "Wrapper around firebase for usage in Kotlin Multiplatform projects",
55
"main": "firebase-app.js",
66
"scripts": {
@@ -23,7 +23,7 @@
2323
},
2424
"homepage": "https://github.com/GitLiveApp/firebase-kotlin-sdk",
2525
"dependencies": {
26-
"@gitlive/firebase-common": "1.7.1",
26+
"@gitlive/firebase-common": "1.7.2",
2727
"firebase": "9.7.0",
2828
"kotlin": "1.6.10",
2929
"kotlinx-coroutines-core": "1.6.1-native-mt"

‎firebase-auth/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@gitlive/firebase-auth",
3-
"version": "1.7.1",
3+
"version": "1.7.2",
44
"description": "Wrapper around firebase for usage in Kotlin Multiplatform projects",
55
"main": "firebase-auth.js",
66
"scripts": {
@@ -23,7 +23,7 @@
2323
},
2424
"homepage": "https://github.com/GitLiveApp/firebase-kotlin-sdk",
2525
"dependencies": {
26-
"@gitlive/firebase-app": "1.7.1",
26+
"@gitlive/firebase-app": "1.7.2",
2727
"firebase": "9.7.0",
2828
"kotlin": "1.6.10",
2929
"kotlinx-coroutines-core": "1.6.1-native-mt"

‎firebase-common/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@gitlive/firebase-common",
3-
"version": "1.7.1",
3+
"version": "1.7.2",
44
"description": "Wrapper around firebase for usage in Kotlin Multiplatform projects",
55
"main": "firebase-common.js",
66
"scripts": {

‎firebase-config/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@gitlive/firebase-config",
3-
"version": "1.7.1",
3+
"version": "1.7.2",
44
"description": "Wrapper around firebase for usage in Kotlin Multiplatform projects",
55
"main": "firebase-config.js",
66
"scripts": {
@@ -23,7 +23,7 @@
2323
},
2424
"homepage": "https://github.com/GitLiveApp/firebase-kotlin-sdk",
2525
"dependencies": {
26-
"@gitlive/firebase-app": "1.7.1",
26+
"@gitlive/firebase-app": "1.7.2",
2727
"firebase": "9.7.0",
2828
"kotlin": "1.6.10",
2929
"kotlinx-coroutines-core": "1.6.1-native-mt"

‎firebase-crashlytics/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@gitlive/firebase-crashlytics",
3-
"version": "1.7.1",
3+
"version": "1.7.2",
44
"description": "Wrapper around firebase for usage in Kotlin Multiplatform projects",
55
"main": "firebase-crashlytics.js",
66
"scripts": {
@@ -23,7 +23,7 @@
2323
},
2424
"homepage": "https://github.com/GitLiveApp/firebase-kotlin-sdk",
2525
"dependencies": {
26-
"@gitlive/firebase-app": "1.7.1",
26+
"@gitlive/firebase-app": "1.7.2",
2727
"firebase": "9.7.0",
2828
"kotlin": "1.6.10",
2929
"kotlinx-coroutines-core": "1.6.1-native-mt"

‎firebase-database/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@gitlive/firebase-database",
3-
"version": "1.7.1",
3+
"version": "1.7.2",
44
"description": "Wrapper around firebase for usage in Kotlin Multiplatform projects",
55
"main": "firebase-database.js",
66
"scripts": {
@@ -23,7 +23,7 @@
2323
},
2424
"homepage": "https://github.com/GitLiveApp/firebase-kotlin-sdk",
2525
"dependencies": {
26-
"@gitlive/firebase-app": "1.7.1",
26+
"@gitlive/firebase-app": "1.7.2",
2727
"firebase": "9.7.0",
2828
"kotlin": "1.6.10",
2929
"kotlinx-coroutines-core": "1.6.1-native-mt"

‎firebase-firestore/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@gitlive/firebase-firestore",
3-
"version": "1.7.1",
3+
"version": "1.7.2",
44
"description": "Wrapper around firebase for usage in Kotlin Multiplatform projects",
55
"main": "firebase-firestore.js",
66
"scripts": {
@@ -23,7 +23,7 @@
2323
},
2424
"homepage": "https://github.com/GitLiveApp/firebase-kotlin-sdk",
2525
"dependencies": {
26-
"@gitlive/firebase-app": "1.7.1",
26+
"@gitlive/firebase-app": "1.7.2",
2727
"firebase": "9.7.0",
2828
"kotlin": "1.6.10",
2929
"kotlinx-coroutines-core": "1.6.1-native-mt"

‎firebase-functions/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@gitlive/firebase-functions",
3-
"version": "1.7.1",
3+
"version": "1.7.2",
44
"description": "Wrapper around firebase for usage in Kotlin Multiplatform projects",
55
"main": "firebase-functions.js",
66
"scripts": {
@@ -23,7 +23,7 @@
2323
},
2424
"homepage": "https://github.com/GitLiveApp/firebase-kotlin-sdk",
2525
"dependencies": {
26-
"@gitlive/firebase-app": "1.7.1",
26+
"@gitlive/firebase-app": "1.7.2",
2727
"firebase": "9.7.0",
2828
"kotlin": "1.6.10",
2929
"kotlinx-coroutines-core": "1.6.1-native-mt"

‎firebase-installations/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@gitlive/firebase-installations",
3-
"version": "1.7.1",
3+
"version": "1.7.2",
44
"description": "Wrapper around firebase for usage in Kotlin Multiplatform projects",
55
"main": "firebase-installations.js",
66
"scripts": {
@@ -23,7 +23,7 @@
2323
},
2424
"homepage": "https://github.com/GitLiveApp/firebase-kotlin-sdk",
2525
"dependencies": {
26-
"@gitlive/firebase-app": "1.7.1",
26+
"@gitlive/firebase-app": "1.7.2",
2727
"firebase": "9.7.0",
2828
"kotlin": "1.6.10",
2929
"kotlinx-coroutines-core": "1.6.1-native-mt"

‎firebase-perf/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@gitlive/firebase-perf",
3-
"version": "1.7.1",
3+
"version": "1.7.2",
44
"description": "Wrapper around firebase for usage in Kotlin Multiplatform projects",
55
"main": "firebase-perf.js",
66
"scripts": {
@@ -23,7 +23,7 @@
2323
},
2424
"homepage": "https://github.com/GitLiveApp/firebase-kotlin-sdk",
2525
"dependencies": {
26-
"@gitlive/firebase-app": "1.7.1",
26+
"@gitlive/firebase-app": "1.7.2",
2727
"firebase": "9.7.0",
2828
"kotlin": "1.6.10",
2929
"kotlinx-coroutines-core": "1.6.1-native-mt"

‎gradle.properties

+10-10
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,13 @@ firebase-perf.skipIosTests=false
3535
firebase-crashlytics.skipIosTests=false
3636

3737
# Versions:
38-
firebase-app.version=1.7.1
39-
firebase-auth.version=1.7.1
40-
firebase-common.version=1.7.1
41-
firebase-config.version=1.7.1
42-
firebase-database.version=1.7.1
43-
firebase-firestore.version=1.7.1
44-
firebase-functions.version=1.7.1
45-
firebase-installations.version=1.7.1
46-
firebase-perf.version=1.7.1
47-
firebase-crashlytics.version=1.7.1
38+
firebase-app.version=1.7.2
39+
firebase-auth.version=1.7.2
40+
firebase-common.version=1.7.2
41+
firebase-config.version=1.7.2
42+
firebase-database.version=1.7.2
43+
firebase-firestore.version=1.7.2
44+
firebase-functions.version=1.7.2
45+
firebase-installations.version=1.7.2
46+
firebase-perf.version=1.7.2
47+
firebase-crashlytics.version=1.7.2

0 commit comments

Comments
 (0)
Failed to load comments.