I know using proguard you can remove java Log.d debug statements from release versions https://stackoverflow.com/a/13327603/1527440
But is there way to remove log debug statements from NDK C/C++ code.
I am using a define statement to call them in NDK
#define LOGD(...) __android_log_print(ANDROID_LOG_DEBUG,LOG_TAG,__VA_ARGS__)