corefragments
corefragments

Reputation: 23

Do I need cordova/phonegap when using phoneGap build

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

Answers (1)

Suhas Gosavi
Suhas Gosavi

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

Related Questions