Reputation: 23
I wanted to know if I need to install and include the cordova/phonegap JavaScript in my app if I,m using phonegap build for building app ?
Upvotes: 1
Views: 52
Reputation: 2170
No you dont need to install cordova/phonegap javascript
if you are using phonegap build to build your application.
But you have to include phonegap.js in every html page you are including in your project.
like-
<script src="phonegap.js"></script>
Phonegap build will take care of this js. You dont need to install. Just include above tag in head of every HTML page.
All HTMl pages js files, css make them wrap in one zip file and build that zip using phonegap build.
Upvotes: 1