问题标签 [firebase-remote-config]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
android - Android - Firebase:清理缓存远程配置后未正确交付
尝试将 Android 与 Firebase 集成。清除缓存或删除应用程序远程配置后未正确传递(我们只看到默认值)或回调 OnCompleteListener 方法 isSuccessful 返回 false。
在用户方面,这会导致在远程配置中不定期和快速地应用更改,这使得 Firebase 无用。
你能给点建议吗?有没有人遇到过这个问题?顺便说一句,iOS 上一切正常。
android - Firebase 远程配置 NullPointer
我收到以下错误:
只有当我添加远程配置 firebase 代码时,才会出现此错误,正如他们在项目代码示例中所解释的那样。
这是我的毕业生:
顶级等级:
我还添加了 google-services.json,并证明了几个库配置,但似乎没有任何效果。
我怎么解决这个问题?
ios - 是否可以重置/丢弃 Firebase 远程配置获取的值?
我在 Firebase 远程配置之上创建了一个层,我的应用程序使用它来决定功能是打开还是关闭,或者获取自定义值。我已经围绕这个编写了一些单元测试。但似乎当人们使用该应用程序并从网络获取值时,它们会被保存并覆盖您在FIRRemoteConfig
with上设置的默认值setDefaults
。这会导致我的单元测试出现问题。
有没有办法告诉你FIRRemoteConfig
忘记它保存的值,只使用你设置的默认值?
android - 我可以使用 Firebase 远程配置来更新 Android 应用的 strings.xml 吗?
众所周知,Firebase 远程配置是一项云服务,可让您更改应用的行为和外观,而无需用户下载应用更新。
我想知道我可以Firebase Remote Config
用来更新strings.xml
吗?
有时我需要更新文件strings.xml
(例如:更正语言环境的翻译)。为此,我必须更新我的应用程序。
如果我们可以strings
像Firebase
.
firebase - Firebase 远程配置中子条件的顺序
我想要一些关于远程配置条件的解释。假设我有一个具有以下属性的条件:
- 观众“MyAudience”中的用户
- 随机百分位用户 >= 50%
你知道这些条件的应用顺序吗?50% 是否仅适用于属于“MyAudience”的用户?或者,是否以相反的顺序应用条件,即系统选择所有用户的 50%,然后过滤不在“MyAudience”中的用户?
我意识到统计上的结果应该是相同的,但我想知道,出于好奇。
谢谢 !
android - 我的 Android 应用每次都没有更新 FirebaseRemoteConfig
我正在开发一个使用 Firebase RemoteConfig 功能的 Android 应用程序。我的代码就像
但是当我在 FCM 控制台中更新各自的 Remoteconfig 值时,它并没有反映在应用程序中。
我还提到了这个FirebaseRemoteConfig.fetch() 不会每次都触发 OnCompleteListener。并按照该链接中的建议实现了代码。
所以我实现了代码以务实地清除我的应用程序缓存。每次在获取 Remoteconfig 值之前,我都会使用此代码清除我的应用程序缓存。这对我进行了几次迭代。但现在即使这对我来说也无法获得更新的 Remoteconfig 值。我的代码是链接
请指导我正确的方法来获得更新的 Remoteconfig 值 100% 的时间。先感谢您。任何建议表示赞赏。
ios - Firebase 远程配置推送多长时间?
远程配置推送需要多长时间?我有以下代码,在网络上推送新更新后,它会继续打印 false 和旧值至少几分钟。
android - 如何通过 Firebase 远程配置更改 colorPrimary、colorPrimaryDark 等?
我想要做的是在 Firebase 的 RemoteConfig 中保存 colorPrimay、colorDarkPrimary 等值,这样我就可以从远程配置中更改应用程序的颜色,我做了以下
更新:我要做的是在 Firebase 的 RemoteConfig 中保存 colorPrimay、colorDarkPrimary 等值,以便我可以从远程配置更改应用程序的颜色。我怎么能那样做?
更新:
我尝试过的就像
像这样取
但是
正在返回 Null。
firebase - How to clone an existing Firebase project data to another new project?
I want to clone an existing Firebase project, lets name it ProjectA
that previously exists on Firebase console with some Remote Config data to another new project(without any Remote Config data), lets name it ProjectB
.
The idea behind my question is that currently I have developed an Android app that is using the google-service.json
(Firebase configuration file) file from the ProjectA
, so I want to create/clone a new Firebase project ProjectB
(NOTE: I don't want a new Firebase app on the same project) that starts with exactly the same Remote Config data from ProjectA
and then add the google-service.json
from the new ProjectB
to my new Android app.
I have read the firebase-cli documentation but looks like it's out of its scope.
Has someone accomplished something similar like this or has an idea how can I accomplish this? Thanks in advance!