8000 my first attempt · Fiv38/android-database-sqlcipher@88be0db · GitHub
[go: up one dir, main page]

Skip to content

Commit 88be0db

Browse files
committed
my first attempt
1 parent 21c6100 commit 88be0db

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

src/example/SQLDemoActivity.java

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,26 @@ public class SQLDemoActivity extends Activity {
1414
public void onCreate(Bundle savedInstanceState) {
1515
super.onCreate(savedInstanceState);
1616

17+
System.loadLibrary("nativehelper");
18+
System.loadLibrary("android_runtime");
19+
20+
System.loadLibrary("crypto");
21+
System.loadLibrary("ssl");
22+
23+
24+
System.loadLibrary("icudata");
25+
System.loadLibrary("icui18n");
26+
System.loadLibrary("icuuc");
27+
28+
System.loadLibrary("stlport_shared");
29+
30+
System.loadLibrary("sqlcipher");
31+
32+
System.loadLibrary("sqlcipher_android");
33+
System.loadLibrary("database_sqlcipher");
34+
35+
36+
1737
eventsData = new EventDataSQLHelper(this);
1838
addEvent("Hello Android Event");
1939
Cursor cursor = getEvents();

0 commit comments

Comments
 (0)
0