I am just starting off with PhoneGap. I have HTML, CSS & JavaScript knowledge.
So far, I have only installed PhoneGap & Android SDK on my Ubuntu machine.
How should I proceed from here? I do not want to use Eclipse. I would like to use text editors like Sublime to edit my HTML/CSS/JS files of the project and then upload it on PhoneGap Build to create the app.
Can someone help me with step by step instructions? I have already tried the PhoneGap's documentations and other resources online. But different websites point to different ways of doing things.
You can use (Command lines)
phonegap create hello com.example.hello HelloWorld
It will generate a project for you. In this project, you will have different folders. The one you're interested in is "www" which contains your index, css and js files and your config.xml.
You can start from here to create your application using any text editor.
To build this app, just zip the www folder and upload it to Phonegap build.
Hope it helps !