Skip to main content

All Questions

Filter by
Sorted by
Tagged with
1 vote
0 answers
105 views

I'm working on an Android app where users can add and remove restaurants from their favourites via the RestaurantPage activity. When I access the RestaurantPage activity from the UserFavourites ...
999's user avatar
  • 21
0 votes
1 answer
290 views

I have a simple Micronaut application with controller as below import com.google.api.core.ApiFuture; import com.google.auth.oauth2.GoogleCredentials; import com.google.cloud.firestore.*; import io....
San Jaisy's user avatar
  • 17.5k
0 votes
0 answers
43 views

I am using FCM Notifications in my app and I want to Open an Activity named ManageSalesMainActivity which is Not a Launcher Activity and want to pass string using pending intent. It is working fine ...
Bhanu Prakash Guptha's user avatar
0 votes
1 answer
67 views

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, ...
YT.Lu's user avatar
  • 31
0 votes
1 answer
167 views

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 ...
Thomas E's user avatar
  • 521
0 votes
1 answer
63 views

I am running Android UI tests. I use a separate Firestore DB for testing. I want to delete all documents after a test finishes. This curl command works. curl -v -X DELETE "http://127.0.0.1:8080/...
akalanka's user avatar
  • 627
0 votes
1 answer
49 views

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 ...
ngc-224's user avatar
  • 21
1 vote
1 answer
68 views

I have the following structure in Firestore: The map called lecturaBreve corresponds to the following class: public class BiblicalShort extends Biblical { private LHResponsoryShort responsorio; ...
A. Cedano's user avatar
  • 1,089
1 vote
1 answer
111 views

I started with Firestore and I created a collection MealsDev containing one element. I cannot display it in a recycler view. May you help with it? In the meantime I have already checked other posts, ...
Krzychu's user avatar
  • 143
0 votes
1 answer
220 views

I am trying to connect my Android app to my Firestore database. I can write to my database from my app, but I am unable to read from it. AndroidManifest: <?xml version="1.0" encoding=&...
connor66's user avatar
0 votes
1 answer
58 views

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 (...
Tikkar's user avatar
  • 21
1 vote
0 answers
42 views

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 ...
Tikkar's user avatar
  • 21
0 votes
1 answer
39 views

Here is the code for the LessonGroup class: public class LessonGroup implements Serializable { //properties private String studentId; private String lessonGroupId; private String ...
Camille Ma's user avatar
0 votes
1 answer
53 views

I'm using Firestore for my project, and I've noticed that for some reason, the data stored in my db has the "is" removed from the key. Here is my model in Kotlin: @Serializable data class ...
Son Nguyen's user avatar
  • 1,730
0 votes
1 answer
32 views

I'm using the Java Firestore library to access my Firestore database. I am making this Query: Query chatQuery = firestore.collection("chats") .whereEqualTo("userId", userId) ....
ZeroTerabytes's user avatar

15 30 50 per page
1
2 3 4 5
155