Android ndk报错error: format not a string literal and no format arguments [-Werror=format-security]

问题:

   在使用ndk-r9版本的ndk-build命令编译jni时,报错error: format not a string literal and no format arguments [-Werror=format-security]


原因: android-ndk-r9与Eclipse的版本不兼容问题。


解决方案:

在对应项目的jni/Application.mk添加一句话

  APP_CFLAGS += -Wno-error=format-security

意思就是忽视这个error


你可能感兴趣的:(android,jni,NDK)