在 Application.mk 中,您可以设置:
APP_OPTIM := release
APP_OPTIM := debug
如何在 C++ 中测试发布/调试版本?
我假设有定义,所以我试过这个,但只记录“NOT”消息:
#ifdef RELEASE
LOGV("RELEASE");
#else
LOGV("NOT RELEASE");
#endif
#ifdef DEBUG
LOGV("DEBUG");
#else
LOGV("NOT DEBUG");
#endif