Post

Build Sqlite for Android

setps to build Sqlite for android

Build Sqlite for Android

Build Sqlite for Android

One of the essential tools in your Android development toolkit is SQLite.

When I connected to my physical device using adb, I encountered the error: sqlite3: inaccessible or not found.

After searching for a solution, I found several pre-built binaries for SQLite on unofficial sites. However, running these binaries with root privileges seemed like a highly questionable approach.

So, I decided to build SQLite for Android ARM myself.

Steps to Build SQLite for Android ARM

  1. Download the Android NDK.
  2. Download the SQLite source code.

Here’s the .sh script I prepared and executed in the SQLite folder (feel free to customize it as needed):

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
export NDK=/home/user/Downloads/android-ndk-r27-linux/android-ndk-r27-linux

export TOOLCHAIN=$NDK/toolchains/llvm/prebuilt/linux-x86_64

export TARGET=aarch64-linux-android

# Set this to your minSdkVersion.
export API=26
# Configure and build.
export AR=$TOOLCHAIN/bin/llvm-ar
export CC="$TOOLCHAIN/bin/clang --target=$TARGET$API"
export AS=$CC
export CXX="$TOOLCHAIN/bin/clang++ --target=$TARGET$API"
export LD=$TOOLCHAIN/bin/ld
export RANLIB=$TOOLCHAIN/bin/llvm-ranlib
export STRIP=$TOOLCHAIN/bin/llvm-strip
./configure --host $TARGET
make
This post is licensed under CC BY 4.0 by the author.