firebase-kotlin-sdk icon indicating copy to clipboard operation
firebase-kotlin-sdk copied to clipboard

A Kotlin-first SDK for Firebase

Results 208 firebase-kotlin-sdk issues
Sort by recently updated
recently updated
newest added
trafficstars

I'm trying to integrate the firebase-kotlin-sdk into my Kotlin Multiplatform project, but I'm finding it challenging due to the lack of documentation and tutorials.

I have this simple function on my KMM repo: ``` suspend fun getUserProfile(): UserInfo? { val start = Clock.System.now() val result = firestore.collection("User").document(auth.currentUser!!.uid).snapshots .mapLatest { user -> user.data() } .firstOrNull()...

Hi, while using signInWithEmailAndPassword in FirebaseAuth for desktop, we are getting this exception while we are collecting authStateChanged flow and try to access displayName. ``` Exception in thread "AWT-EventQueue-0" kotlin.NotImplementedError:...

Hi there! I'm using the Firebase Analytics from GitLive version 2.1.0 in a Kotlin with Compose Multiplatform - Kobweb project for a website. I am trying to log the following...

I am trying to get some documents from the firestore where a field is bigger that a Timestamp value but the query is empty. What I tried with documents that...

Is there any plan to add support for accessing the non-default database in Firestore?

Since the Kotlin extensions (KTX) APIs have been added to their respective main modules, this library should also drop using `ktx` dependencies to avoid the end-users seeing warnings/issues like: ```...

Why my Firebase cloud functions are slow. I have tested a simple function and it takes more than 1 second every time. this is my code in Kotlin: coroutineScope.launch(Dispatchers.IO) {...

I'm trying to use `ServerTimestamp` on one of my entity data classes from Firestore. I have tried following what the README says and I added the `Timestamp` like: ``` @Serializable...