嗨,当我试图在Xcode中构建我的Flutter应用程序时,我遇到了这个问题。整个错误消息如下所示
我试图升级软件包,但没有工作。我已经清理了我的项目,修复了酒吧缓存,但似乎没有什么可以解决这个问题。欢迎任何帮助,谢谢
xtfmy6hx1#
在pubspec.yaml中,尝试替换firebase_ui_firestore: ^1.5.1与firebase_ui_firestore: 1.4.0不要为该版本加上^符号,并尝试运行flutter clean和flutter pub get。如果你想在iOS设备上运行,请尝试在执行此操作后首先运行xcode。这就是我在几天后弄清楚的。希望能帮上忙
pubspec.yaml
firebase_ui_firestore: ^1.5.1
firebase_ui_firestore: 1.4.0
flutter clean
flutter pub get
1条答案
按热度按时间xtfmy6hx1#
在
pubspec.yaml
中,尝试替换firebase_ui_firestore: ^1.5.1
与
firebase_ui_firestore: 1.4.0
不要为该版本加上^符号,并尝试运行
flutter clean
和flutter pub get
。如果你想在iOS设备上运行,请尝试在执行此操作后首先运行xcode。这就是我在几天后弄清楚的。希望能帮上忙