how I can build a project with cocos2dx and without android ndk and Eclipse ?

I just want to use it like a common c++ project,and compile under make . But i found that the create-linux-eclipse-project.sh actually just create an android project.Has anyone done this ? Or I will have to do this myself.

Hi.

Up to now you can not to develop exclusively in C/C*+ and forget about Java.
C/C*+ are allowed as a way to let reuse of existing code on Android without the effort of performing a full port to Java.

That said, you can develop your game on Linux / Windows / Mac and once it were ready for production you use the create-linux-eclipse-project.sh script to generate the basic structure of Android project (I mean the script will generate the Java layer for you).

After that you can create an ant build script to perform compilation, packaging and signing process without the need of Eclipse.

Regards.


Please,