Android Studio:手势识别致命错误:找不到“ ext / atomicity.h”文件

时间:2018-10-24 08:51:48

标签: android-studio opencv

因此,我正在Android Studio中尝试Eaglesky的此应用程序: https://github.com/eaglesky/HandGestureApp 但是在右键单击并选择ndk-build时出现错误。

The Error

我当时想这可能是由于ndk不再支持gnustl_static所致,所以我不得不将其更改为c ++ _ static并最终收到错误消息。

我的Application.mk

APP_PLATFORM := android-16
APP_ABI := all
APP_CPPFLAGS := -frtti -fexceptions
APP_STL := c++_static

抱歉,我还是Android开发的新手。

1 个答案:

答案 0 :(得分:0)

您的问题正在使用:
APP_STL:= c ++ _ static

OpenCV需要gnuc库:

APP_STL:= gnustl_shared

确保NDK工具链也是gnu而不是clang。