appinfo.json 中 html 文件的无效路径

Invalid path to html file in appinfo.json

我正在尝试在 webos 中调试我的 webos 应用程序 ide.When 我点击调试按钮它说 Errors found in appinfo.json file while parsing. 这是我的 appinfo.json Link

我认为问题在于我如何输入 html 文件的路径。路径是 '/App/index.html'。如果您知道如何以正确的格式输入路径,请告诉我

我想您必须将路径指定为 html 文件 (App/index.html) 的相对路径,而不是绝对路径

您可以在 here

查看其他 app.json 个属性

我无法将整个 json 添加到评论中,请检查这个(基本 HTML 应用程序的免费示例,您可以在 webostv.developer.lge.com/ 找到)

{
    "id": "com.lgdev.hello-world",
    "version": "2.0.0",
    "uiRevision": 2,
    "vendor": "LG Developer",
    "type": "web",
    "main": "index.html",
    "title": "Hello World",
    "appDescription": "Hello World",
    "icon": "icon.png",
    "largeIcon": "largeIcon.png",
    "iconColor": "blue",
    "bgColor": "white",
    "splashBackground": "app_bg_1920x1080.png",
    "bgImage": "app_bg2_1920x1080.png"
}

如果您需要将 index.html 移动到 'myappfolder' 文件夹,您必须将 appinfo.json 修改为正确的相对路径 'myappfolder/index.html'