Is Firebase Remote Config in a working state?
I'm not able to call .configValue(...) in the below example. I'm seeing a compile-time error saying value of type 'RemoteConfig' has no member 'configValue'. Several other methods are also inaccessible, such as fetchAndActivate(...)
#if SKIP
import SkipFirebaseRemoteConfig
#else
import FirebaseRemoteConfig
#endif
...
let remoteConfig = RemoteConfig.remoteConfig()
remoteConfig.configValue(forKey: "[[config_name_here]]")
Is Firebase Remote Config in a working state?
I'm not able to call
.configValue(...)in the below example. I'm seeing a compile-time error sayingvalue of type 'RemoteConfig' has no member 'configValue'. Several other methods are also inaccessible, such asfetchAndActivate(...)