Description
I've grabbed the latest git repo - https://github.com/guardianproject/android-database-sqlcipher.git
Then I went in, grabbed some SO's from a 3.0 device, (I'm sure I got the majority of them but might be missing an stlport.so as I couldn't find that...).
ls external/android-3.0/
libcrypto.so libicui18n.so liblog.so libssl.so libutils.so
libcutils.so libicuuc.so libnativehelper.so libstlport.so
But when I go to build from Eclipse, I get a bunch of Cursor errors... along the lines of:
The type BulkCursorToCursorAdaptor must implement the inherited abstract method Cursor.getType(int)
This happens in BulkCursorToCursorAdpator.java, and similar issues about base classes in a few other cursor-related files...
So what am I doing wrong here? I went into the external and I can rebuild the libcrypto.so as well as the libssl.so but that doesn't seem like the right thing to do, it seems
that I need to align my so with the java via the jni but I must be missing a step...
Any thoughts??