运行我的应用程序后,我得到这个错误:运行吊舱安装错误在iPhone 8上启动应用程序出错。
我已经试过了:取消
行注释#platform: iOS, 9.0
和
sudo arch -x86_64 gem install ffi
arch -x86_64 pod install
如有任何帮助,不胜感激
- 从项目/ios中删除pods文件夹
- 删除项目/ios中的.symlinks
- 删除podfile.lock 运行arch -x86_64 pod install
- 然后尝试扑动运行
请访问Podfile,你会注意到第一个几行包含以下信息。
# Uncomment this line to define a global platform for your project
platform :ios, '11.0'
# CocoaPods analytics sends network stats synchronously affecting flutter build latency.
ENV['COCOAPODS_DISABLE_STATS'] = 'true'
project 'Runner', {
'Debug' => :debug,
'Profile' => :release,
'Release' => :release,
}
向下滚动并注释掉这三行。
target 'Runner' do
use_frameworks!
use_modular_headers!
flutter_install_all_ios_pods File.dirname(File.realpath(__FILE__))
# target 'RunnerTests' do
# inherit! :search_paths
# end