【问题描述】:
Parse Issue (Xcode): Module 'fluttertoast' not found
/Users/anand/StudioProjects/untitled/ios/Runner/GeneratedPluginRegistrant.m:11:8
Could not build the application for the simulator.
Error launching application on iPhone 11 Pro.
【解决方案1】:
尝试步骤:
- 删除IOS文件夹中的"podfile"和"podfile.Lock"文件
- 终端执行:在IOS文件目录执行
flutter clean
“ - 在Android studio的“.yaml”文件中执行
flutter pub get
“ - 终端执行:在IOS目录下执行
pod install
“
【讨论】:
- 感谢您的回答。bt 已经尝试过
【解决方案2】:
尝试安装 cocoapod,它是 swift 和 Objective c 的依赖管理器,然后运行命令
pod deintegrate
pod install
在 Flutter 项目中的 iOS 文件夹中。这应该与我们将在项目中设置的任何 Flutter 插件相同。请同时检查此链接 macos-deploy-to-ios-devices
【讨论】:
已经试过了兄弟\
在安卓设备上试过了吗?