29 results found
-
We need support for native mobile development for Android and ios
We need support for native mobile development for Android and ios (java, kotlin, Swift, C++)
484 votesThe Android Studio Cloud release now allows you to use Android Studio from inside Firebase Studio. Try it out now and let me know your thoughts by posting on the forums (https://community.firebase.dev or by messaging me directly at https://twitter.com/kirupa)
-
Automatic Backups for Firestore
This feedback has been automatically imported from Firebase's Bug Tracker.
216 votes -
Dart SDK for Data Connect
Support using Data Connect in Dart and Flutter apps, by having a core SDK for Dart and generating Dart types from the schema.
138 votesData Connect is now in public preview with full support for Flutter, including generated SDKs!
See the docs for more: https://firebase.google.com/docs/data-connect/flutter-sdk
-
Gemini 2.5 for prototyping
Leveraging the new and improved model, Gemini 2.5 would provide an enormous performance boost for coding and improve the Firebase App Prototype feature instantly, in cost for speed.
110 votesThis has now gone live!
https://firebase.blog/posts/2025/05/announcing-gemini-25-in-firebase-studio/
-
Dark Mode for Firebase Console
The Firebase console (and the documentation) is the only light-mode page I frequent.
If it's impossible, they switch the whites to grays or something.
The page is too bright!89 votes -
FCM notifications should update iOS's Live Activities
iOS 16 introduced Live Activities, a feature that allows apps to display real-time information on the lock screen and in the notification center. Firebase Cloud Messaging (FCM) should be able to send notifications to iOS devices, including notifications that update Live Activities.
See details at https://github.com/firebase/firebase-ios-sdk/issues/10047
86 votesWe've released this implementation. In addition to the documentation, you can check out the sample code to see how to use this feature.
We'd love for you to try this out! Please open a new issue on the github repo to provide feedback.
-
SQL Aggregation Queries in GraphQL
Support aggregations (COUNT, SUM, AVG, MIN, MAX) with grouping as part of the built-in GraphQL query builder.
69 votesGreat news! Firebase Data Connect is now Generally Available (GA), and includes powerful support for Aggregation Queries.
This means you can now efficiently perform server-side calculations (like SUM, AVG, COUNT, MIN, MAX) to summarize your data and build more insightful features.
Learn how to use them in the docs: https://firebase.google.com/docs/data-connect/schemas-queries-mutations#aggregation_queries
We hope this helps you build even better apps!
-
Support multiple range query
We would like to narrow down the range so that it can be divided and synchronized, but it is not enough if there is only one range condition.
It would be great if we could narrow down it by two conditions by adding at least one more range.For example,
* TimeRange & IntRange
At Some EC services:createdAt
before 1 month ANDprice
> 5000- IntRange & IntRange
At Some graphic services: (500 >=
x
> 0) AND (0 >=y
> -500)createdAt
before 1 month ANDprice
> 5000
Query is like this:
collectionRef
.where("x", ">", 0).where("x",…53 votesIt is now possible to have range and inequality conditions on multiple fields in one query.
Find the release notes here:
- https://cloud.google.com/firestore/docs/release-notes#March_27_2024
- https://firebase.google.com/support/releases#firestore-query-explain
And the documentation here:
- https://firebase.google.com/docs/firestore/query-data/multiple-range-fields
- https://firebase.google.com/docs/firestore/query-data/multiple-range-optimize-indexes
- IntRange & IntRange
At Some graphic services: (500 >=
-
Query Pagination
Data Connect now supports LIMIT and ORDER BY.
Would love
OFFSET
and page token support to resume from a long query.49 votesWe have added support for "offset" to Data Connect table queries. We may evaluate more sophisticated pagination token support in the future, but this should unblock simple use cases!
-
48 votes
This is available for Firebase Authentication and Google Cloud Identity Platform. Firebase recently launched a UI in the Firebase console under Authentication --> Settings --> Password Policy.
-
apphosting for non us-central1
Is new app hosting feature only valid for us-central1? I am trying to deploy to europe-west2
35 votesPleased to announce that App Hosting is now available in two new regions: asia-east1 and europe-west4!
You can read more about this (and other updates) at https://firebase.blog/posts/2024/10/app-hosting-regions
-
Multitenant Firestore Database
Allows the creation of multiple databases in Firestore. In datastore, it already has out-of-the-box multitenancy support that allows logical partitioning of data. While you can separate tenants through collections, it helps if we have this natively.
27 votesThis feature shipped in preview on July 10, 2023: https://cloud.google.com/firestore/docs/release-notes#July_07_2023 -
26 votes
Please share your thoughts on our new App Hosting Emulator
https://firebase.google.com/docs/emulator-suite/use_app_hosting
-
Support set-cookie please
We know this is coming but when can we expect this? Our app hosts iframes and cookies are essential for us to know who are the user...
25 votes -
Support deployment via CLI
Allow to deploy App Hosting via CLI to be able to customize when and to where the application is deployed, instead of always on merge.
This then could also help deploy a preview version from a branch to test the changes before merging.
21 votesHi everyone, we're excited to announce that App Hosting now supports CLI deployments! Update your version of the Firebase CLI to get started with the new apphosting:rollouts:create command.
Check out our latest blog post for more details: https://firebase.blog/posts/2024/10/app-hosting-regions
-
Monorepo support
The current buildpacks used for Next.js in App Hosting can't seem to deploy monorepo setups.
I think it would be really useful if App Hosting supported this, especially since Next.js has great monorepo support via the
transpileModules
config option.19 votesWe launched support for Nx-based monorepos in App Hosting as part of our July update. If you are looking for support for different monorepo tooling, please file a new UserVoice request for your specific tooling (so that we can track interest and prioritize!).
Thanks for your feedback!
-
support for nuxt
support for nuxt
18 votesNuxt support is now live! Give it a try and let us know what you think https://nuxt.com/deploy/firebase#firebase-app-hosting-recommended
-
Allow to use customClaims in eq_expr
Im developing a multi tenant system using firebase dataconnect and it would be very usefull use a query like this:
query getServices @auth(level: USER) {
services(where: {
tenantId: {eq_expr: "auth.token.tenantId"}
})
{
id
name
}
}unfurtunately when i run this query i received the message:
query, getServices, services (where.tenantId.eqexpr: StringExpr): unsupported expression "auth.token.tenantId" (currently only "auth.uid" and "uuidV4()" are supported)9 votesWe've added more robust expression evaluation which should include being able to access custom claims in the auth token. Give it a try!
-
Custom build command
It can be necessary to run a script before the build command.
Example:
- With angular: A script to create the environment.ts files need to be run before the
ng build
. - With Prisma: A script to generate the prisma files should be run before the build the build itself.
Suggestion:
As for render.com, get in the settings Build Command options and Start Command
9 votesCheck out our docs to learn how to override build and start commands in apphosting.yaml: https://firebase.google.com/docs/app-hosting/configure#override-scripts
- With angular: A script to create the environment.ts files need to be run before the
-
Put a link to Feedback page on Firebase
The only link to the feature request is in the email. I don't want to keep the email in my mailbox in order to have the link to the UserVoice :)
Let's put a link there that will be available to only the members of the alpha group.
6 votes
- Don't see your idea?