I am creating an application that will be packaged for different platforms using PhoneGap Build. Now my project structure is as follows:
+--- css +--- img +--- js +--- res +--- config.xml +--- icon.png \--- index.html
This is a fairly standard PhoneGap starter project. I can upload this as a zip file to the PhoneGap build server and return the packages.
Now I am wondering how I can best do some local development (without creating via PhoneGap Build after each change); Should I create a โregularโ PhoneGap project in a separate folder and put the files in my project assets (html, js, css, img)? This is a regular PhoneGap project that I can run, for example, Xcode.
I wonder if the best approach is higher or are there alternatives?
source share