sqlcipher_flutter_libs 0.5.0 copy "sqlcipher_flutter_libs: ^0.5.0" to clipboard
sqlcipher_flutter_libs: ^0.5.0 copied to clipboard

outdated

Flutter plugin to include native SQLCipher libraries in your app

sqlcipher_flutter_libs #

Flutter apps depending on this package will contain native SQLCipher libraries on Android, iOS and macOS.

Using this package #

When using this package on Android, you need to tell the sqlite3 package how to open sqlcipher since it will attempt to open the regular sqlite3 binary by default:

import 'package:sqlite3/open.dart';

// Do this before using any sqlite3 api
open.overrideFor(
    OperatingSystem.android, openCipherOnAndroid);

You will also need to do this when using a package wrapping the sqlite3 package like moor or sqflite_common_ffi!

No changes are necessary for iOS and MacOS

For more details on how to actually use this package in a Flutter app, see sqlite3.

Problems on Android 6 #

There appears to be a problem when loading native libraries on Android 6 (see this issue). If you're seeing those crashes, you could try setting android.bundle.enableUncompressedNativeLibs=false in your gradle.properties file. Be aware that this increases the size of your application when installed.

Alternatively, you can use the applyWorkaroundToOpenSqlCipherOnOldAndroidVersions method from this library. It will try to open sqlcipher in Java, which seems to work more reliably. After the native library has been loaded from Java, we can open it in Dart too.

30
likes
0
pub points
95%
popularity

Publisher

verified publishersimonbinder.eu

Flutter plugin to include native SQLCipher libraries in your app

Homepage
Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on sqlcipher_flutter_libs