Google Chrome ARC 中的地图

Google Maps in Chrome ARC

我最近看到 ARC 现在支持一些 Google Play 服务,包括 Google 地图。

使用 ARC Welder 时,我指定了以下元数据:

{"usePlayServices":["maps"]}

根据文档 here,我还必须在元数据中包含 crx_key 值。这样做时,附加元数据显示如下:

{
 "usePlayServices":["maps"],
 "crx_key":"<KEY FROM WEBSTORE>"
}

尝试启动应用程序会导致 "Error Loading Extension" 消息:

关于我收到此错误的原因有什么想法吗?我确保密钥没有文档中提到的白色 spaces/line returns。

从网上商店复制您的 public 密钥时,重要的是 select 完全正确。下面突出显示的部分是 public 键,确保不要 select -----BEGIN/END PUBLIC KEY----- 注释,并删除任何换行符/空格(正如你所说的那样)。

此附加元数据适用于我的 apk,它使用 Google 地图 API 用于 Android 和 Google 位置 API:

{
  "usePlayServices": ["location", "maps"]
}