Luke
Luke

Reputation: 649

Libraries available for native modules

Applications for Android devices are written in Java. I also know of the existence of the NDK (Native Development Kit).

I have a library written in C++ that uses:

Are all this things available to the programmer that want to use the NDK for C++ development?

I am confident that memory alloc and stl are there, but what about I/O from files? Can i use istream/ostream? I ask because i have programmed apps on Symbian and i had to use RFile and other classes (there was no support for fopen/fread etc).

Upvotes: 2

Views: 148

Answers (1)

Andrey Kamaev
Andrey Kamaev

Reputation: 30152

Yes, low level I/O is possible. fopen/fread are available from the first NDK release. istream/ostream are available since NDK r5 when STLport and GNU stl were added.

Upvotes: 1

Related Questions