I have source code/lib written in C++ - now i would like to compile and use the same in Android NDK project (NDK 6). I am able to compile most of the C++ files except "std::wstring" based functionality.
In Application.mk when i specify APP_STL: = stlport_static
then it compiles std::wstring
based code but when i specify APP_STL: = gnustl_static
it fails to compile. I do not know how to resolve std::wstring
related issue with APP_STL: = gnustl_static
Any pointer or help on this would be greatly appreciated.