Reputation: 11
I installed PhoneGap with nodejs, and I sent the create
command to create a folder with the basic files needed for the first app. When I open the index.html file there is a script tag that points to a file called phonegap.js
. The problem is that this does not exist in the folder, where is it? The app is running if built without that file or not?
That is my folder:
My object is to create a basic app working.
Thanks.
Upvotes: 0
Views: 74
Reputation: 11721
The file is created when you add a platform to your project (because its content is different for each platform)
For example, for an android project it should be in platforms/android/assets/www/phone gap.js
.
Upvotes: 1