Skip to content

Commit 924877c

Browse files
authored
Merge pull request forcedotcom#2805 from bbirman/sqlcipher-revert
Revert "Update SQLCipher to 4.11.0"
2 parents d5cfcdf + 8750acc commit 924877c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

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.11.0")
16+
api("net.zetetic:sqlcipher-android:4.10.0")
1717
implementation("androidx.core:core-ktx:1.16.0") // Update requires API 36 compileSdk
1818
androidTestImplementation("androidx.test:runner:1.7.0")
1919
androidTestImplementation("androidx.test:rules:1.7.0")

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.11.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.5.4 30 Sep 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)