Issue
Are there any libraries available by default in the Android NDK? If not, can I use any c++/c library, as long as I include it myself?
In particular, I need compression, encryption, regex and sqlite. I was thinking of using zlib
, crypto++
, sqlite
(duh!) and boost
, but can use anything else if it is already available.
Also, if nothing is available built-in, would you recommend something other then my above choice (I prefer public-domain when possible, or BSD or similar)
Solution
First, I think you need to download the NDK package from here: http://developer.android.com/sdk/ndk/index.html and investigate the documentation from the package. I'm sure you will get the answers to most of your questions. And quick answer to your questions. Yes there are libraries by default in the Android NDK. For example standard C and C++ libraries.
Answered By - Hrant Dalalyan
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.