I\'m trying to use the NDK with C++ and can\'t seem to get the method naming convention correct. my native method is as follows:
extern \"C\" { JNIEXPORT voi
An additional reason: Use LOCAL_WHOLE_STATIC_LIBRARIES instead of LOCAL_STATIC_LIBRARIES in android.mk. This stops the library from optimizing out unused API calls because the NDK cannot detect the use of the native bindings from java code.