When I run my project in test mode I got this crashing error. It looks like an issue related with the platform. Has anyone faced this error so far? How can I solve this ?
BUILD FAILED
Because flutter_cache_manager >=3.0.0-nullsafety.0 <3.3.1 depends on uuid ^3.0.0 and every version of dash_chat from git depends on uuid ^4.0.0, flutter_cache_manager >=3.0.0-nullsafety.0 <3.3.1 is incompatible with dash_chat from git. So, because travel_app depends on both dash_chat from git and flutter_cache_manager 3.3.0, version solving failed.
GPT explains below:
This error is occurring because there is a version conflict between the dependencies in your Flutter project. The flutter_cache_manager
package has a dependency on uuid
with a version constraint of ^3.0.0
, while the dash_chat
package, which you are using from Git, has a dependency on uuid
with a version constraint of ^4.0.0
. The version constraints are incompatible, leading to a version-solving failure.
Anyone facing same issue?
2
1 reply