Firebase Remote Config: How to get all config in Map<String, String>
Is there a way to get all the configs in String data type? There is a public method getAll() which is a Map<String, FirebaseRemoteConfigValue> but the value is an interface. @NonNull public Map<String, FirebaseRemoteConfigValue> getAll() { return getHandler.getAll(); } It…