在iOS模拟器上构建flutter应用失败



我已经为android开发了一个flutter应用程序很长一段时间了,现在决定尝试在带有M1 Pro芯片的Macbook Pro上为iOS构建它。每次我运行它时,它都可以运行pod安装和Xcode构建,但总是无法构建iOS应用程序。我尝试创建一个全新的项目,并在iOS模拟器上运行它,它工作了。我一直在尝试我能找到的解决方案,但没有一个奏效。下面是我得到的错误:

xcodebuild[24755:304662] Requested but did not find extension point with identifier Xcode.IDEKit.ExtensionSentinelHostApplications for extension Xcode.DebuggerFoundation.AppExtensionHosts.watchOS of plug-in com.apple.dt.IDEWatchSupportCore
xcodebuild[24755:304662] Requested but did not find extension point with identifier Xcode.IDEKit.ExtensionPointIdentifierToBundleIdentifier for extension Xcode.DebuggerFoundation.AppExtensionToBundleIdentifierMap.watchOS of plug-in com.apple.dt.IDEWatchSupportCore

,最后显示如下:

Command PhaseScriptExecution failed with a nonzero exit code
note: Using new build system
note: Planning
note: Build preparation complete
note: Building targets in dependency order

任何帮助都将非常感激。谢谢!

只需将这些行替换为Podfile的末尾

post_install do |installer_representation|
installer_representation.project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['ARCHS'] = 'armv7 armv7s'
end
end
end

颤振比;ios祝辞Podfile

我所需要做的就是把我所有的包升级到最新版本,所以我这么做了。在解决了升级过程中出现的一些错误后,我终于可以安装我的iOS应用了。

相关内容

  • 没有找到相关文章

最新更新