HTML5 Zone is brought to you in partnership with:

Raymond Camden is a developer evangelist for Adobe. His work focuses on web standards, mobile development and Cold Fusion. He's a published author and presents at conferences and user groups on a variety of topics. He is the happily married proud father of three kids and is somewhat of a Star Wars nut. Raymond can be reached via his blog at www.raymondcamden.com or via email at raymondcamden@gmail.com Raymond is a DZone MVB and is not an employee of DZone and has posted 117 posts at DZone. You can read more from them at their website. View Full User Profile

PhoneGap Build issue

07.05.2012
| 2111 views |
  • submit to reddit

The more frustrated I get with Android and tooling on my machines the more I fall in love with PhoneGap Build. It is - without a doubt - the easiest way to pump out native installable apps for your mobile projects. I've been working on a simple app for a friend of mine and when I finally switched from Eclipse-based builds to the Build service it just made everything better. Even easier - he could get downloads from Build whenever he wanted and share it with others.

I did run into one issue though that I wanted to make people aware of. For my application, I'm using the upload as zip option. In order for the correct cordova.js file to be included in your binary installers, you need to use a script tag like so:

<script src="cordova.js"></script>

The Build process will take care of ensuring the right file is included with the bits. However, if you are testing your application on the desktop while you build the project, you will most likely have a copy of the JavaScript file in your folder. You can't test device-specific functionality, but I had a copy of the JavaScript file there just to prevent Chrome from complaining about it.

When I created a zip of my code and uploaded it to Build, the normal behavior of replacing the JS file was not done. I think Build probably made the right decision and said, "If you specifically included this file then you must know what you're doing."

As soon as I tested my code on a real device I got errors on startup.

For me - the solution was to skip creating a zip of the entire www folder. Instead, I went into the folder, did a quick select all, and deselected the cordova.js file.

Hopefully this will help others if they run into the same issue. For this project I'm not using a public SVN/Git repo so I'm not sure if it would be an issue there.

Published at DZone with permission of Raymond Camden, author and DZone MVB. (source)

(Note: Opinions expressed in this article and its replies are the opinions of their respective authors and not those of DZone, Inc.)