안드로이드 개발 질문/답변
(글 수 45,052)
r5 버전 부터 STLport 가 지원되더군요
그래서 매뉴얼상에서는
Note that, in this case, you will need, in your application, to explicitely
load the 'stlport_shared' library before any library that depends on it.
For example:
static {
System.loadLibrary("stlport_shared");
System.loadLibrary("foo");
System.loadLibrary("bar");
}
대충 위와 같이 사용하라고 되어있는데
제가 궁금한건 foo 나 bar를 빌드할 때
vector, string 등등 stl 관련 헤더파일을 찾을 수 없다고 나오는데
어떻게 처리해줘야 하나요?



