I'm using Titanium 3.4.1.GA to build an iOS 8 app on my OS X machine. I'm using the Alloy MVC framework. I'm trying to include a map in my app, so I've edited the tiapp.xml file to include the following:
<modules> <module platform="iphone">ti.map</module> </modules>I've also edited my alloy.js file to have this as the first line:
Alloy.Globals.Map = require('ti.map');When I build the app, I get a message that the app failed to build:
[ERROR] : Project failed to build after 14s 749msCan anyone help me understand why this is happening? If I remove this line from the file, the app works perfectly.