The “Web App” application contains a list of bookmarks that are saved to a configuration file. This configuration can be configured by editing or replace the file. The file can be pushed manually to the device as well as pushed remotely via Foresight or other file transfer solutions.
In order to create and modify the tagset data, it is recommended to use:
This tool will help with JSON validation and tagset formatting.
Storage location for JSON File:, ‘/sdcard/realwear/com.realwear.weblauncher/config/config.json’
Below are the parameters that are required in order to correctly read in values for bookmarks.
If there is no base64 encoded icon, the favicon will be used in its place, if a favicon cannot be obtained, a default icon will replace it.
Images can be converted to a Base64 using: https://www.base64-image.de/
Example file:
{ "webapps": [ { "name": "Realwear", "weblink": "http://www.realwear.com", "icon": "base64 encoded image" }, { "name": "Google", "weblink": "http://www.google.com", "icon": "base64 encoded image" }, { "name": "Bing", "weblink": "https://www.bing.com/", "icon": "base64 encoded image" }, { "name": "Android", "weblink": "https://www.android.com", "icon": "base64 encoded image" }, { "name": "Wikipedia", "weblink": "https://en.wikipedia.org/wiki/Optical_head-mounted_display", "icon": "base64 encoded image" } ] }