I'm not sure to understand what you really want:
- Do you want to package your app using the Android Runtime (the apk to bar conversion)
One of the big limits of the Blackberry Android runtime is that you
can’t use native libraries. It seems that SQLCypher is native, so you
won’t be able to use it. I see two alternatives:
Make sure that you application saves the SQL DB to secure storage, and trust BlackBerry.
Find a work-around, encrypting values of your database or working with a memory-backed database and encrypting data while you serialize
it.
Or
- Do you want to port your android application to Cascades
Short answer is that you can compile and bundle any library you want with your BB10 application.
You should try to compile SQLCypher for BB10. OpenSSL (libcrypto) is
already part of the SDK, so you should be able to use that.
Use the shortcuts installed with the BB10 SDK to launch a terminal
with the SDK env variables, to compile SQLCypher.
Then, once you have your libraries (.so) and headers (.h), copy them
into your project to use them. One minor complication is that the
emulator uses x86 whereas the devices use arm code, so you’ll have to
make sure that your “.pro” file and the “bar-descriptor.xml” takes
those case into account.