585 questions
1
vote
0
answers
53
views
How `fetch` and filters with date works on Firebase Remote Config?
I have an APP that fetchs and updates the Remote Config values on each initialization:
remoteConfig.FetchAndActivateAsync();
I have a date filter on my Remote Config to only change some parameters ...
0
votes
0
answers
47
views
Firebase Remote Config - Reference other parameter
I have an Android app which used Firebase Remote Config. Old versions of my app references a parameter, let's call it parameterA, which has a string type. I would like to create another derived ...
1
vote
1
answer
86
views
Fetch data from FireBase remoteConfig into a SSR NextJs Component
How can I fetch data from remoteConfig into an SSR NextJs component?
On my site, I use NextJs, and I want it to be static but also use dynamic routes. For this, the dynamic route is wrapped into an ...
-1
votes
1
answer
71
views
iOS Firebase remote config's singleton instance point 0x00000000(bad access)
I make feature that fetch configs from firebase remote config store.
but I got a result that emptry value for some key.
so i debug process that fetching values and find singleton instance for ...
1
vote
2
answers
135
views
Firebase.remoteConfig => crash with IllegalStateException (but only for tiny fraction of users)
I am using firebase remote config in my app. I get rare IllegalStateException crashes when using this call (crash happens when accessing remoteConfig instance):
Firebase.remoteConfig.fetchAndActivate()...
1
vote
1
answer
227
views
Firebase Remote Config A/B Experiment Targeting based on event
I have a React Native app. I'm doing A/B testing via Firebase A/B Testing and Remote Config.
I want to run an A/B test for new users during the registration flow, when a particular event is triggered. ...
1
vote
0
answers
77
views
Tracking event from a varient of remote config in google analytics
I have a mobile app, I use remote config to create different paywalls and ABtest them to users. But as I see in the AB test feature in Firebase, all I can track is 7 different metrics. I also figure ...
0
votes
1
answer
97
views
Firebase ab test include just logged in users according to the user property
The case for just logged-in/signed up/installed users in the mobile app(iOS/android). After finishing the login user retrieves the membership type and immediately sends it to Firebase analytics as ...
1
vote
0
answers
535
views
internal remote config fetch error with flutter
If only the world could be so straightforward.
I am getting the following error when I try to configure firebase remote config:
initRemoteConfig failed with error: [firebase_remote_config/internal] ...
0
votes
0
answers
49
views
Firebase A/B Remote Config Testing Against App Versions, not parameter in a single version
I want to do A/B testing of my two versions of android app. I want to set my two app versions as my variants. Can I do that? and how? Firebase is giving me options for A/B testing only on events, not ...
0
votes
1
answer
347
views
Firebase - RemoteConfig with custom user properties return wrong value
I am setting userProperties for custom defined property (scope user) and userId in analytics using setUserProperties and setUserId, and fetching remote config based on the setted properties.
but i am ...
0
votes
1
answer
200
views
Error: [NOT_FOUND]: Template not found for project number 1234512345 and namespace firebase-server
I am seeing this error when trying to use Firebase Remote Config in a Server Action of a NextJS app:
Error: [NOT_FOUND]: Template not found for project number 1234512345 and namespace firebase-server
...
2
votes
1
answer
1k
views
Firebase Remote Config - Does JSON value have a maximum size?
I'm trying to publish changes to a JSON variable, but I get an error when publishing “A general validation error occurred.”.
enter image description here
I suspect it is because of too long JSON, it ...
0
votes
0
answers
50
views
Does Firebase Remote Config Can Survive Process Death?
With process death being the ultimate silent killer culprit of an Android app, does Firebase Remote Config survive system-initiated process death or do we still need to handle the recovery using Saved ...
1
vote
1
answer
824
views
Flutter Firebase Remote Config not updating values on when fetch and activate
I am using Firebase Remote Config and load the values on every app start. The is working. But now I also want to be able to update and fetch it. I tried it by simply calling:
await _remoteConfig....
2
votes
1
answer
264
views
Firebase Remote Config randomizationId In Server Environment
I am trying to use randomizationId for firebase remote config server environment.
I created the condition in the image.
Here is my example code below but I am always included either first percentage ...
1
vote
1
answer
402
views
How to dynamically update strings.xml in Android using JSON data from Firebase Remote Config for localization?
I'm working on an Android application that requires support for multiple languages. I am considering using Firebase Remote Config to manage localization by storing the translations in JSON format, ...
4
votes
3
answers
988
views
Setting the app language and sending to firebase config always using the device system language
I have an android app and using remote config.
I have this usecase and I want to send the app language change in that request. My app supports both English and Vietnam and the user can select their ...
1
vote
1
answer
119
views
Firebase remote config : create role "Viewer" and" Editor Remote Config"
Is it possible to create a permission role between "Viewer" and "Editor" :
I want to get all the same permission of the "Viewer" + being able to update remote config ...
3
votes
0
answers
69
views
Delayed Retrieval of Correct Firebase Remote Configuration After Updating User Properties
I am encountering a challenge with Firebase Remote Configuration. The issue pertains to a specific remote config parameter dependent on a particular user property. (We have conditional Remote Config ...
1
vote
1
answer
89
views
Firebase remoteconfig missing methods in java sdk
Google documentation says the following methods are available:
getAll
getBoolean
getDouble
getLong
getString
But neither my IDE is seeing them, nor the jar source has them.
This is what build.gradle ...
1
vote
1
answer
749
views
Why the first time the app is installed, remote config takes time to fetch data?
I noticed that each time I re-install my app OR change iPhone's region, the fetchAndActivate takes more time (> 5sec and even much more)
The Android version does not seem to be affected by that ...
-1
votes
1
answer
238
views
Customize Firebase Remote Config
I want to update the UI of Firebase Remote Config. I tried integrating Retool, but as far as I understand, it doesn't allow me to configure remote settings. Do you have any recommendations for me? How ...
2
votes
0
answers
716
views
Setting User-Specific Configurations in Firebase Remote Config
I'm working on a project where I need to enable certain configurations in Firebase Remote Config based on individual user emails. I tried couple of methods, but couldn't achieve what I want.
Approach ...
0
votes
1
answer
611
views
Value of type 'RemoteConfig' has no member 'addOnConfigUpdateListener'
When working with libraries or frameworks in programming, it’s not uncommon to encounter situations where a particular function, like addOnConfigUpdateListener, isn’t recognized or available.But i try ...
0
votes
1
answer
769
views
Does Firebase's Remote Config store the latest values locally?
I can't find a straight answer on the interwebs, and I suspect this is because the answer is negative.
Does the Firebase Remote Config SDK store locally the values it got from the API, and restore ...
0
votes
1
answer
589
views
Unity and Firebase Remote Config does not work on mobile ( Android )
So first, i initialized the firebase ( because I also use the analytics service) Firebase initiliaze
then fetch data( fetching is successful) but when i read the data it comes null when i run apk on ...
0
votes
1
answer
1k
views
RemoteConfig not working as expected to retrieve keys
I am a noob with Flutter/Dart/Firebase so I might be doing something obviously wrong:
class RemoteConfigService {
static final RemoteConfigService _singleton = RemoteConfigService._internal();
...
1
vote
1
answer
1k
views
What is ShoreBird in flutter and how does it differs from Firebase Remote Config?
I have been using Firebase Remote Config to dynamically update some features in my Flutter apps. I used it, for instance to change my app's theme depending on the user's region. Then I discovered ...
0
votes
2
answers
704
views
Firebase Remote Config using Python
I am trying to create a kivy app and I am wondering how can I use firebase remote config in my app. Here is my code:
import kivy
from kivy.uix.label import Label
from kivy.uix.screenmanager import ...
2
votes
0
answers
326
views
I want to do React native dynamic ssl pinning
I'm trying to perform SSL pinning in React Native. The main issue is: On the Android side, we aim to transfer the key and SSL pinning activation status obtained from remoteConfig to the native side ...
0
votes
1
answer
245
views
Google Firebase Config APIs
I am trying to call PUT apis of google firebase but I am getting code: 400 error.
payload = {
"parameters": [{
"key": "key1",
"defaultValue": [{
...
0
votes
1
answer
950
views
Remote config with Angular
how are you?
I'm trying to fetch a configuration that I've created in Firebase's remote config with my Angular 15 application.
The configuration is named "AllowedUsers."
Remote config IMAGE
...
0
votes
1
answer
3k
views
Firebase remote config minimum interval time
I am working on firebase remote config from web and mobile react native. While working on I have come across the following statement:
During app development,you might want to fetch more often to ...
0
votes
1
answer
2k
views
Firebase Remote Config: The provided JSON file is not formatted like a Remote Config
I am using Firebase's Remote Config service. I am trying to upload a "config from JSON file" as their options suggest, but am shown this error:
Yet, I'm not sure why my JSON is invalid. ...
0
votes
0
answers
835
views
Fetch Firebase RemoteConfig by HTTP API with variables
I want to fetch an Firebase's RemoteConfig by HTTP API from my CI pipeline and use response as a default remoteconfig built into Android app (default remoteconfig).
I found that I can use endpoint GET ...
0
votes
1
answer
1k
views
Can we use Firebase remote config for feature management on the backend? Is it recommended? [closed]
I am trying to add feature toggle/management in my NodeJS backend deployed on AWS Lambda.There were many feature management services like Unleash and LaunchDarkly but I found firebase was cheapest of ...
0
votes
1
answer
700
views
Firebase remote config - creating parameter groups programmatically
I have created a cloud function to update my remote configs in a specific manner. I followed the guide as per documentation.
Following is the code snippet.
exports.updateTenantFeatures = functions
...
1
vote
1
answer
847
views
unable to force update app using firebase remote config
I recently added firebase remote config to my app to force update user to latest version of the app from play store. but currently i am not able to do that
I added parameters for that to my firebase ...
2
votes
0
answers
289
views
Firebase A/B Testing - How to run mutually exclusive experiments
I want to run two experiments for my app using Firebase A/B Testing with Remote Config. The two test audiences must be mutually exclusive in order not to affect the results of each other.
Each ...
1
vote
0
answers
88
views
How can I resolve the issue of remote config pulling at different times in the APK compared to the Play Store version?
I have a unity mobile app in which I make a request to get the data from the server
async private Task<ConfigDataModel> GetConfigDataAsync(string userPublicId)
{
return await RequestManager....
0
votes
1
answer
253
views
Where to store my app version in Firebase?
I have a web app (Chrome extension) that needs to read the latest version number when the app starts and force users to update if needed. The app is using Firebase.
Where in Firebase should I store ...
3
votes
1
answer
4k
views
Firebase Remote Config Fails on WiFi network in Flutter
Firebase Remote Config keeps throwing this error when mobile device is connected to my home WiFi network. Because of that data of Firebase Remote Config is not loaded in the app.
[log] [...
1
vote
0
answers
833
views
Firebase Remote Config - Real time updation issue
Our application utilizes Firebase Remote Config to modify its behavior dynamically. We have defined remote config parameters in the Firebase Remote Config dashboard.
To fetch and activate the latest ...
2
votes
1
answer
2k
views
Is it wise to store my API keys in Firebase Remote Config?
I would like to know what the full pros and cons are for storing my SENSITIVE API KEYS AT Firebase Remote Config.
I am aware of flutter secure storage which encrypts and decrypts sensitive data at ...
1
vote
0
answers
1k
views
Firebase Remote Config is not working only in production
I use remote config and it has worked well.
However all of sudden, it doesn't work and value that gets from remote config becomes null, so it kills the app.
After I use try-catch, app is no longer ...
0
votes
1
answer
566
views
Firebase Remote Config only shows correct value on second App launch
I am using Firebase Remote config in a capacitor.js App using @capacitor-firebase/remote-config firebase plugin. I have the parameter set for first_open and the conditions are true if the first_open ...
1
vote
1
answer
1k
views
How to rewrite Firebase Remote Config closure-based code to async/await version
I need to rewrite my old closure-based code that accesses remote configs in firebase to its async await version. I am new to SwiftUI async/await. So I have:
final class RemoteConfigService {
...
0
votes
1
answer
397
views
FirebaseException: FetchError: Duplicate request while the previous one is pending
What is the proper way to handle "pending" from a RemoteConfig fetch? I assumed I should wait a little and call it again, but I was wrong. When I call it again it gives me the error.
Logs:
...
0
votes
1
answer
3k
views
Not getting updates when using Firebase Remote Config realtime API
Note: I have opened an issue at the official Firebase Github repo here: https://github.com/firebase/firebase-android-sdk/issues/4864
I have an existing set of Remote Configs that I've updated via ...