-
Notifications
You must be signed in to change notification settings - Fork 130
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The current Dart SDK version is 3.3.4. #260
Comments
I have same problem |
Hi @Pawankant87 and @macuser79, I just created a new project and added Can you share more details about your environment, and steps to reproduce the issue? |
Hello.
I have add pay: ^2.0.0 on pubspec.yaml and execute command "pub get" |
facing same issue |
flutter pub add pay
exit code 65
Note: intl is pinned to version 0.18.1 by flutter_localizations from the flutter SDK.
See https://dart.dev/go/sdk-version-pinning for details.
The current Dart SDK version is 3.3.4.
Because pay <1.0.0 doesn't support null safety and pay >=1.0.0 depends on flutter_localizations from sdk, every version of pay requires flutter_localizations from sdk.
And because every version of flutter_localizations from sdk depends on intl 0.18.1, every version of pay requires intl 0.18.1.
So, because app depends on both intl ^0.19.0 and pay any, version solving failed.
The lower bound of "sdk: '>=2.10.0 <3.0.0'" must be 2.12.0 or higher to enable null safety.
For details, see https://dart.dev/null-safety
The text was updated successfully, but these errors were encountered: