无法在firefox os模拟器中读取清单错误

时间:2013-05-28 01:28:05

标签: web-applications manifest firefox-os

我有一个目录hello 1.jpg hello.webapp index.html

index.html如下:

<html>
<head>
<title>Hello World!</title>
</head>
<body>
Hello World!
</body>
</html>

hello.webapp如下:

{
"name": "Hello World",
"description": "blah",
"launch_path": "/index.html",
"icons": {
"128":"1.png"
},
"developer": {
"name": "Richard Sueselbeck"
},
"default_locale": "en"
}

但是当我将目录添加到模拟器时。它抛出错误,无法读取清单/home/user/Desktop/hello/hello.webapp

3 个答案:

答案 0 :(得分:1)

清单文件的名称应为 manifest.webapp ,并且应位于项目的根文件夹中。

答案 1 :(得分:0)

您是否尝试将清单“1.png”更改为“1.jpg”?

您是否尝试将 hello.webapp 重命名为 manifest.webapp ? (好的解决方案)

答案 2 :(得分:0)

为了澄清,模拟器无法读取hello.webapp,因为Firefox OS中清单的默认文件应为manifest.webapp

请将以下代码放入根目录中名为manifest.webapp的新文件中:

{
"name": "Hello World",
"description": "blah",
"launch_path": "/index.html",
"icons": {
"128":"1.png"
},
"developer": {
"name": "Richard Sueselbeck"
},
"default_locale": "en"
}

谢谢,