Android NDK JNI error 'to_string
2021-07-13 本文已影响0人
花艺荣
Solution:
Add C++11 support in Application.mk if building static libraries:
APP_STL := c++_static
or use c++_shared if building shared libraries:
APP_STL := c++_shared
Not use
APP_STL := gnustl_static