Supplying defaults is one of the steps when using RemoteConfig. It usually looks something like this:
let sefaults: [String: NSObject] = [
"key1" : "value1" as NSObject,
"key2" : "value2" as NSObject
]
FIRRemoteConfig.remoteConfig().setDefaults(defaults)
I've found RemoteConfig works perfectly fine without the above. Is the above necessary? Also, what is it doing? Seems to be a no-op.