Reputation: 35
Can anyone explain me what is the difference between Cordova Extension that VS offering for building hybrid apps and the PhoneGap Framework? I went to the PhoneGap API document site and it says "Note that Cordova used to be called PhoneGap" but on the other hand I found "Apache Cordova is the core open source project where development and contributions happen. vs "Adobe PhoneGap is a distribution of Apache Cordova that additionally provides integration with Adobe’s utilities and services". Is the Cordova Extension Visual Studio provides is Cordova PhoneGap combine thing?
Upvotes: 2
Views: 614
Reputation: 336
My opinion based on my experience:
Cordova has a bigger community, has more plugins, updated faster, (is supported by Visual Studio, if this is important for you)
Phonegap is built on top of Cordova and a has some extra features. It has a build (web based) system (which I don't use). The documentation has some nice examples. It has a very nice mobile app that shows the code updates immediately after you save the file. I really like this feature for mobile development.
Upvotes: 0
Reputation: 20445
Cordova and Phonegap are almost same in coding techniques and API usage. There are few Difference like
MoreOver
keep these lines in mind to avoid confusion
You can think of Apache Cordova as the engine that powers PhoneGap, similar to how WebKit is the engine that powers Chrome or Safari
Upvotes: 1