aissat / easy_localization

Easy and Fast internationalizing your Flutter Apps
https://pub.dev/packages/easy_localization
MIT License
881 stars 312 forks source link

intl 0.19.0 doesn't work with easy_localizaiton version 3.0.5 #655

Open Oliver-Knight opened 3 months ago

Oliver-Knight commented 3 months ago

intl : 0.19.0 doesn't work with easy_localization because easy_localization depends on flutter_localization and flutter_localization need intl : 0.18.1 Please help me, I need to use intl : 0.19.0 for some reason in my project and I also want to use easy_localization too much

vuzzer commented 3 months ago

I have the same problem. I'm using a package that depends on intl 0.19.0, or easy_localization depends on intl 0.18.0 I have a package conflict.

3kdeveloper commented 3 months ago

Remove the package version number, and then pub get

vuzzer commented 3 months ago

it doesn't work.

How to reproduce bug :

  1. install package easy_localization: ^3.0.5
  2. install package awesome_notifications: ^0.9.3 awesome_notifications depend on intl 0.19.0 and easy_localization depend on intl 0.18.0 So, You can not install both package in a project.
3kdeveloper commented 3 months ago

Remove version number from the conflicted packages.

On Fri, 22 Mar 2024 at 6:09 PM, Bienvenu Parfait @.***> wrote:

it doesn't work.

How to reproduce bug :

  1. install package easy_localization: ^3.0.5
  2. install package awesome_notifications: ^0.9.3 awesome_notifications depend on intl 0.19.0 and easy_localization depend on intl 0.18.0 So, You can not install both package in a project.

— Reply to this email directly, view it on GitHub https://github.com/aissat/easy_localization/issues/655#issuecomment-2015070446, or unsubscribe https://github.com/notifications/unsubscribe-auth/ASOCVFEG42BTBFPMO23AM43YZQUR5AVCNFSM6AAAAABE2M7Z3WVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDAMJVGA3TANBUGY . You are receiving this because you commented.Message ID: @.***>

vuzzer commented 3 months ago

Remove version number from the conflicted packages. On Fri, 22 Mar 2024 at 6:09 PM, Bienvenu Parfait @.> wrote: it doesn't work. How to reproduce bug : 1. install package easy_localization: ^3.0.5 2. install package awesome_notifications: ^0.9.3 awesome_notifications depend on intl 0.19.0 and easy_localization depend on intl 0.18.0 So, You can not install both package in a project. — Reply to this email directly, view it on GitHub <#655 (comment)>, or unsubscribe https://github.com/notifications/unsubscribe-auth/ASOCVFEG42BTBFPMO23AM43YZQUR5AVCNFSM6AAAAABE2M7Z3WVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDAMJVGA3TANBUGY . You are receiving this because you commented.Message ID: @.>

I have removed version of conflicted package, put any. But anything work.

ChoyCheeWei commented 3 months ago

any updates on this?

vuzzer commented 3 months ago

To solve this problem, I changed my flutter channel to master and upgraded.

flutter channel master
flutter upgrade

https://github.com/flutter/flutter/issues/139861#issuecomment-2016017856

vuzzer commented 3 months ago

I think this problem has been solved. To solve this problem, you need to change the flutter channel to master and do an update.

jesselpereira commented 2 months ago

Same problem.

ViktorKirjanov commented 1 month ago

updates?