ludocode / ActiveAndroid

Active record style SQLite persistence for Android

Home Page:http://www.activeandroid.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ActiveAndroid-Secure

This adds SQLCipher support to ActiveAndroid. It's mostly just a re-implementation of ActiveAndroid-Secure on top of the latest ActiveAndroid, adding a method to set the password separately.

The included sqlcipher.jar comes from classes.jar in the SQLCipher for Android 3.3.1-2 .aar binary package. It is only needed to allow the compiler to find SQLCipher classes when building ActiveAndroid. The resulting ActiveAndroid.jar does not include SQLCipher.

To use this in a project, build this to produce ActiveAndroid.jar, add it to your app's libs/, and add a SQLCipher dependency to your project. Like this:

dependencies {
    compile fileTree(include: ['*.jar'], dir: 'libs')
    compile 'net.zetetic:android-database-sqlcipher:3.3.1-2@aar'
}

About

Active record style SQLite persistence for Android

http://www.activeandroid.com


Languages

Language:Java 99.8%Language:Shell 0.2%