Questions tagged [firebase-remote-config]

Firebase Remote Config allows developers to optimize and customize their iOS, Android and Web apps on the fly.

About Firebase Remote Config

Firebase Remote Config is a component of the Firebase suite of tools for cross-platform application development.

  • Modify your app without a new production deployment
  • Customize content for different Firebase Analytics audiences and measure results
  • Roll out features gradually and monitor the impact

Related tags

584 questions
355
votes
36 answers

Default FirebaseApp is not initialized

We're seeing a few exceptions with the message Default FirebaseApp is not initialized in this process com.example.app. Make sure to call FirebaseApp.initializeApp(Context) first. in our Android app in which we just added Firebase Remote Config. The…
Roy Solberg
  • 18,133
  • 12
  • 49
  • 76
65
votes
8 answers

FirebaseRemoteConfig Error "No value of type 'String' exists for parameter key"

I am using Firebase Core and some other Features, but not Remote Config. Multiple times a second the following Output is on Logcat. Where can I disable the Remote Config functionality or even set those non-existing values? Dependencies: //…
Pascal Syma
  • 729
  • 1
  • 6
  • 19
51
votes
12 answers

Firebase Remote Config: Can't read any values, but fetch is successful

I'm trying to have a remote config parameter using the new Remote Config feature of Firebase, and I'm having an issue. Here's my Remote Config console: I'm doing a fetch and update in my Application's onCreate(): final FirebaseRemoteConfig…
Steven Schoen
  • 4,366
  • 5
  • 34
  • 65
35
votes
2 answers

Is it OK to use Firebase RemoteConfig to store API Keys?

Note: For clarification this is not the Firebase API Key, this may be more like a token...something that the client app possesses, and the server endpoint verifies. We are trying to do even better to secure an API Key (think token that is used to…
Innova
  • 1,751
  • 2
  • 18
  • 26
30
votes
5 answers

FirebaseRemoteConfig.fetch() does not trigger OnCompleteListener every time

I'm trying to implement Firebase Remote Config : override fun onCreate(savedInstanceState: Bundle?) { val configSettings = FirebaseRemoteConfigSettings.Builder().setDeveloperModeEnabled(BuildConfig.DEBUG).build() mFirebaseRemoteConfig =…
guillaume
  • 1,638
  • 5
  • 24
  • 43
28
votes
6 answers

Can I declare an array to Firebase Remote config?

I am a novice to Android and Firebase. Is it possible to declare an array inside the the Parameter key of Firebase Remote Config? I want to provide some promotions to some specific models/mobile devices. So if I could declare an array of…
Munir Hoque
  • 355
  • 1
  • 3
  • 12
27
votes
4 answers

Firebase Remote Config feature for web app (after Firebase expansion)

I am building a web application with Firebase and I saw they released their expansion with all great new features. However, the Remote Config section is now only available for Android and IOS apps. Is there a way to apply the remote config also on…
user4550050
  • 621
  • 1
  • 6
  • 21
25
votes
4 answers

Can I initialize Firebase without using google-services.json?

EDIT: I should emphasize, I have flavors, for which I don't want to use any of these Google services, and attempting to apply the google-services plugin in such a case, without having an applicable google-services.json, would result in a failed…
Matej
  • 1,727
  • 2
  • 14
  • 22
20
votes
2 answers

'setConfigSettings(FirebaseRemoteConfigSettings!): Unit' is deprecated

After upgrading Firebase libraries to implementation "com.google.firebase:firebase-messaging:18.0.0" implementation 'com.google.firebase:firebase-config:17.0.0' implementation 'com.google.firebase:firebase-core:16.0.9' and syncing Gradle, I got…
CoolMind
  • 26,736
  • 15
  • 188
  • 224
20
votes
2 answers

Firebase Remote Config A/B testing shows no results after 24 hours

I configured Firebase Remote Config A/B testing for Android, and we did rollout on at least 10K devices. For some reason, I see "0 users" in my A/B test after more than 24 hours. Firebase GMS version is: 11.8.0 Should it show A/B participants in…
Vyacheslav A
  • 781
  • 6
  • 10
20
votes
1 answer

Firebase remote config cache expiration time in release

I'm trying to setup firebase remote config for release mode by setting developer mode to false. But with cache expiration time less then 3000(may be a bit less, determined it experimentally) seconds, it fails to fetch data. It throws…
YTerle
  • 2,606
  • 6
  • 24
  • 40
19
votes
4 answers

Firebase Remote Config/Realtime database on Huawei devices

Are all of the Firebase services for Android unable to work on Huawei or is it just the cloud messaging service that does not work? Do all of the firebase services rely on Google Play Services?
19
votes
3 answers

FirebaseRemoteConfig.activateFetched() is deprecated. What to use instead?

Firebase Remote Config activateFetched() is deprecated. What to use instead? firebaseRemoteConfig.activateFetched();
Michalsx
  • 3,446
  • 5
  • 33
  • 46
18
votes
3 answers

Firebase Remote Config Fetch failed with user not authorized

I'm trying to set up my production application to use remote config, but I'm getting a FirebaseRemoteConfigFetchException. This project is already deployed, we use FCM, Crashlytics and Dynamic Links. If I use the dev project on firebase everything…
eslimaf
  • 666
  • 1
  • 6
  • 12
18
votes
6 answers

Firebase Remote Config fetch doesn't update values from the Cloud

I'm trying to set up Firebase Remote Config for my project. I added Firebase via the Assistant. I added values to the server values on Google Cloud Console: I've created default values xml in res/xml
Furetur
  • 471
  • 1
  • 5
  • 14
1
2 3
38 39