Remote Configuration
Support
bridge.remote_config.is_supported()Load Values
local bridge = require("bridge.bridge")
function init(self)
local options = {
yandex = {
clientFeatures = { -- optional parameter
{ name = "levels", value = "5" }
}
}
}
bridge.remote_config.get(options, function (_, data)
-- success
end, function ()
-- error
end)
endLast updated