You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
I am facing a dependency conflict issue while resolving packages in my Flutter project. Specifically, the conflict arises between html_editor_enhanced, file_picker, and lints.
When running flutter pub get, I encounter the following error:
Resolving dependencies...
Because html_editor_enhanced >=2.4.0 <2.5.0 depends on file_picker ^4.2.0 and no versions of html_editor_enhanced match >2.5.1 <2.6.0, html_editor_enhanced
>=2.4.0 <2.5.0-∞ or >2.5.1 <2.6.0-∞ requires file_picker ^4.2.0.
And because html_editor_enhanced >=2.5.0 <2.5.1 depends on file_picker ^4.6.0 and html_editor_enhanced >=2.6.0 depends on lints ^4.0.0, html_editor_enhanced
>=2.4.0 <2.5.1-∞ or >2.5.1 requires lints ^4.0.0 or file_picker ^4.2.0.
And because html_editor_enhanced 2.5.1 depends on file_picker ^5.2.0+1 and quest depends on file_picker ^8.1.5, html_editor_enhanced >=2.4.0 requires lints
^4.0.0.
So, because quest depends on both html_editor_enhanced ^2.4.0 and lints ^5.1.0, version solving failed.
Failed to update packages.
Describe the solution you'd like
I would like to:
Ensure that html_editor_enhanced is compatible with the latest version of file_picker (^8.1.5) and lints (^5.1.0).
Have updated dependency constraints in html_editor_enhanced to avoid similar conflicts in future updates.
Additional context
My project depends on the following versions: html_editor_enhanced: ^2.4.0 file_picker: ^8.1.5 lints: ^5.1.0
This issue blocks me from using the latest versions of the dependencies.
The text was updated successfully, but these errors were encountered:
soufianebenyaala
changed the title
[FEATURE]
[FEATURE] Dependency Conflict: html_editor_enhanced Incompatible with file_picker ^8.1.5 and lints ^5.1.0
Dec 13, 2024
Is your feature request related to a problem? Please describe.
I am facing a dependency conflict issue while resolving packages in my Flutter project. Specifically, the conflict arises between
html_editor_enhanced
,file_picker
, and lints.When running
flutter pub get
, I encounter the following error:Describe the solution you'd like
I would like to:
Ensure that
html_editor_enhanced
is compatible with the latest version offile_picker (^8.1.5)
andlints (^5.1.0)
.Have updated dependency constraints in
html_editor_enhanced
to avoid similar conflicts in future updates.Additional context
My project depends on the following versions:
html_editor_enhanced: ^2.4.0
file_picker: ^8.1.5
lints: ^5.1.0
This issue blocks me from using the latest versions of the dependencies.
The text was updated successfully, but these errors were encountered: