Reputation: 1217
I would like to develop a mobile applications using Phonegap and Sencha Touch.
I understand that they compliment each other for the best outcome.
How do I get started with respect to what needs to be installed and in what order?
Upvotes: 0
Views: 497
Reputation: 1096
Created this doc when I had the same problem:
How to create a Sencha touch App for Android This document describes how to create, edit, and run a Sencha Touch App on an Android device. The project is created with Sencha Command and Apache Cordova. Additional instructions and documentation can be found here: http://docs.sencha.com/cmd/5.x/cordova_phonegap.html
Prerequisites
"builds": {
"native": {
"packager": "cordova",
"cordova" : {
"config": {
//"platforms": "ios android",
"id": "com.mydomain.MyApp",
"name": "myApp"
}
}
}
}
It is worth noting that the word “native” is simply your build’s name and can be anything you like. Platforms You can then set the platforms object to be any platform, or combination of platforms. For Cordova, you can specify a space delimited list, for example “ios android”. ID The ‘id’ property will be used when the Cordova application is first generated. This will be the identifier for your application. That said, you will want to make sure you have picked this correctly. If you need to change it, you will want to delete the Cordova folder from your project and let Cmd regenerate it after you have changed the ID property. This is especially important for iOS application as this must match your Bundle Identifier.
Upvotes: 1
Reputation: 512
you can go through sencha docs site you will get everything, they have proper documentation. http://docs.sencha.com/touch/2.4/getting_started/getting_started.html
you can test you sencha app using chrome by hosting sencha app on tomat server.
Upvotes: 1