钛找不到模块

Titanium can't find module

我正在尝试使用 google 地图模块,但收到错误消息:

脚本错误找不到模块:com.moshemarciano.googlemaps 体系结构:i386

我使用 Titanium Studio 安装了 com.moshemarciano.googlemaps 模块,它看起来已经正确安装在 ~/Library/Application Support/Titanium/iPhone 以及我可以正常工作的其他一些模块。

在我的 tiapp.xml 我有:

<module platform="iphone">com.moshemarciano.googlemaps</module>

在我的 app.js 我有:

fb = require('facebook');
googleMapsAPI = require('com.moshemarciano.googlemaps');

'facebook' 的要求工作正常,但 'com.moshemarciano.googlemaps' 的要求导致错误。

有人知道我可能做错了什么吗?

检查 tiapp.xml 是否包含对 com.moshemarciano.googlemaps

的引用
<modules>
    ....
    <module platform="android">com.moshemarciano.googlemaps</module>
    ....
</modules>