Docs
App Store
App Store
The App Store allow your players to install and manage apps on their device.
Configuration
You can control all the apps, games and panels that are available in the App Store by editing the allApps.json
file.
allApps.json
{
"apps": [
{
"id": "appid", // The id of the app
"name": "AppName", // The name of the app
"icon": "url_of_the_icon", // The url icon of the app
"description": "An example app description.", // The description of the app
"category": "apps", // The category : apps, games, panels
"rating": 4, // The rating of the app - 1 to 5
"default": true // Whether the app is available by default or need to be installed
},
// ...
]
}