i am trying to use some dnn features from dlib in https://github.com/tzutalin/dlib-android but i am always getting errors like
error: no member named 'to_string' in
namespace 'std'
and many more syntax errors
my application.mk file is like this
NDK_TOOLCHAIN_VERSION := clang
APP_ABI := armeabi-v7a arm64-v8a x86 x86_64
APP_CPPFLAGS := -std=c++11 -frtti -fexceptions
APP_PLATFORM := android-8
APP_STL := gnustl_static
#APP_CFLAGS+=-DDLIB_NO_GUI_SUPPORT=on
#APP_CFLAGS+=-DDLIB_PNG_SUPPORT=off
APP_CFLAGS+=-DDLIB_JPEG_SUPPORT=on
APP_CFLAGS+=-DDLIB_JPEG_STATIC=on
According to me c++11 should be working ..I dont get where's the problem