Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Difference between Phonegap and Sencha Touch

I read many documents regarding to Phonegap and Sencha Touch. But i still confused with these two.

I have already created one native android application. Now, i want to create same application which run on multiple device. So, i am confused with these two frameworks.

  • Which is the best one from these two to use and why ?

  • What is the difference between Phonegap and Sencha Touch ?

  • What is the difference between sencha touch and sencha touch 2 ?

like image 553
Deep Mehta Avatar asked Feb 01 '13 09:02

Deep Mehta


1 Answers

Sencha Touch is an HTML5 mobile framework. It will help you to develop a web application with HTML, JavaScript and CSS. There are more similar frameworks, like jQuery Mobile or Lungojs.

On the other hand, PhoneGap is a platform that allows you to use mobile devices features, such as GPS, camera, etc., through a JavaScript interface.

In conclusion, to create an app using these technologies, you would implement the design and the logic in HTML5 (with Sencha Touch if you wish), would use PhoneGap to make use of the device features and wrap the app as a native application.

like image 143
davids Avatar answered Oct 10 '22 18:10

davids