
Integrates Firebase services like Authentication, Firestore, Storage, and Cloud Functions with a coroutine-based API style, enhancing backend app development experience through streamlined asynchronous operations and serialization.
Step 1: Create a Firebase Project
Link to Firebase Setup Documentation: https://firebase.google.com/docs/android/setup
Step 2: Register Your App With Firebase
Step 3: Add a Firebase Configuration File
Step 4: Add Firebase SDKs to Your App
You can access different services using instances:
val auth = FirebaseAuth.instance
val firestore = FirebaseFirestore.instance
val storage = FirebaseStorage.instance
val functions = FirebaseFunctions.instanceSo far, there are two platforms that Flare supports: Android and iOS. Within these two platforms, Flare supports various services that can help with Authentification, Firestore, Storage, and Cloud Functions. In the future, the hope is to add support for JavaScript and other services.
Flare has a very functional API style. It uses Kotlin coroutines and Kotlin Serialization for FireStore, making your backend app development experience seamless and problem free.
Step 1: Create a Firebase Project
Link to Firebase Setup Documentation: https://firebase.google.com/docs/android/setup
Step 2: Register Your App With Firebase
Step 3: Add a Firebase Configuration File
Step 4: Add Firebase SDKs to Your App
You can access different services using instances:
val auth = FirebaseAuth.instance
val firestore = FirebaseFirestore.instance
val storage = FirebaseStorage.instance
val functions = FirebaseFunctions.instanceSo far, there are two platforms that Flare supports: Android and iOS. Within these two platforms, Flare supports various services that can help with Authentification, Firestore, Storage, and Cloud Functions. In the future, the hope is to add support for JavaScript and other services.
Flare has a very functional API style. It uses Kotlin coroutines and Kotlin Serialization for FireStore, making your backend app development experience seamless and problem free.