Skip to content

Commit c3dbc57

Browse files
authored
Merge pull request #2744 from wmathurin/sqlcipher410
Moving to SQLCipher 4.10.0
2 parents 38cbc73 + b809097 commit c3dbc57

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

libs/SmartStore/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ dependencies {
1313
api(project(":libs:SalesforceSDK"))
1414
//noinspection GradleDependency - Needs to line up with supported SQLCipher version.
1515
api("androidx.sqlite:sqlite:2.2.0")
16-
api("net.zetetic:sqlcipher-android:4.9.0")
16+
api("net.zetetic:sqlcipher-android:4.10.0")
1717
implementation("androidx.core:core-ktx:1.16.0")
1818
androidTestImplementation("androidx.test:runner:1.6.2")
1919
androidTestImplementation("androidx.test:rules:1.6.1")

libs/test/SmartStoreTest/src/com/salesforce/androidsdk/smartstore/store/SmartStoreTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,15 +116,15 @@ public void testRuntimeSettings() {
116116
*/
117117
@Test
118118
public void testSQLCipherVersion() {
119-
Assert.assertEquals("Wrong sqlcipher version", "4.9.0 community", store.getSQLCipherVersion());
119+
Assert.assertEquals("Wrong sqlcipher version", "4.10.0 community", store.getSQLCipherVersion());
120120
}
121121

122122
/**
123123
* Checking sqlcipher provider version
124124
*/
125125
@Test
126126
public void testCipherProviderVersion() {
127-
Assert.assertEquals("Wrong sqlcipher provider version", "OpenSSL 3.0.16 11 Feb 2025", store.getCipherProviderVersion());
127+
Assert.assertEquals("Wrong sqlcipher provider version", "OpenSSL 3.0.17 1 Jul 2025", store.getCipherProviderVersion());
128128
}
129129

130130
/**

0 commit comments

Comments
 (0)