Reputation: 179
I would like to speed up my work creating a template for my native applications for Android that only make use of C++ code, this kind of applications have a slightly different manifest and a slightly different folder and file configuration, and i was hoping that i can create a project from the command line with the
android create project
command.
I'm only interested in creating an android project template for the NDK and for a native activity, nothing else, no java no JNI.
Upvotes: 2
Views: 1443
Reputation: 3613
jni
folder inside you android project. Create your code and your Makefile. Look at the examples that come with the NDK.ndk-build
to compile the native part.ant debug
to build the APK.Upvotes: 3