Releases: MrVeit/Firebase-Remote-Config-WebGL
Releases · MrVeit/Firebase-Remote-Config-WebGL
FIREBASE REMOTE CONFIG WEBGL 1.0.0
CORE:
- Added
IRemoteConfigServiceas a proxy to access Firebase Remote Config native bridge, - Added lazy initialization of
IRemoteConfigServiceinRemoteConfigProvider.Instanceformat, without having to register the dependency yourself for use.
NEW FEATURES:
- Added function
void FetchConfig()to download the current version of a remote config with data, - Added function
void Activate()to save a previously downloaded remote config version locally, - Added function
void FetchAndActivate()to load the currently deleted config and instantly save its version locally - Added functions
bool GetBoolean(string key),string GetString(string key),int GetNumber(string key)for loading values with a specific data type by key, - Added function
object GetValue(string key)to lazily load a value without binding to a data type, - Added function
Dictionary<string, object> GetAll()to load all cached values, - Added function
ValueSources GetStorageType(string itemKey)to get the type of data store from where it was downloaded for the target item.