Possible duplicate:
The difference between own packaging between Sencha touch2 and PhoneGap
I read a lot of articles about the difference between Sencha Touch and Phonegap. This one for example. It confused me. Initially, I thought Sencha Touch was just the foundation for creating “mobile web applications,” and Phonegap was supposed to create “Native Applications for mobile phones” using JS, HTML5, and CSS3. When I visited the Sencha website and read about the Sencha Touch "2". I find out that it comes with its own packaging that allows the user to use the device’s own API through Ext.device
Ext.device.Camera.capture({});
In several forums, I read that "Sencha Touch and Phonegap" go hand in hand. For me, this meant that Sencha Touch is used only to create a graphical interface of the application, and Phonegap is used to access the device’s own API and create cross-platform assemblies. But after reading the Sencha Touch 2 description, I got confused. Can someone explain to me what these two frameworks are used for? Thanks
source share