An open API service indexing awesome lists of open source software.

https://github.com/exalab/sqlite3-android

SQLite3 Binary for Android
https://github.com/exalab/sqlite3-android

Last synced: about 2 months ago
JSON representation

SQLite3 Binary for Android

Awesome Lists containing this project

README

          

Overview
--------
Makefile and Android.mk necessary to compile sqlite3 for Android.

Requirements
------------
* aria2c (or wget). Replace URL_DOWNLOADER variable in Makefile for other downloader.
* Android NDK

Build
-----
Install/extract the [Android NDK](https://developer.android.com/ndk/downloads/index.html) then:

PATH=/path/to/ndk/dir:$PATH
cd sqlite3-android
make

By default, it will build binaries for armeabi-v7. To build for other arch, replace the TARGET_ABI variable in Makefile.

Available ABIS:

armeabi (Deprecated in Android NDK r16. Will be removed in Android NDK r17)

armeabi-v7a

arm64-v8a

x86

x86_64