firebase-remote-config

FirebaseRemoteConfig getString returns empty but bytearray of remote config is not empty

☆樱花仙子☆ 提交于 2021-02-10 14:50:44
问题 At first image, I stopped application where I try to get some data from FirebaseRemoteConfig. The code I evaluated is a simple code to get string from FirebaseRemoteConfig. But it returns empty string. Then in second image I go a bit deep inside of FirebaseRemoteConfig object, and find out that the hashmap of zzogi.zzogw.get("configns:firebase") has what I need. Why remoteConfig.getString() does not return my value even though remoteConfig have the value? FYI this is gradle lines

FirebaseRemoteConfig getString returns empty but bytearray of remote config is not empty

时光总嘲笑我的痴心妄想 提交于 2021-02-10 14:49:15
问题 At first image, I stopped application where I try to get some data from FirebaseRemoteConfig. The code I evaluated is a simple code to get string from FirebaseRemoteConfig. But it returns empty string. Then in second image I go a bit deep inside of FirebaseRemoteConfig object, and find out that the hashmap of zzogi.zzogw.get("configns:firebase") has what I need. Why remoteConfig.getString() does not return my value even though remoteConfig have the value? FYI this is gradle lines

Firebase deploy keeps giving me an Error: Parse Error in remoteconfig.template.json

青春壹個敷衍的年華 提交于 2021-02-08 23:34:46
问题 I am trying to deploy a web app with firebase but every time I run deploy I keep getting this error Error: Parse Error in remoteconfig.template.json: No data, empty input at 1:1 ^ File: "remoteconfig.template.json" 回答1: You have a reference to a remoteconfig.template.json in your firebase.json files, but that template doesn't exist. This will typically look like: "remoteconfig": { "template": "remoteconfig.template.json" } The solution is to find this section in your firebase.json file, and

How to define an experiment for first time users in Firebase?

我们两清 提交于 2021-02-06 10:12:41
问题 I am trying to create an experiment using Firebase remote config. The criteria is as follows: It should target only new users who have not used the app ( opening the app for the first time) Now on further research I found that there is a user property as below: However, this is not available in the experiment window or a similar property that fulfils the above criteria in the Firebase console as seen below: I can only see the user properties set by my code. One way I can think of is to use

How to define an experiment for first time users in Firebase?

倖福魔咒の 提交于 2021-02-06 10:12:06
问题 I am trying to create an experiment using Firebase remote config. The criteria is as follows: It should target only new users who have not used the app ( opening the app for the first time) Now on further research I found that there is a user property as below: However, this is not available in the experiment window or a similar property that fulfils the above criteria in the Firebase console as seen below: I can only see the user properties set by my code. One way I can think of is to use

How to define an experiment for first time users in Firebase?

夙愿已清 提交于 2021-02-06 10:09:51
问题 I am trying to create an experiment using Firebase remote config. The criteria is as follows: It should target only new users who have not used the app ( opening the app for the first time) Now on further research I found that there is a user property as below: However, this is not available in the experiment window or a similar property that fulfils the above criteria in the Firebase console as seen below: I can only see the user properties set by my code. One way I can think of is to use

Mutually exclusive A/B tests with Firebase Remote Config

烂漫一生 提交于 2021-01-27 04:30:28
问题 I wanted to perform two A/B tests on an app using Firebase A/B Testing with Remote Config. The problem is that the two tests audiences should be mutually exclusive. Forming part of both experiments might pollute the results. I've thought in setting a Firebase Analytics user property when the user enters in the Experiment 1 and excluding this property value from Experiment 2 audience, but I'm afraid that the user enters in both experiments simultaneously when fetching the Remote Config values.

Mutually exclusive A/B tests with Firebase Remote Config

不想你离开。 提交于 2021-01-27 04:26:13
问题 I wanted to perform two A/B tests on an app using Firebase A/B Testing with Remote Config. The problem is that the two tests audiences should be mutually exclusive. Forming part of both experiments might pollute the results. I've thought in setting a Firebase Analytics user property when the user enters in the Experiment 1 and excluding this property value from Experiment 2 audience, but I'm afraid that the user enters in both experiments simultaneously when fetching the Remote Config values.