All Questions
Tagged with google-cloud-firestore android
5,760
questions
0
votes
0
answers
15
views
Fetching data from Firebase to Android App
I am trying to fetch task data from firestore: I have set the permissions to enable access for my app. However I just get the title and nothing else on my screen. In Logcat I get this error:
https://...
0
votes
1
answer
56
views
Firestore saves data locally on device but does not push to Firebase Console
I'm working on a Flutter app where I want to save entries into Firebase Firestore under a user-specific subcollection. The data seems to be added successfully to the device, but it never appears in ...
0
votes
1
answer
34
views
My android app doesn't recognize my adapter. No adapter attached skipping layout
I'm making a journal app and whenever I try to use the menu on the toolbar, it says:
o adapter attached skipping layout
A> nd doesn't allow me to add another journal to my journal list
(...
1
vote
0
answers
27
views
Android application doesn't save data on firebase firestore console site
I tried putting firestore using the option in Android Studio which is in "Tools" and I also tried putting it directly (putting the dependencies and everything else). Also I connected my ...
0
votes
0
answers
28
views
Errors while using firebase
Hi i am developing on ionic cordova and we are using firebase to listen to events. The existing flow is, we generate a payment link , open it using a inapp browser (for android) or SFViewController (...
0
votes
0
answers
38
views
LiveData is getting empty or null value in one case and correct value in other case. Can't get the reason of this behavior
I am trying to fetch "name" field from my firestore database, with two different processes. In both process, I am using a helper class to fetch data as Flow<List<String>> and ...
0
votes
0
answers
28
views
: Firebase Cloud Firestore Security Rules Preventing Data Access
I'm currently facing an issue with my Firebase Cloud Firestore setup. I have a project called "OrderFood," and I’m trying to read data from my Firestore database. However, I keep receiving ...
1
vote
0
answers
38
views
Are old users will be re-grouped or effected after modifying a running AB Testing in Firebase?
There is a running AB testing in Firebase. It has 4 variants A,B,C,D. The weight is 25% per variant. After 15 days running, I want to add a variant E.
The question is whether the old users in A-D ...
0
votes
1
answer
49
views
How to return document reference of a newly created document from repository to ViewModel in Java?
When I create a new document in the repository using database.collection("Groups").document(id).set(group) and try to return the document reference doing database.collection("Groups&...
1
vote
3
answers
134
views
app crash on FireBase FireStore connection
I'm trying to connect to firebase, but the app just keeps crashing. I understand I must be having some misaligned dependencies, but I believe I took the right versions according to:
https://firebase....
0
votes
1
answer
31
views
Trying to retrieve data from a document in Firestore but it returns null when mapping to a Java object
Here is the code for the LessonGroup class:
public class LessonGroup implements Serializable {
//properties
private String studentId;
private String lessonGroupId;
private String ...
1
vote
1
answer
30
views
Cannot find the id using Firebase Firestore Database - Android kotlin
I'm having trouble with my code or rather fetching the data from my Firebase Firestore database. The weird thing here is that every other field ASIDE from ID can be readable. I already read the logcat ...
0
votes
0
answers
34
views
How can call I multiple function using the same Firestore Transaction in Android
I need to call multiple functions using the same transaction Object, The use case is when I need to make sure that all functions execute effectively or None for instance when money is transferred I ...
0
votes
0
answers
30
views
Deserializing unknow enum from firestore
In an Android Kotlin app connected to a firestore backend,
I have the following data class:
import kotlinx.serialization.KSerializer
import kotlinx.serialization.Serializable
import kotlinx....
1
vote
2
answers
49
views
get Kotlin.Unit returned , new situation
This question is related to Android app development in Kotlin. So, the thing is I want to update the username on my app (using Firebase) and save it so the updated username shows in the profile ...