I promised a quick video, and here it is:
http://youtu.be/-pfJvHwoLVk
There is still work to do to generate the .BAT and a few other files automatically, but that's just ordinary run-of-the mill programming.
I'll put the actual batch file up here for you to modify if you're desparate - but be warned that several other files are needed for a full build!
cd android
call c:\android\tools\android.bat update project -p .
call ant clean
call ant release
cd bin
ren NativeActivity-release.apk SmackIt.apk
You will need to substitute paths to android tools with your own, unless you have added it to %PATH%
For automatic signing you will need to have created a keystore using keytool, created a text file called ant.properties, and included the relevant information:
key.store=mykeystore
key.alias=smackitdemo
key.store.password=ab987c
key.alias.password=kpi135
It's not regarded as good practice to put keystore passwords into a file - but here I have used the defaults in the android documentation.
As you will have seen, there is no need to mess about with cygwin or Eclipse - just alter your source as you develop and a few seconds later you're up and running. The batch file only needs to be created once for a project (well, maybe twice for debug and release versions).
-- Jim DO IT FASTER, EASIER AND BETTER WITH AppGameKit FOR PASCAL