Is where a possible way to make a whole NDK app with C/C++ without a Java "starter" class like in hello-jni sample project (HelloJni.java) - somehow create a HelloJni.c which will do the same?
feedback
|
|
Since Android 2.3 (API Level 9) there is the NativeActivity which allows one to code an Android app in C++ only. There is also an example for this in the NDK package. A quote from the NDK Overview:
I would take C/C++ when porting code and possibly when developing cross platform games. | |||
|
feedback
|
|
Well I guess not. Even if NDK allow you to write native applications in C/C++ they still run in Dalvik's virtual machine. You should use it only iff you really can't do it in java. C/C++ shouldn't be used as programming languages for android just because they are nice or you like them. So, bottom line, if you write your application using NDK you still need the java "starter" class. You can read more about this here: http://developer.android.com/sdk/ndk/overview.html | |||
|
feedback
|
|
Since all UI, graphics and other interesting classes are in Java you will have to use Java one way or another. By another I mean interfacing with all Java classes through JNI. There is a library for that: https://github.com/DmitrySkiba/itoa-jnipp. Check HelloJNIpp sample - it shows that it is indeed possible to write Android apps completely in C++, the only catch is that you will need to implement all needed wrappers first (some are in samples/common folder). However, I recommend using Java. Its simple and elegant, has great libraries and tools. | |||
|
feedback
|