From 9de0001f4966d90c4663c29dc60082262b51219d Mon Sep 17 00:00:00 2001 From: Nick Parker Date: Tue, 29 Nov 2011 08:55:00 -0600 Subject: [PATCH 1/2] A default.properties file is required to properly run make init and subsequently the make command to build the sqlcipher.jar file. This file was deleted in 33b7ea0f8a3074b8e2dc2871d13cd72b0cccf595 --- default.properties | 1 + 1 file changed, 1 insertion(+) create mode 100644 default.properties diff --git a/default.properties b/default.properties new file mode 100644 index 00000000..b00c8c5c --- /dev/null +++ b/default.properties @@ -0,0 +1 @@ +target=android-7 From e71ee6af6d0b6063c1eb2c7451706fa1a89a84b9 Mon Sep 17 00:00:00 2001 From: Nick Parker Date: Tue, 29 Nov 2011 09:01:42 -0600 Subject: [PATCH 2/2] Updated README with corrected build instructions and link to article on building --- README.org | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.org b/README.org index 6f51ad21..de9c365a 100644 --- a/README.org +++ b/README.org @@ -75,7 +75,7 @@ In order to build android-database-sqlcipher from source you will need both the : # to build the source : make -Copy =libsqlcipher_android.so= in =external/libs/armeabi= and =libdatabase_sqlcipher.so= in =jni/libs/armeabi= to your application =libs/armeabi= folder. Copy the =sqlcipher.jar= file in =bin/classes= to your =libs= directory. Copy the =icudt44l.zip= file in the =assets= directory to your =assets= directory. Finally, you will need to copy =commons-codec.jar= and =guava-r09.jar= located in the =libs= directory into your application =libs= directory. +Recursively copy the =libs= directory into the root of your application, you will also need the =assets= directory copied into the root of your application folder. A detailed set of instructions and further customization can be found [[http://sqlcipher.net/sqlcipher-for-android/][here]]. *** Final Notes