Skip to content

Commit 7528954

Browse files
Use latest SQLCipher for Android 3.1.0 binaries
1 parent 705bb90 commit 7528954

File tree

8 files changed

+291
-229
lines changed

8 files changed

+291
-229
lines changed
16.1 KB
Binary file not shown.

libs/sqlcipher.jar

0 Bytes
Binary file not shown.

libs/x86/libsqlcipher_android.so

0 Bytes
Binary file not shown.

net.zetetic.sqlcipher.test.iml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
<option name="RUN_PROCESS_RESOURCES_MAVEN_TASK" value="false" />
1111
<option name="COMPILE_CUSTOM_GENERATED_SOURCES" value="false" />
1212
<includeAssetsFromLibraries>true</includeAssetsFromLibraries>
13-
<resOverlayFolders />
1413
</configuration>
1514
</facet>
1615
</component>

net.zetetic.sqlcipher.test.ipr

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,7 @@
3636
<module name="net.zetetic.sqlcipher.test" target="1.6" />
3737
</bytecodeTargetLevel>
3838
</component>
39-
<component name="CopyrightManager" default="">
40-
<module2copyright />
41-
</component>
39+
<component name="CopyrightManager" default="" />
4240
<component name="DependencyValidationManager">
4341
<option name="SKIP_IMPORT_STATEMENTS" value="false" />
4442
</component>

net.zetetic.sqlcipher.test.iws

Lines changed: 288 additions & 223 deletions
Large diffs are not rendered by default.

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.0.1";
8+
private final String CURRENT_CIPHER_VERSION = "3.1.0";
99

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

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ private List<SQLCipherTest> getTestsToRun(){
7171
tests.add(new EnableForeignKeySupportTest());
7272
tests.add(new AverageOpenTimeTest());
7373
tests.add(new RawRekeyTest());
74-
tests.add(new MultiThreadReadWriteTest());
74+
// tests.add(new MultiThreadReadWriteTest());
7575
return tests;
7676
}
7777
}

0 commit comments

Comments
 (0)