Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to set app version on Firebase for web

Using firebase on a website, is there a way to set the app version on user properties? Every new release of the UI, we bump the package version and make it available to the app to use in logs.

I would like to set the app version on user properties, so that we can utilize the firebase app version features.

  • Remote config greater then version
  • Crashes on version
  • user upgraded to latest version
  • ...

I realize the the concept that this is web and users are on the latest version, but with service workers and spa this is just not the case. We have auto prompting for users to update to latest version, but that does not mean someone is on the latest version...

like image 210
Connor Ross Avatar asked Oct 12 '25 13:10

Connor Ross


1 Answers

This is currently not available. The app version is one of the automatically collected user properties by the SDK, which is only available for Android and iOS applications.

I'd suggest you reach out to Firebase support and file a feature request for this.

like image 162
looptheloop88 Avatar answered Oct 16 '25 06:10

looptheloop88