mirror of https://github.com/AMT-Cheif/drift.git
d96887b4e9
Version solving fails with the newest release of moor (2.0.0). This only updates the moor version in pubspec.yaml as the mirrored moor_flutter.dart has not changed except for the removal of functionality that was not supported by encrypted_moor.dart. |
||
---|---|---|
.. | ||
lib | ||
.gitignore | ||
README.md | ||
pubspec.yaml |
README.md
Moor version that uses the sqflite_sqlcipher instead of sqflite.
Using this
For general notes on using moor, see this guide.
Instead of using moor_flutter
, use this:
dependencies:
moor: "$latest version"
encrypted_moor:
git:
url: https://github.com/simolus3/moor.git
path: extras/encryption
To use this, you can stop depending on moor_flutter
. Then, instead of using
a FlutterQueryExecutor
, import package:moor/moor.dart
and package:encrypted_moor/encrypted_moor.dart
.
You can then replace the FlutterQueryExecutor
with an EncryptedExecutor
.