bitsydarel/bd_l10n

Dependency on meta: ^1.7.0 is too restrictive

Opened this issue · 2 comments

Hi,
I am using the stable flutter channel (2.2.3) and created a new project and added this library.
Now pub get fails because most of the flutter packages from the SDK depend on meta 1.3.0 and this library requires 1.7.0.

Is this specific version really required and can we lower the requirement to 1.3.0?

Because bd_l10n >=1.2.0 depends on meta ^1.7.0 and every version of flutter_test from sdk depends on meta 1.3.0, bd_l10n >=1.2.0 is incompatible with flutter_test from sdk.
So, because test depends on both flutter_test any from sdk and bd_l10n ^1.2.0, version solving failed.
pub get failed (1; So, because test depends on both flutter_test any from sdk and bd_l10n ^1.2.0, version solving failed.)

Hi @kostadin-damyanov-prime I’m going to decrease the constraints in the next version.

but as of now you can just install it as a script using

flutter pub global activate bd_l10n
Or
Pub global activate bd_l10n

Cool, thanks!