From 74ac299d39239d6c54d55cf62fb2c6a0bf196c13 Mon Sep 17 00:00:00 2001 From: Nick Parker Date: Tue, 14 Oct 2025 11:44:22 -0500 Subject: [PATCH 1/2] Update cipher_version test when built against 4.11.0 --- .../zetetic/database/sqlcipher_cts/SQLCipherVersionTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sqlcipher/src/androidTest/java/net/zetetic/database/sqlcipher_cts/SQLCipherVersionTest.java b/sqlcipher/src/androidTest/java/net/zetetic/database/sqlcipher_cts/SQLCipherVersionTest.java index df330ea..3c2a9df 100644 --- a/sqlcipher/src/androidTest/java/net/zetetic/database/sqlcipher_cts/SQLCipherVersionTest.java +++ b/sqlcipher/src/androidTest/java/net/zetetic/database/sqlcipher_cts/SQLCipherVersionTest.java @@ -17,6 +17,6 @@ public void shouldExtractLibraryCipherVersion() { cipherVersion = cursor.getString(0); cursor.close(); } - assertThat(cipherVersion, containsString("4.10.0")); + assertThat(cipherVersion, containsString("4.11.0")); } } From 0978fae4eebdebb0062021e2421eee8843147f50 Mon Sep 17 00:00:00 2001 From: Nick Parker Date: Mon, 8 Dec 2025 10:17:26 -0600 Subject: [PATCH 2/2] Update README --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 84939f8..80df331 100644 --- a/README.md +++ b/README.md @@ -16,14 +16,14 @@ We welcome contributions, to contribute to SQLCipher for Android, a [contributor Add a local reference to the local library and dependency: ```groovy -implementation files('libs/sqlcipher-android-undefined-release.aar') +implementation files('libs/sqlcipher-android-4.12.0-release.aar') implementation 'androidx.sqlite:sqlite:2.2.0' ``` or source a Community edition build from Maven Central: ```groovy -implementation 'net.zetetic:sqlcipher-android:undefined@aar' +implementation 'net.zetetic:sqlcipher-android:4.12.0@aar' implementation 'androidx.sqlite:sqlite:2.2.0' ```