I'm using Android studio 1.3.2+ndk-r11b-windows-x86_64 and try to build project with native code and C++11 features (share_ptr, weak_ptr and etc.) but got some errors. For example:
Error:(22, 6) error: 'shared_ptr' in namespace 'std' does not name a template type
The issue is: how to use C++11 with Android Studio+NDK?
p.s.
I added flag cppFlags.add ("-std=c++11")
into "build.gradle"
android.ndk {
moduleName = "game"
cppFlags.addAll(["-I${file("src/main/jni/native_app_glue")}".toString(),
"-I${file("src/main/jni")}".toString(),
"-I${file("src/main/jni/data")}".toString()])
cppFlags.add ("-std=c++11")
ldLibs.addAll(["android", "EGL", "GLESv2", "OpenSLES", "log"])
stl = "stlport_static"
}
but it's seems didn't work.
See Question&Answers more detail:os