APPs Config
App Structure
Config = {}
Config.App = {
name = "my_app",
label = "My App Label",
isEnabled = function(serial)
-- Run your own check here and return true to show the APP or false to hide it
return true
end,
maximize = true, -- this is optional
height = "490px", -- this is optional, 490px is the calculator height value
width = "260px", -- this is optional, 260px is the calculator width value
path = "/ui/dist/index.html" -- optional, for official AV APPS this field is not required
}Last updated