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
2 changes: 1 addition & 1 deletion libs/SmartStore/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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.10.0")
api("net.zetetic:sqlcipher-android:4.11.0")
implementation("androidx.core:core-ktx:1.16.0") // Update requires API 36 compileSdk

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ A newer version of androidx.core:core-ktx than 1.16.0 is available: 1.17.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,15 +116,15 @@ public void testRuntimeSettings() {
*/
@Test
public void testSQLCipherVersion() {
Assert.assertEquals("Wrong sqlcipher version", "4.10.0 community", store.getSQLCipherVersion());
Assert.assertEquals("Wrong sqlcipher version", "4.11.0 community", store.getSQLCipherVersion());
}

/**
* Checking sqlcipher provider version
*/
@Test
public void testCipherProviderVersion() {
Assert.assertEquals("Wrong sqlcipher provider version", "OpenSSL 3.0.17 1 Jul 2025", store.getCipherProviderVersion());
Assert.assertEquals("Wrong sqlcipher provider version", "OpenSSL 3.5.4 30 Sep 2025", store.getCipherProviderVersion());
}

/**
Expand Down