Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Difference between Phonegap and Phonegap Build? [closed]

What are the differences if any ?

like image 350
Hugolpz Avatar asked Feb 17 '13 23:02

Hugolpz


People also ask

What is a PhoneGap build?

PhoneGap is a software development framework by Adobe System, which is used to develop mobile applications. To develop apps using PhoneGap, the developer does not require to have knowledge of mobile programming language but only web-development languages like, HTML, CSS, and JScript.

What is difference between PhoneGap and Cordova?

A good way to understand the difference between Apache Cordova and Adobe PhoneGap is to think about how Apple has its Safari browser, but it is based on the open source WebKit engine. The same is true here: Cordova is the open source version of the framework, while PhoneGap is the Adobe-branded version.

Why was PhoneGap discontinued?

Since 2008, the industry and market has evolved and PhoneGap usage has declined. “In the context of these developments and declining PhoneGap usage, Adobe is focusing on providing a platform that enables developers to build, extend, customize and integrate with Adobe products,” the company wrote in a post.

Is PhoneGap discontinued?

Can I continue using PhoneGap after Adobe discontinues its support? PhoneGap will remain free and open sourced, however it will not be actively developed. Gradually, as iOS and Android operating system updates are released, the PhoneGap tooling will become incompatible with the latest version of Apache Cordova.


1 Answers

Phonegap Build is "in the cloud" and makes it easy to build all targets at once. You just upload your html/css/js in a zip file and they build it on all supported platforms. You can then upload the resulting binaries to the appropriate app stores.

Phonegap runs on your desktop and you are required to have the development tool of the environment you want to compile for. So for iOS you need XCode installed. This allows for more configuration control and more access to plugins at the cost of more complexity.

like image 197
paulsm4 Avatar answered Oct 01 '22 21:10

paulsm4