Skip to content

Commit 0648310

Browse files
committed
Add (Nick’s) missing imports
1 parent 57e3a9e commit 0648310

File tree

5 files changed

+5
-1
lines changed
  • firebase-auth/src/androidMain/kotlin/dev/gitlive/firebase/auth
  • firebase-database/src/androidMain/kotlin/dev/gitlive/firebase/database
  • firebase-firestore/src
  • firebase-functions/src/androidMain/kotlin/dev/gitlive/firebase/functions

5 files changed

+5
-1
lines changed

firebase-auth/src/androidMain/kotlin/dev/gitlive/firebase/auth/auth.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ import dev.gitlive.firebase.Firebase
99
import dev.gitlive.firebase.FirebaseApp
1010
import kotlinx.coroutines.channels.awaitClose
1111
import kotlinx.coroutines.flow.callbackFlow
12+
import kotlinx.coroutines.tasks.await
1213

1314
actual val Firebase.auth
1415
get() = FirebaseAuth(com.google.firebase.auth.FirebaseAuth.getInstance())

firebase-database/src/androidMain/kotlin/dev/gitlive/firebase/database/database.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ import dev.gitlive.firebase.FirebaseApp
1414
import dev.gitlive.firebase.database.ChildEvent.Type
1515
import dev.gitlive.firebase.decode
1616
import kotlinx.coroutines.channels.awaitClose
17+
import kotlinx.coroutines.coroutineScope
1718
import kotlinx.coroutines.flow.callbackFlow
1819
import kotlinx.coroutines.flow.filter
1920
import kotlinx.coroutines.flow.produceIn

firebase-firestore/src/androidMain/kotlin/dev/gitlive/firebase/firestore/firestore.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ import dev.gitlive.firebase.encode
1313
import kotlinx.coroutines.channels.awaitClose
1414
import kotlinx.coroutines.flow.callbackFlow
1515
import kotlinx.coroutines.runBlocking
16+
import kotlinx.coroutines.tasks.await
1617
import kotlinx.serialization.DeserializationStrategy
1718
import kotlinx.serialization.SerializationStrategy
1819

firebase-firestore/src/iosMain/kotlin/dev/gitlive/firebase/firestore/firestore.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
package dev.gitlive.firebase.firestore
66

77
import cocoapods.FirebaseFirestore.*
8-
import dev.teamhub.firebase.*
8+
import dev.gitlive.firebase.*
99
import kotlinx.cinterop.*
1010
import kotlinx.coroutines.CompletableDeferred
1111
import kotlinx.coroutines.channels.awaitClose

firebase-functions/src/androidMain/kotlin/dev/gitlive/firebase/functions/functions.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ import dev.gitlive.firebase.Firebase
88
import dev.gitlive.firebase.FirebaseApp
99
import dev.gitlive.firebase.decode
1010
import dev.gitlive.firebase.encode
11+
import kotlinx.coroutines.tasks.await
1112
import kotlinx.serialization.DeserializationStrategy
1213
import kotlinx.serialization.SerializationStrategy
1314
import java.util.concurrent.TimeUnit

0 commit comments

Comments
 (0)