All Questions
462 questions
0
votes
0
answers
24
views
Default FirebaseApp is not initialized in this process - Maui [duplicate]
I recently implemented firebase push notification into my maui app and facing a strange issue,
sometime the application works fine and sometime it trows exception,saying:
Default FirebaseApp is not ...
0
votes
0
answers
82
views
Default FirebaseApp is not initialized in this process,Make sure to call FirebaseApp.initializeApp(Context) first, MAUI ios
I recently migrated my live Xamarin.Forms iOS app to .NET MAUI and implemented Firebase push notifications using plugin.firebase.cloudmessaging in the MAUI version of the app.
getting exception :
: '...
0
votes
0
answers
23
views
Firebase crashlytics for Xamarin iOS app strips too much in it's crashlogs
So I am trying to collect crashlogs from a Xamarin Native iOS app using firebase crashlytics, but the crashlogs won't let me identify where the crashes are coming from.
Here's test code I'm trying to ...
1
vote
1
answer
1k
views
Compilation Failed in .NET MAUI Project Due to Multiple Definitions of androidx.collection.ArraySetKt When Using Firebase and AndroidX Packages
First, I'm a complete noob on this. But I have a working MAUI project that builds. But when trying to start using Firebase I run into a problem that I've spent 10 hours googling and chaptGPTing. The ...
2
votes
1
answer
4k
views
What version of the Google Analytics for Firebase iOS SDK is used in the latest Xamarin.Firebase.iOS.Analytics nuget package?
I received a notification on Firebase saying:
Action Recommended: Update the Google Analytics for Firebase (GA4F) iOS SDK
Update to version 10.24.0 or later to avoid potential impact resulting from ...
1
vote
0
answers
98
views
How to update android widget by receiving push notification
I want to update my android widget when push notification received (even if my app process killed). There is any ways to do it, or I can update widget only by tap on it?
Now I implemented firebase ...
0
votes
1
answer
174
views
After adding the packages of "Xamarin.Firebase.Messaging", getting error related to JAVA0000 "Compilation failed"
I need to implement Firebase push notification, so I added the packages of latest version into my Maui .net8.0 project. Here are the packages added in csproj file for push notifications. I'm getting ...
0
votes
1
answer
47
views
Is it possible to read data from firebase without an event listener?
I have a simple android application that I created using xamarin. I want to retrieve information from a specific location in my data base whenever a user press a certain button. I'm using the real ...
0
votes
0
answers
53
views
Create Table inside table using Firebase and Xamarin Forms
I'm learning how to use Firebase, and I came across a data storage problem.
I am creating a crud, to save contacts, however, first I create the login system and store the data in the Firebase Users ...
0
votes
2
answers
111
views
Xamarin iOS Firebase Analytics
I don't understand how to log event with array items in parameters.
For example, if I need to log something like EventNamesConstants.Login I can to do
var parameters = new Dictionary<object, object&...
0
votes
0
answers
179
views
Firebase Push Notification TokenRefresh - Best Practices to ensure proper token is updated [duplicate]
I am working to implement push notifications for Android & iOS. Using the Firebase Cloud Messaging service and the Plugin.FirebasePushnotification by Rendy Del Rossaio nuget package. I have a ...
0
votes
0
answers
213
views
Try to add Firebase analytics to Xamarin Android App
I try to add firebase analytics to my xamarain android app and whenn I add the nuget "Xamarin.Firebase.Analytics/121.3.0.2" I get the following error in the console when I start the App.
...
0
votes
1
answer
50
views
Appropriate datatype for retrieveing a Map field of Arrays from Firestore?
I am trying to retrieve a Map field from a Firestore database in a Xamarin.Forms project. The Map field stores 3 Array items. The 1st Array has elements of type string and the 2nd and the 3rd ones ...
0
votes
0
answers
60
views
"Failed to get document because the client is offline" error in Xamarin.Forms project
Here is my code of App.xaml.cs file of a Xamarin.Forms project:
public partial class App : Application
{
public App()
{
CrossFirebaseCrashlytics.Current....
0
votes
2
answers
124
views
Android firebase push notification disappears after few seconds, how to hold until taking any action on display?
I have created a android local notification using NotificationCompat.Builder, having two action "Accept" and "Reject", but after showing notification it hides after few seconds at ...