Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .claude/skills/update-sqlcipher/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,9 @@ When creating the PR:

Recent SQLCipher updates in the project:

- **4.10.0** - Current version (PR #2744)
- **4.16.0** - SQLite 3.53.1, LibTomCrypt 1.18.2 (2026-05-12)
- **4.15.0** - Previous version
- **4.10.0** - Previous version (PR #2744)
- **4.9.0** - Previous version (PR #2717)
- **4.7.2** - Introduced `onCorruption()` API change (PR #2698)
- **4.6.1** - Stable version (PR #2605)
Expand Down
2 changes: 1 addition & 1 deletion libs/SmartStore/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ plugins {
dependencies {
api(project(":libs:SalesforceSDK"))
api("androidx.sqlite:sqlite:2.6.2")
api("net.zetetic:sqlcipher-android:4.15.0")
api("net.zetetic:sqlcipher-android:4.16.0")
implementation("androidx.core:core-ktx:1.18.0")
androidTestImplementation("androidx.test:runner:1.7.0")
androidTestImplementation("androidx.test:rules:1.7.0")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ public void testRuntimeSettings() {
*/
@Test
public void testSQLCipherVersion() {
Assert.assertEquals("Wrong sqlcipher version", "4.15.0 community", store.getSQLCipherVersion());
Assert.assertEquals("Wrong sqlcipher version", "4.16.0 community", store.getSQLCipherVersion());
}

/**
Expand Down
Loading