Skip to content

Commit 7c618dd

Browse files
Merge branch 'prerelease'
2 parents fa78349 + 2215002 commit 7c618dd

26 files changed

+504
-228
lines changed

AndroidManifest.xml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@
1010
</intent-filter>
1111
</activity>
1212
<provider android:name=".ZeteticContentProvider" android:authorities="net.zetetic.sqlcipher.zeteticprovider" />
13+
14+
<provider android:name=".ZeteticContentProvider2" android:authorities="net.zetetic.sqlcipher.zeteticprovider2"
15+
android:process=":provider" />
1316
</application>
1417
<uses-permission android:name="android.permission.READ_CONTACTS" />
1518
</manifest>

README.org

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
To run, clone this repo and make sure you have the Android SDK installed.
2-
- Currently support Android OS 2.1 - 4.0.3, simply run on either an emulator or device.
2+
- Currently support Android OS 2.1 - 4.3, simply run on either an emulator or device.
33
- More information can be found at [[http://sqlcipher.net/sqlcipher-for-android/][SQLCipher for Android]].
0 Bytes
Binary file not shown.
32 KB
Binary file not shown.

libs/sqlcipher.jar

-1.28 KB
Binary file not shown.

libs/x86/libsqlcipher_android.so

12 KB
Binary file not shown.

net.zetetic.sqlcipher.test.iml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
<option name="PROGUARD_CFG_PATH" value="/proguard.cfg" />
1212
<includeSystemProguardFile>false</includeSystemProguardFile>
1313
<includeAssetsFromLibraries>true</includeAssetsFromLibraries>
14+
<option name="COMPILE_CUSTOM_GENERATED_SOURCES" value="false" />
1415
<resOverlayFolders />
1516
</configuration>
1617
</facet>
@@ -25,7 +26,6 @@
2526
<excludeFolder url="file://$MODULE_DIR$/target/generated-sources/combined-assets" />
2627
<excludeFolder url="file://$MODULE_DIR$/target/generated-sources/combined-resources" />
2728
<excludeFolder url="file://$MODULE_DIR$/target/generated-sources/extracted-dependencies" />
28-
<excludeFolder url="file://$MODULE_DIR$/target/test-classes" />
2929
</content>
3030
<orderEntry type="sourceFolder" forTests="false" />
3131
<orderEntry type="jdk" jdkName="Maven Android 2.1 Platform" jdkType="Android SDK" />

net.zetetic.sqlcipher.test.ipr

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -196,6 +196,9 @@
196196
</item>
197197
</group>
198198
</component>
199+
<component name="ProjectDictionaryState">
200+
<dictionary name="nparker" />
201+
</component>
199202
<component name="ProjectModuleManager">
200203
<modules>
201204
<module fileurl="file://$PROJECT_DIR$/net.zetetic.sqlcipher.test.iml" filepath="$PROJECT_DIR$/net.zetetic.sqlcipher.test.iml" />

net.zetetic.sqlcipher.test.iws

Lines changed: 174 additions & 194 deletions
Large diffs are not rendered by default.

res/layout/test_result_row.xml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,13 @@
2020
android:singleLine="true"
2121
android:ellipsize="end"
2222
android:layout_toLeftOf="@+id/test_status"/>
23+
<TextView android:id="@+id/test_message"
24+
android:layout_height="wrap_content"
25+
android:layout_width="fill_parent"
26+
android:gravity="left"
27+
android:textSize="14sp"
28+
android:singleLine="true"
29+
android:ellipsize="end"
30+
android:layout_below="@+id/test_name"
31+
android:layout_toLeftOf="@+id/test_status"/>
2332
</RelativeLayout>

0 commit comments

Comments
 (0)