Skip to content

Commit 95c3910

Browse files
Use SQLCipher 3.3.0 binaries
1 parent 9bcee74 commit 95c3910

File tree

8 files changed

+228
-242
lines changed

8 files changed

+228
-242
lines changed

.idea/workspace.xml

Lines changed: 223 additions & 240 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
84 KB
Binary file not shown.
64 KB
Binary file not shown.

libs/sqlcipher-javadoc.jar

77 Bytes
Binary file not shown.

libs/sqlcipher.jar

87 Bytes
Binary file not shown.

libs/x86/libsqlcipher_android.so

112 KB
Binary file not shown.

src/main/java/net/zetetic/TestSuiteActivity.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ public void onButtonClick(View view) {
5151
public void send(TestResult result) {
5252

5353
results.add(result);
54+
Log.i(TAG, String.format("%s - success:%s", result.getName(), result.isSuccess()));
5455
HeaderViewListAdapter adapter = (HeaderViewListAdapter) resultsView.getAdapter();
5556
if(adapter == null){
5657
statsView = View.inflate(this, R.layout.test_stats, null);
@@ -72,7 +73,9 @@ public void complete() {
7273
successCount += 1;
7374
}
7475
}
75-
stats.setText(String.format("Passed: %d Failed: %d", successCount, results.size() - successCount));
76+
String message = String.format("Passed: %d Failed: %d", successCount, results.size() - successCount);
77+
Log.i(TAG, message);
78+
stats.setText(message);
7679
stats.setVisibility(View.VISIBLE);
7780
findViewById(R.id.executeSuite).setEnabled(true);
7881
}

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

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

66
public class PragmaCipherVersionTest extends SQLCipherTest {
77

8-
private final String CURRENT_CIPHER_VERSION = "3.2.0";
8+
private final String CURRENT_CIPHER_VERSION = "3.3.0";
99

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

0 commit comments

Comments
 (0)