Other third party remote configuration providers
Check your third party remote configuration provider APIs for compatibility
// ok - returns value immediately
var value = thirdPartyRemoteProvider.getBooleanValue("alwaysDarkMode");
// ok - returns value immediately
var value = thirdPartyRemoteProvider.getBooleanValue("alwaysDarkMode", false);// not compatible - asynchronous
var value = await thirdPartyRemoteProvider.getBooleanValue("alwaysDarkMode");
// not compatible - callback
thirdPartyRemoteProvider.getBooleanValue("alwaysDarkMode") { value in
...
};Integration of third party remote configuration providers
Remote property key
Remote property type
Add remote properties into your Configuration subclass
Provide remote configuration values to Appfigurate Library when requested
Notify Appfigurate Library when the third party remote configuration provider has received remote config
Best practice and usage
Last updated