如何在 Android Studio 中升级 http 依赖
How to upgrade http dependency in Android Studio
flutter pub 获得:
Because firebase_auth >=1.0.0 depends on firebase_auth_web ^1.0.0 which depends on http_parser ^4.0.0, firebase_auth >=1.0.0 require
s http_parser ^4.0.0.
And because http 0.12.2 depends on http_parser >=0.0.1 <4.0.0 and no versions of http match >0.12.2 <0.13.0, firebase_auth >=1.0.0 i
s incompatible with http ^0.12.2.
So, because p1 depends on both http ^0.12.2 and firebase_auth ^1.0.0, version solving failed.
Running "flutter pub get" in p1...
pub get failed (1; So, because p1 depends on both http ^0.12.2 and firebase_auth ^1.0.0, version solving failed.)
我只是 运行 flutter 升级所以我的 flutter 和 dart 包是最新的,并且通过 sdk 管理器(在工具中)我安装了 android 10 和 11 以及所需的 sdk 工具。 Android studio 没有针对开发频道的未决更新。 (2021 年 3 月 5 日)
昨天才包含 firebase 版本。
dependencies:
http: "^0.12.2"
flutter:
sdk: flutter
cupertino_icons: ^1.0.0
firebase_core: ^1.0.0
firebase_auth: ^1.0.0
firebase_database: ^6.1.0
如果我遗漏了什么,我深表歉意。
编辑: 是的,我完全错过了。我只需要在 pub.get 中查找 http,然后更改版本。 (最新: http: "^0.13.0") 如有需要请删除
解决方法:我把dependencies(pubspec.yaml)里的http版本从老版本改成了http:"^0.13.0"(最新的5号) 2021 年 3 月)(从 pub.dev 获取版本并输入 http,转到安装选项卡,你会在那里找到版本)。
然后 运行 flutter pub get,或者任何适合你需要的东西。
我当前的依赖项:
dependencies:
http: "^0.13.0"
flutter:
sdk: flutter
# The following adds the Cupertino Icons font to your application.
# Use with the CupertinoIcons class for iOS style icons.
cupertino_icons: ^1.0.0
firebase_core: ^1.0.0
firebase_auth: ^1.0.0
firebase_database: ^6.1.0
如果有其他人想分享任何相关内容,请分享!谢谢。
flutter pub 获得:
Because firebase_auth >=1.0.0 depends on firebase_auth_web ^1.0.0 which depends on http_parser ^4.0.0, firebase_auth >=1.0.0 require
s http_parser ^4.0.0.
And because http 0.12.2 depends on http_parser >=0.0.1 <4.0.0 and no versions of http match >0.12.2 <0.13.0, firebase_auth >=1.0.0 i
s incompatible with http ^0.12.2.
So, because p1 depends on both http ^0.12.2 and firebase_auth ^1.0.0, version solving failed.
Running "flutter pub get" in p1...
pub get failed (1; So, because p1 depends on both http ^0.12.2 and firebase_auth ^1.0.0, version solving failed.)
我只是 运行 flutter 升级所以我的 flutter 和 dart 包是最新的,并且通过 sdk 管理器(在工具中)我安装了 android 10 和 11 以及所需的 sdk 工具。 Android studio 没有针对开发频道的未决更新。 (2021 年 3 月 5 日) 昨天才包含 firebase 版本。
dependencies:
http: "^0.12.2"
flutter:
sdk: flutter
cupertino_icons: ^1.0.0
firebase_core: ^1.0.0
firebase_auth: ^1.0.0
firebase_database: ^6.1.0
如果我遗漏了什么,我深表歉意。
编辑: 是的,我完全错过了。我只需要在 pub.get 中查找 http,然后更改版本。 (最新: http: "^0.13.0") 如有需要请删除
解决方法:我把dependencies(pubspec.yaml)里的http版本从老版本改成了http:"^0.13.0"(最新的5号) 2021 年 3 月)(从 pub.dev 获取版本并输入 http,转到安装选项卡,你会在那里找到版本)。
然后 运行 flutter pub get,或者任何适合你需要的东西。
我当前的依赖项:
dependencies:
http: "^0.13.0"
flutter:
sdk: flutter
# The following adds the Cupertino Icons font to your application.
# Use with the CupertinoIcons class for iOS style icons.
cupertino_icons: ^1.0.0
firebase_core: ^1.0.0
firebase_auth: ^1.0.0
firebase_database: ^6.1.0
如果有其他人想分享任何相关内容,请分享!谢谢。