Skip to content
This repository has been archived by the owner on May 30, 2023. It is now read-only.
eighthave edited this page Feb 11, 2011 · 7 revisions

This is a project to port SQLCipher to Android with the goal of getting the changes integrated into core.

Build Steps

  • set up the Android NDK on your computer
  • install required software: sudo apt-get install git make autoconf automake libtool
  • get the sources: git clone [email protected]:eighthave/sqlcipher.git
  • git submodule init
  • git submodule update
  • cd sqlcipher
  • build-for-android.sh (or change the NDK_ROOT to where you put the folder)
  • adb push .libs/sqlite3 /data/local/
  • adb push external/openssl/libs/armeabi/libcrypto.so /data/local/
  • adb shell
  • cd /data/local
  • ./sqlite3 (this should happen in the adb shell on your device/emulator)
Clone this wiki locally