开发者

Can anyone explain what features of the C runtime in Android (via NDK) are not supported?

开发者 https://www.devze.com 2022-12-25 00:14 出处:网络
More 开发者_JAVA百科specifically, does NDK have a complete STL implementation. We\'re looking at this for devices running 1.6 and upwards.No, the only supported libraries in the NDK at this time are:

More 开发者_JAVA百科specifically, does NDK have a complete STL implementation. We're looking at this for devices running 1.6 and upwards.


No, the only supported libraries in the NDK at this time are:

  • libc
  • libm
  • libz (Zlib compression)
  • liblog (Android logging)
  • OpenGL ES 1.1 and OpenGL ES 2.0 (3D graphics libraries)

Also available are interfaces for JNI and minimal C++ support.


As of ndk 5 there is a variety of stl options with and without exception handling.

NDK page on android developer

0

精彩评论

暂无评论...
验证码 换一张
取 消