Remote Config (Beta)
Last updated
Was this helpful?
Last updated
Was this helpful?
Remote Config allows authorised team members to adjust runtime UIKit customisations—such as colours, and eventually additional styling options—after the app has been released. All changes are made in the Playground section of the web console, where an on‑screen device mock‑up provides a true what‑you‑see‑is‑what‑you‑get preview.
Edits remain in preview until you click Publish; publishing immediately replaces the previously stored values on our servers. No new build is required—design and product teams can refresh branding on their own, engineering spends less time on integration, and the entire release cycle accelerates so your app ships updates faster.
Remote Config currently supports updates to global colour tokens; future versions will extend coverage to additional UIKit properties.
To deliver the latest configuration to end‑users, include a call to syncNetworkConfig()
in your application flow. The method makes a lightweight request to the Remote Config endpoint, downloads the current customization payload, caches it on the device, and applies the new values across all active UIKit screens.
Offline and fallback behaviour – If the device is offline, UIKit applies the last cached configuration; if no cache exists, it reverts to the build‑time defaults.
Prerequisite – Require setup and authentication in order to invoke this function.