Skip to content

Commit 0d4996b

Browse files
Add large data query test and external storage test
1 parent 19667e6 commit 0d4996b

22 files changed

+588
-496
lines changed

.idea/kotlinc.xml

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/workspace.xml

Lines changed: 129 additions & 474 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

AndroidManifest.xml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
33
package="net.zetetic" android:versionCode="1" android:versionName="1.0-SNAPSHOT">
4-
<uses-sdk android:minSdkVersion="7" android:targetSdkVersion="23"/>
4+
<uses-sdk android:minSdkVersion="8" android:targetSdkVersion="23"/>
55
<uses-permission android:name="android.permission.INTERNET"/>
66
<application android:icon="@drawable/icon"
77
android:debuggable="true"
88
android:label="@string/app_name"
99
android:name="ZeteticApplication">
10-
<activity android:name=".TestSuiteActivity">
10+
<activity android:name=".TestSuiteActivity"
11+
android:keepScreenOn="true">
1112
<intent-filter>
1213
<action android:name="android.intent.action.MAIN"/>
1314
<category android:name="android.intent.category.LAUNCHER"/>
@@ -19,5 +20,7 @@
1920
android:process=":provider" />
2021
</application>
2122
<uses-permission android:name="android.permission.READ_CONTACTS" />
23+
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
24+
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
2225
</manifest>
2326

libs/arm64-v8a/libsqlcipher.so

0 Bytes
Binary file not shown.

libs/armeabi-v7a/libsqlcipher.so

0 Bytes
Binary file not shown.

libs/armeabi/libsqlcipher.so

0 Bytes
Binary file not shown.

libs/sqlcipher-javadoc.jar

-5 Bytes
Binary file not shown.

libs/sqlcipher.jar

381 Bytes
Binary file not shown.

libs/x86/libsqlcipher.so

0 Bytes
Binary file not shown.

libs/x86_64/libsqlcipher.so

0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)