Android Studio Native工程报错:undefined reference to std::__ndk1::basic_string

错误截图:

有时候在引入so动态库的时候,出现上图的错误,编译库的时候指定APP_STL := c++_shared;

在Application.mk中:

APP_STL := c++_shared

编译完成会生成两个文件, 两个文件都需要拷贝,如果有多个libc++_shared,只留一个就可。

 

你可能感兴趣的:(android,ndk,c++,android,studio,android)