IOCipher Versions Save

make non-root mountable encrypted disk shares

0.4.1

3 years ago

This build contains SQLCipher. If your app already has SQLCipher 3.5.9 as a dependency, you will need to add this into the build.gradle:

packagingOptions {
   pickFirst 'lib/armeabi-v7a/libsqlcipher.so'
    pickFirst 'lib/arm64-v8a/libsqlcipher.so'
    pickFirst 'lib/x86/libsqlcipher.so'
    pickFirst 'lib/x86_64/libsqlcipher.so'

}

You can include this AAR in your build directly by putting the file into /libs and adding this line into the build.gradle dependencies:

implementation (name: 'IOCipher-release-0.4.1-sqlcipher-3.5.9', ext: 'aar')