From d6cf97fa2447562882fa95cf91f7ce3216c20077 Mon Sep 17 00:00:00 2001 From: tech-ramakant Date: Tue, 5 Nov 2024 18:49:25 +0530 Subject: [PATCH] Update pubspec.yaml for fixing intl version issue Because every version of flutter_paystack from git depends on intl ^0.17.0 and app depends on intl ^0.19.0, flutter_paystack from git is forbidden. So, because app depends on flutter_paystack from git, version solving failed. --- pubspec.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pubspec.yaml b/pubspec.yaml index f76392a8..c6384521 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -7,7 +7,7 @@ dependencies: flutter: sdk: flutter http: ^0.13.5 - intl: ^0.17.0 + intl: ^0.19.0 meta: ^1.8.0 async: ^2.9.0 @@ -34,4 +34,4 @@ flutter: environment: sdk: '>=2.12.0 <3.0.0' - flutter: ">=2.0.0" \ No newline at end of file + flutter: ">=2.0.0"