diff --git a/libs/SmartStore/build.gradle.kts b/libs/SmartStore/build.gradle.kts index d9af9d79d4..a717860608 100644 --- a/libs/SmartStore/build.gradle.kts +++ b/libs/SmartStore/build.gradle.kts @@ -13,7 +13,7 @@ dependencies { api(project(":libs:SalesforceSDK")) //noinspection GradleDependency - Needs to line up with supported SQLCipher version. api("androidx.sqlite:sqlite:2.2.0") - api("net.zetetic:sqlcipher-android:4.11.0") + api("net.zetetic:sqlcipher-android:4.10.0") implementation("androidx.core:core-ktx:1.16.0") // Update requires API 36 compileSdk androidTestImplementation("androidx.test:runner:1.7.0") androidTestImplementation("androidx.test:rules:1.7.0") diff --git a/libs/test/SmartStoreTest/src/com/salesforce/androidsdk/smartstore/store/SmartStoreTest.java b/libs/test/SmartStoreTest/src/com/salesforce/androidsdk/smartstore/store/SmartStoreTest.java index fa59638814..4f4b09aa8b 100644 --- a/libs/test/SmartStoreTest/src/com/salesforce/androidsdk/smartstore/store/SmartStoreTest.java +++ b/libs/test/SmartStoreTest/src/com/salesforce/androidsdk/smartstore/store/SmartStoreTest.java @@ -116,7 +116,7 @@ public void testRuntimeSettings() { */ @Test public void testSQLCipherVersion() { - Assert.assertEquals("Wrong sqlcipher version", "4.11.0 community", store.getSQLCipherVersion()); + Assert.assertEquals("Wrong sqlcipher version", "4.10.0 community", store.getSQLCipherVersion()); } /** @@ -124,7 +124,7 @@ public void testSQLCipherVersion() { */ @Test public void testCipherProviderVersion() { - Assert.assertEquals("Wrong sqlcipher provider version", "OpenSSL 3.5.4 30 Sep 2025", store.getCipherProviderVersion()); + Assert.assertEquals("Wrong sqlcipher provider version", "OpenSSL 3.0.17 1 Jul 2025", store.getCipherProviderVersion()); } /**