Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<blockquote> <p>PhoneGap Pros</p> </blockquote> <p>PhoneGap is an excellent solution in a number of situations:</p> <p><strong>Multiple platforms:</strong> Since the front end of the application is built using web technologies, a PhoneGap application with the exact same source code can be deployed across different platforms.</p> <p><strong>Access basic native functionality:</strong> If the application requires minimal access to the native APIs such as camera, geolocation and contacts PhoneGap allows access to these APIs with just a few lines of JavaScript code.</p> <p><strong>Offline usage:</strong> Although the app is built using web technologies, it can still provide offline functionality and has access to the browser’s local cache.</p> <blockquote> <p>PhoneGap Cons</p> </blockquote> <p>Since the front end of the application is built in JavaScript, it causes a number of limitations.</p> <p><strong>Data processing:</strong> Native languages are much faster than JavaScript for data processing on the device.</p> <p><strong>Background processing:</strong> A large number of applications rely on background threads to provide a smooth user experience: calculating the GPS positions in the background, for example. PhoneGap APIs are built using JavaScript which is not multi-threaded and hence do not support background processing.</p> <p><strong>Access advanced native functionality:</strong> A number of native APIs are not yet supported by PhoneGap’s APIs.</p> <p><strong>Complex Business Logic:</strong> A number of applications such as enterprise applications are quite complex. In this scenario it is simply better to have a certain amount of native code.</p> <p><strong>Advanced Graphics:</strong> Apps that use advanced graphics which can only be accessed using third-party libraries are best done natively.</p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload