Skip to content

Commit fc1dec9

Browse files
Using 2.0.0-RC3 sqlcipher binaries and adding the SQLiteException to the test suite to verify the class can be found at runtime
1 parent bd206e4 commit fc1dec9

18 files changed

+144
-94
lines changed
4.73 KB
Loading
1.69 KB
Loading
2.64 KB
Loading
-624 Bytes
Binary file not shown.
39.3 KB
Binary file not shown.

libs/sqlcipher.jar

-2.94 KB
Binary file not shown.

net.zetetic.sqlcipher.test.ipr

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,9 @@
2626
<component name="DependencyValidationManager">
2727
<option name="SKIP_IMPORT_STATEMENTS" value="false" />
2828
</component>
29-
<component name="Encoding" useUTFGuessing="true" native2AsciiForPropertiesFiles="false" />
29+
<component name="Encoding" useUTFGuessing="true" native2AsciiForPropertiesFiles="false">
30+
<file url="file://$PROJECT_DIR$/src/main/java/net/zetetic/tests/TestSuiteRunner.java" charset="UTF-8" />
31+
</component>
3032
<component name="EntryPointsManager">
3133
<entry_points version="2.0" />
3234
</component>

net.zetetic.sqlcipher.test.iws

Lines changed: 108 additions & 83 deletions
Large diffs are not rendered by default.

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

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

33
import android.app.Activity;
44
import android.app.Application;
5-
import info.guardianproject.database.sqlcipher.SQLiteDatabase;
5+
import net.sqlcipher.database.SQLiteDatabase;
66

77
import java.io.File;
88

src/main/java/net/zetetic/ZeteticContentProvider.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
import android.content.ContentValues;
55
import android.database.Cursor;
66
import android.net.Uri;
7-
import info.guardianproject.database.sqlcipher.SQLiteDatabase;
8-
import info.guardianproject.database.sqlcipher.SQLiteQueryBuilder;
7+
import net.sqlcipher.database.SQLiteDatabase;
8+
import net.sqlcipher.database.SQLiteQueryBuilder;
99

1010
public class ZeteticContentProvider extends ContentProvider {
1111

0 commit comments

Comments
 (0)