1

我有一个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

4

3 回答 3

1

清单文件的名称应该是manifest.webapp并且它应该在项目的根文件夹中。

于 2014-11-12T18:51:57.383 回答
0

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

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

于 2013-05-28T12:48:33.987 回答
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"
}

谢谢,

于 2015-07-22T01:40:20.640 回答