Is it somehow possible to use SQLite with C++ on an Android phone? I haven't found any documentation around how this could be possible.
See Question&Answers more detail:osIs it somehow possible to use SQLite with C++ on an Android phone? I haven't found any documentation around how this could be possible.
See Question&Answers more detail:osJust download the SQLite3 amalgamation source file from: http://www.sqlite.org/download.html
And then add sqlite3.c
to your LOCAL_SRC_FILES
variable in Android.mk
.