在设备firefox操作系统中自行发布应用程序安装时无法显示

时间:2015-01-09 06:43:47

标签: firefox-os

我正在尝试安装自行发布的应用程序。我成功安装了它,但是当我打开应用程序本身时,没有显示器显示。应用程序的图标显示,但应用程序的内容不显示任何内容。

我该如何解决?

这是我的清单。

webapp文件:

{"name": "firefoxapp","description":"Example firefox application","launch_path": 

"app.html","version": "1","icons": {"512":

"/images/icon_512.png","128":"/images/icon_128.png"},"developer": {"name": "Systema 

Computer Solutions Corp.","url": "http://www.systemacorp.com"},"default_locale": "en"}

1 个答案:

答案 0 :(得分:0)

您必须在launch_path中提供前屏幕文件的完整路径名。如果您的文件app.html位于应用的根文件夹中,请尝试修改后的清单

{
  "name": "firefoxapp",
  "description":"Example firefox application",
  "launch_path": "/app.html","version": "1",
  "icons": {
            "512":"/images/icon_512.png",
            "128":"/images/icon_128.png"},
  "developer": {"name": "Systema Computer Solutions Corp.",
                 "url": "http://www.systemacorp.com"
               },
   "default_locale": "en"
}