views:

119

answers:

1

More specifically, does NDK have a complete STL implementation. We're looking at this for devices running 1.6 and upwards.

+2  A: 

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.

Roman Nurik