This week, Yandex Games introduced the “Flags” panel in the Developer Console.
With these flags, new game features can now be enabled without additional updates or going through moderation. In fact, this is a remote configuration and you no longer need to use third-party services to remotely manage your game’s parameters.
Version 0.10.0 of the unofficial SDK for Defold has been released, and it implements the new remote config feature - Remote Config - SDK methods | Yandex Games SDK
Usage example:
local options = { defaultFlags = { test1 = "A" }, clientFeatures = { { name = 'levels', value = '10' } } } -- also, options can be `nil`
yagames.flags_get(options, function(self, err, result)
-- `result` is a table
end)