All Questions
10,561 questions
0
votes
1
answer
32
views
Firestore has trouble initialize db in Docker
I'm making a Java application which will connect to a Firestore db on GCP to do some data read and write, it all worked well if I build and run with mvn, but when I build it into a Docker container, ...
0
votes
1
answer
47
views
run firebase emulator in spring boot test
I need to migrate some documents from one collection to another. This migration runs when the application starts up. It checks if the migration is finished, if it's not, it will run it otherwise it ...
0
votes
1
answer
90
views
firebase database user submitted posts retrieve to android recycler view in date wise
This is my HomeView Fragment Activity
public class HomeView extends Fragment {
private View view;
private RecyclerView recentPosts;
private DatabaseReference donor_ref;
FirebaseAuth mAuth;
private ...
0
votes
1
answer
43
views
Synchronise two event listeners / Using nested queries for firestore
I need to fill a RecyclerView with the trip data. This means I need to retrieve data from two different collections from my Firestore database.
collection 1: "users" which contains all data ...
0
votes
1
answer
56
views
Firebase Google Sign in not working after uploading app on Production Mode [duplicate]
i had an app in android in java, I used Firebase Google sign in on that, My App is working fine while testing with Signed release but in production mode i getting API Exception 10, My SHA key was also ...
1
vote
1
answer
340
views
Facing difficulty in multicast push notification in java spring boot
My requirement is that i am doing a news portal project where i want to send latest added news to all the tokens which i have. The issue i am facing is that, i am not able to use sendMulticast ...
0
votes
0
answers
51
views
Firebase Push Notifications Failing on Dev Server: java.io.IOException Access Token Error in Java
I am encountering the following exception when sending push notifications (both token-based and topic-based) using Firebase in my Java Play Framework application on the development server:
Caused by: ...
1
vote
1
answer
54
views
Why is Firestore not mapping a field of type private?
I have the following structure in Firestore:
The map called lecturaBreve corresponds to the following class:
public class BiblicalShort extends Biblical {
private LHResponsoryShort responsorio;
...
0
votes
1
answer
34
views
Firebase device token based push notifications not working in Java Play framework
I am using Java version 8, with Play framework version 2.2.6.
My firbase-admin dependency version is 6.8.1.
I tried initializing firebase in my code with the json file provided. Sharing the ...
0
votes
0
answers
33
views
How do I pass parameters to a callable firebase cloud function in Java android
When I call the firebase function inside my java code it sends { '0': '' } as the parameters instead of the actual data. I've tries changing it so it only sends a single token instead of several, but ...
0
votes
0
answers
183
views
What causes android.os.MessageQueue.nativePollOnce to appear in stack traces, and how can I resolve it?
I am firebase a ARN in my Android application, and I see android.os.MessageQueue.nativePollOnce repeatedly in the stack trace. Below is a snippet of the
main (native):tid=1 systid=11683
#00 pc ...
1
vote
1
answer
1k
views
Error: Could not find or load main class worker.org.gradle.process.internal.worker.GradleWorkerMain after installing Firebase in Flutter project
I am encountering an error when trying to build my Flutter project after integrating Firebase into it. Initially, I was trying to install Firebase dependencies (including firebase_core and ...
0
votes
0
answers
15
views
java.lang.NullPointerException: Attempt to invoke virtual method 'boolean java.lang.String.equals(java.lang.Object) on a null object referenceat atttt [duplicate]
I am getting this error at runtime.
enter image description here
ERROR:
FATAL EXCEPTION: main
Process: com.example.simplesocialmediaapp, PID: 5101
java.lang.NullPointerException: Attempt to invoke ...
0
votes
1
answer
48
views
Firebase Custom Logs Only Showing the Latest Entry
I use the following methods to report custom logs,
FirebaseCrashlytics.getInstance().log(msg);
FirebaseCrashlytics.getInstance().recordException(new Throwable("Custom log end"));
However, ...
0
votes
0
answers
32
views
Getting Object does not exist at location. Code: -13010 HttpResult: 404 Error trying to add an image to Firebase Storage
I'm using Android Studio with Java to make an android app, I'm trying to let the user pick an image from their gallery then upload that to firebase but I keep getting this error. I've already ...