I am working on a PhoneGap app that is supposed to run on iOS and Android. My folder structure looks like this:
+-+-[app folder] | +-[android] (contains Ecl
Don't know how does it work in MacOS but I guess you can create a symbolic link with ln, putting your www folder inside Eclipse's assets. I do it both in Windows and Linux and work ok.
For windows use this command mklink /D link-name target-folder
and for linux/mac use ln
to create a source link. Both works for me.
This can be accomplished creating a "Linked Folder" resource in Eclipse. It's essentially the same thing as what Xcode creates when you drag any file or folder into your project and tell it to create references - just nowhere near as easy.
The ADT Eclipse plugin expects an "assets" folder at the top level of your project, so we're going to create an /assets linked folder that references ../www, sitting right next to your project folder.