Sunday, February 7, 2016

[20160208] Application.mk and APP_STL

application.mk 에 빌드에 사용될 Stl Lib 를 선택 할 수 있습니다.


# 방식 1
#APP_STL := gnustl_static

# 방식 2
APP_STL := c++_static


APP_STL := gnustl_static

If it is set as APP_STL := gnustl_static, it means that the current project has imported and used stl standard lib as gnu static lib and we should select to integrate the framework resources under protocols_gnustl_static folder;.....

APP_STL := c++_static

....if not, we should select to integrate the framework resources under protocols_stlport_static folder.

2.Create a `protocols` directory under the android project directory and copy both the `include` and `android` folders to this folder. Exactly as shown below:

No comments:

Post a Comment