Tag: Firebase

How to implement Firebase Firestore in Kotlin Multiplatform Mobile (KMM) with Compose-Multiplatform

A simple solution to use shared Kotlin code to develop an app for iOS and Android simultaneously, using compose-multiplatform. What made me share this post was that when I was learning Kotlin Multiplatform I found a problem. Firebase doesn’t have a library that supports Kotlin nati...

Build a Collaborative Pixel Art App With Flutter and Firebase

Introduction You’ve probably heard about r/place or z/place recently and if you didn’t, you might wonder what am I talking about. Well, those are collaborative projects and social experiments on which users can edit a canvas by changing pixels’ colors one at ...

Pinball Powered by Flutter and Firebase

For Google I/O, we teamed up with the Flutter team to reimagine a classic pinball game built using Flutter and Firebase. Here’s how we brought I/O Pinball to life on the web with the help of the Flame game engine. Game development essentials The Flutter framework is a great cho...

Why I Chose Google Firebase as My Server Solution for Unreal Engine 5

So, long story short — I am working on an online multiplayer RPG game on Unreal Engine 5, and I chose Google’s Firebase for the server solution instead of the traditional Unreal headless server. But why? Well, before diving deeper into the why, I need to establish conte...

Why You Should Use Firebase Functions With A Service Account

firebase-tools is a popular library built by Google providing abstractions to develop and deploy Firebase applications. firebase-tools is the recommended way for deploying serverless functions to Firebase / Google Cloud. Firebase is a service built on top of Google...

Firebase Performance Android Java Integration Steps

Add Internet permission in manifest <uses-permission android:name="android.permission.INTERNET" />Mani 2. Build gradle add in perf plugin // Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { ext.kotlin_...

Add Firebase Crashlytics in android java

Insert Firebase Crashlytics in app build.gradle to get plugin plugins { id 'com.android.application' id 'com.google.firebase.crashlytics' id 'com.google.gms.google-services' } dependencies { implementation 'com.google.firebase:firebase-crashly...

Why You Should Use Firebase Functions With A Service Account

firebase-tools is a popular library built by Google providing abstractions to develop and deploy Firebase applications. firebase-tools is the recommended way for deploying serverless functions to Firebase / Google Cloud. Firebase is a service built on top of Google...

Why You Should Use Firebase Functions With A Service Account

I have used Firebase for about two years to develop a web application. A while back, I also started using native Google Cloud features like Secret Manager to store secrets directly in the cloud. And precisely, the usage of Secret Manager should reveal a fatal flaw in the standard setup of&...