Skip to content
Closed
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: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ dependencies {
// implementation files('libs/sqlcipher.jar')

// For testing local AAR packages:
//implementation (name: 'android-database-sqlcipher-4.5.0-release', ext: 'aar')
//implementation (name: 'android-database-sqlcipher-4.5.3-release', ext: 'aar')

// For testing on remote AAR references:
implementation 'net.zetetic:android-database-sqlcipher:4.5.0@aar'
implementation 'net.zetetic:android-database-sqlcipher:4.5.3@aar'

implementation "androidx.sqlite:sqlite:2.0.1"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
public class
JavaClientLibraryVersionTest extends SQLCipherTest {

private final String EXPECTED_SQLCIPHER_ANDROID_VERSION = "4.5.0";
private final String EXPECTED_SQLCIPHER_ANDROID_VERSION = "4.5.3";

@Override
public boolean execute(SQLiteDatabase database) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

public class PragmaCipherVersionTest extends SQLCipherTest {

private final String CURRENT_CIPHER_VERSION = "4.5.0";
private final String CURRENT_CIPHER_VERSION = "4.5.3";

@Override
public boolean execute(SQLiteDatabase database) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

public class JavaClientLibraryVersionTest extends SupportTest {

private final String EXPECTED_SQLCIPHER_ANDROID_VERSION = "4.5.0";
private final String EXPECTED_SQLCIPHER_ANDROID_VERSION = "4.5.3";

@Override
public boolean execute(SQLiteDatabase database) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

public class PragmaCipherVersionTest extends SupportTest {

private final String CURRENT_CIPHER_VERSION = "4.5.0";
private final String CURRENT_CIPHER_VERSION = "4.5.3";

@Override
public boolean execute(SQLiteDatabase database) {
Expand Down