Baseflow / flutter_cache_manager

Generic cache manager for flutter
https://baseflow.com
MIT License
740 stars 429 forks source link

Raise minimum sqflite version #263

Closed timekone closed 3 years ago

timekone commented 3 years ago

:sparkles: What kind of change does this PR introduce? (Bug fix, feature, docs update...)

This PR fixes a build failure.

:arrow_heading_down: What is the current behavior?

Build fails with error The method 'isDuplicateColumnError' isn't defined for the class 'DatabaseException'. when sqflite version lower than 1.3.1 is used.

:new: What is the new behavior (if this is a feature change)?

A compatible version of sqflite will be used. If an incompatible version of sqflite is forced elsewhere(for example in app's pubspec.yaml), flutter pub get will fail with an easy to understand message saying that wrong version of sqflite is being used.

:boom: Does this PR introduce a breaking change?

No.

:bug: Recommendations for testing

:memo: Links to relevant issues/docs

Fixes #242

:thinking: Checklist before submitting

renefloor commented 3 years ago

Thanks for the PR