让地理位置在ZTE Open C上运行

时间:2014-07-24 07:36:28

标签: mobile geolocation firefox-os

似乎我无法在FFOS 1.3.0中使用地理定位。默认发布的“Here Maps”确实有效,但我的应用程序甚至没有要求权限。 该代码在我的笔记本上工作,在这里我被要求提供位置,然后提供。我猜这是清单文件的错误,虽然我不知道究竟是什么问题。

    {
  "version": "1.0",
  "name": "Example",
  "description": "Example",
  "launch_path": "/index.html",
  "icons": {
    "16": "/images/icon_016.png",
    "32": "/images/icon_032.png",
    "48": "/images/icon_048.png",
    "128": "/images/icon_128.png"
  },
  "developer": {
    "name": "Example",
    "url": "http://www.example.de"
  },
  "default_locale": "de",
  "type": "privileged",
  "permissions": {
    "geolocation": {
      "description": "Used to locate me"
    }
  }
}

任何帮助都会受到关注:)

1 个答案:

答案 0 :(得分:-1)

我发现了错误。似乎需要添加

  "installs_allowed_from": [
    "*"
  ],

到清单文件。我的应用程序不会要求许可并显示位置。谢谢大家的帮助:))