Flutter-重新安装应用程序会导致构建崩溃



我正在构思一个应用程序,遇到了shared_preferences的问题。在尝试了几件事后,我无意中在stackoverflow上发现了一篇帖子,删除了该应用程序并重新安装。卸载应用程序后,我尝试运行

$ flutter run

再次,但它没有建立。

Launching lib/main.dart on iPhone 13 mini in debug mode...
Running pod install...                                             937ms
CocoaPods' output:
↳
Preparing
Analyzing dependencies
Inspecting targets to integrate
Using `ARCHS` setting to build architectures of target `Pods-Runner`: (``)
Fetching external sources
-> Fetching podspec for `Flutter` from `Flutter`
-> Fetching podspec for `shared_preferences_ios` from `.symlinks/plugins/shared_preferences_ios/ios`
Resolving dependencies of `Podfile`

我试着清理安装:

rm ios/Podfile
flutter pub upgrade
flutter pub run
cd ios
pod init
pod update
flutter clean && flutter run

flutter pub run上,脚本运行到另一个错误:pub finished with exit code 64

在应用程序上,我启用了自定义字体和资产文件夹中的图像。我使用的唯一依赖项是shared_preferences: ^2.0.12

我在这里粘贴了完整的日志:https://pastebin.com/5XyDT0PT

编辑:

我试图重新安装cocoapods,但仍然收到相同的错误消息:

$ brew upgrade ruby
$ gem uninstall cocoapods
$ gem install cocoapods

有人有模拟问题吗?

我也遇到过这个错误。学习查看错误日志输出。我相信你需要这个命令

gem安装ffi

有关更多详细信息,请参阅此处:如何解决LoadError:无法加载此类文件--ffi_c

相关内容

  • 没有找到相关文章

最新更新