Skip to content

Commit 3492b1a

Browse files
Update test suite to ref. 4.4.3 release
1 parent 00f1e07 commit 3492b1a

File tree

8 files changed

+9
-9
lines changed

8 files changed

+9
-9
lines changed

app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ dependencies {
2323
// implementation files('libs/sqlcipher.jar')
2424

2525
// For testing local AAR packages:
26-
//implementation (name: 'android-database-sqlcipher-4.4.2-release', ext: 'aar')
26+
//implementation (name: 'android-database-sqlcipher-4.4.3-release', ext: 'aar')
2727

2828
// For testing on remote AAR references:
29-
implementation 'net.zetetic:android-database-sqlcipher:4.4.2@aar'
29+
implementation 'net.zetetic:android-database-sqlcipher:4.4.3@aar'
3030

3131
implementation "androidx.sqlite:sqlite:2.0.1"
3232

app/src/main/java/net/zetetic/ZeteticApplication.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ public void postKey(SQLiteDatabase database) {
121121
SQLiteDatabaseHook keyHook = new SQLiteDatabaseHook() {
122122
@Override
123123
public void preKey(SQLiteDatabase database) {
124-
database.rawExecSQL("PRAGMA cipher_license = '';");
124+
//database.rawExecSQL("PRAGMA cipher_license = '';");
125125
}
126126
public void postKey(SQLiteDatabase database) {
127127
}

app/src/main/java/net/zetetic/tests/JavaClientLibraryVersionTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
public class
66
JavaClientLibraryVersionTest extends SQLCipherTest {
77

8-
private final String EXPECTED_SQLCIPHER_ANDROID_VERSION = "4.4.2";
8+
private final String EXPECTED_SQLCIPHER_ANDROID_VERSION = "4.4.3";
99

1010
@Override
1111
public boolean execute(SQLiteDatabase database) {

app/src/main/java/net/zetetic/tests/PragmaCipherVersionTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
public class PragmaCipherVersionTest extends SQLCipherTest {
88

9-
private final String CURRENT_CIPHER_VERSION = "4.4.2";
9+
private final String CURRENT_CIPHER_VERSION = "4.4.3";
1010

1111
@Override
1212
public boolean execute(SQLiteDatabase database) {

app/src/main/java/net/zetetic/tests/support/JavaClientLibraryVersionTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
public class JavaClientLibraryVersionTest extends SupportTest {
77

8-
private final String EXPECTED_SQLCIPHER_ANDROID_VERSION = "4.4.2";
8+
private final String EXPECTED_SQLCIPHER_ANDROID_VERSION = "4.4.3";
99

1010
@Override
1111
public boolean execute(SQLiteDatabase database) {

app/src/main/java/net/zetetic/tests/support/PragmaCipherVersionTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
public class PragmaCipherVersionTest extends SupportTest {
99

10-
private final String CURRENT_CIPHER_VERSION = "4.4.2";
10+
private final String CURRENT_CIPHER_VERSION = "4.4.3";
1111

1212
@Override
1313
public boolean execute(SQLiteDatabase database) {

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ buildscript {
66
google()
77
}
88
dependencies {
9-
classpath 'com.android.tools.build:gradle:4.0.1'
9+
classpath 'com.android.tools.build:gradle:4.2.0-beta04'
1010

1111
// NOTE: Do not place your application dependencies here; they belong
1212
// in the individual module build.gradle files

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-6.1.1-all.zip
6+
distributionUrl=https://services.gradle.org/distributions/gradle-6.7.1-all.zip

0 commit comments

Comments
 (0)