Firebase remote config alternatives
Asked Answered
A

2

11

Are there some alternatives to Firebase Remote Config? I need to deliver an App for chinese market and I'm not sure that it will work

Arlettearley answered 23/1, 2019 at 9:35 Comment(2)
have you tried safeDkSports
If you are simple set of key/value pairs that get pulled into your app you can try services that use Parse Server as back-end , something like back4app.com .Gorton
A
1

I've solved with Parse https://parseplatform.org/ there's also a baas implementation provided by https://www.back4app.com/ with a free tier

Arlettearley answered 19/6, 2019 at 21:17 Comment(0)
P
1

Yeah, you can use Huawei Remote Configuration, it mostly matches Firebase for API style.

Sign up for the Huawei console https://developer.huawei.com/consumer/en/agconnect/remote-configuration/

Add the dependencies:

implementation 'com.huawei.agconnect:agconnect-core:1.5.2.300'
implementation 'com.huawei.agconnect:agconnect-remoteconfig:1.5.2.300'
implementation 'com.huawei.hms:hianalytics:6.0.0.300'

Fetch the same as Firebase Remote Config:

config = AGConnectConfig.getInstance()
config.fetch(0) // a value of 0 here is for DEBUGGING ONLY, delete for prod (giving a 12 hour refresh period)
    .addOnSuccessListener {
        config.apply(it)
        Log.d(TAG, "Applied")
        //update based on RemoteConfig
    }

Reference: https://blog.blundellapps.co.uk/remote-configuration-using-appgallery-connect/

Protraction answered 18/11, 2021 at 22:12 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.