flutter: 运行 pod install 在调试模式下构建时需要永远
flutter: running pod install takes forever while building in debug mode
使用 iphone 11 iOS-14 设备和模拟器,我删除了我的 flutter 应用程序的 podfile 和 podlock,并尝试在调试模式下重建应用程序,我使用的是最新的 firebase依赖项包括 cloud_firestore: ^0.14.1 依赖项然后它卡在 pod install 并且永远完成,已经超过半小时。
我想知道我是否应该等待更长时间,或者 firebase 依赖项有问题吗?
Pod install没有卡住,当你删除Podfile.lock时,pod install会重新下载所有的pod依赖,需要很长时间,完成后会创建一个新的Podfile.lock
我有一个项目有 20 多个 flutter 依赖项,firebase 依赖项是最复杂的
在 Podfile 中的 target 'Runner' do 下添加此行。
pod 'FirebaseFirestore', :git =>
'https://github.com/invertase/firestore-ios-sdk-frameworks.git', :tag
=> '6.33.0'
然后在IOS:
flutter clean
pod repo update
更多信息:https://github.com/FirebaseExtended/flutterfire/issues/2751
使用 iphone 11 iOS-14 设备和模拟器,我删除了我的 flutter 应用程序的 podfile 和 podlock,并尝试在调试模式下重建应用程序,我使用的是最新的 firebase依赖项包括 cloud_firestore: ^0.14.1 依赖项然后它卡在 pod install 并且永远完成,已经超过半小时。
我想知道我是否应该等待更长时间,或者 firebase 依赖项有问题吗?
Pod install没有卡住,当你删除Podfile.lock时,pod install会重新下载所有的pod依赖,需要很长时间,完成后会创建一个新的Podfile.lock
我有一个项目有 20 多个 flutter 依赖项,firebase 依赖项是最复杂的
在 Podfile 中的 target 'Runner' do 下添加此行。
pod 'FirebaseFirestore', :git => 'https://github.com/invertase/firestore-ios-sdk-frameworks.git', :tag => '6.33.0'
然后在IOS:
flutter clean
pod repo update
更多信息:https://github.com/FirebaseExtended/flutterfire/issues/2751