我为 Firefox 移动版编写了一个简单的 hello world 应用程序。在添加 .webapp 文件时,我得到了Validation Result: OK,但我的应用程序没有安装在模拟器中。我的文件内容如下。
你好.webapp
{
"name": "My App",
"description": "My elevator goes here",
"launch_path": "/Hello.html",
"icons": {
"128": "FF101.png"
},
"developer": {
"name": "Your name or organization",
"url": "http://your-homepage-here.org"
},
"default_locale": "en"
}
你好.html
<html>
<head>
<title>
Hello Firefox101
</title>
<script>
function sayHello()
{
alert("Hi Hello");
}
</script>
</head>
<body>
This is my First App For FireFox OS.<br>
<input type="button" class="button" value="Click Me For Alert" onClick="sayHello()"/>
</body>
</html>
图像文件在同一文件夹中。
请指导我错过了什么。
提前致谢。