1.从Xcode -〉Pods(Expand)-〉Target Support Files -〉Pods-Runner -〉Pods-Runner-frameworks 变更
if [ -L "${source}" ]; then
echo "Symlinked..."
source="$(readlink "${source}")"
fi
与
if [ -L "${source}" ]; then
echo "Symlinked..."
source="$(readlink -f "${source}")"
fi
从你的flutter项目-〉ios -〉Podfile 变更
post_install do |installer|
installer.pods_project.targets.each do |target|
flutter_additional_ios_build_settings(target)
end
end
与
post_install do |installer|
installer.pods_project.targets.each do |target|
flutter_additional_ios_build_settings(target)
end
installer.generated_projects.each do |project|
project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '12.0'
end
end
end
end
6条答案
按热度按时间lymnna711#
单击项目上的属性,转到构建阶段并选中“仅用于安装构建”选项
yxyvkwin2#
在项目中搜索以下行:
改为:
k2fxgqgv3#
也许问题出在“运行脚本”上
我确实把firebase的crashlytics从“pod”改成了“Packeges”。但是我没有改变脚本。我已经试过了所有的解决方案
“https://stackoverflow.com/questions/53289524/xcode-10-2-1-command-phasescriptexecution-failed-with-a-nonzero-exit-code“
我的解决方案是改变目标-〉构建阶段。在脚本字段的形式
到
简而言之,问题是你的剧本,把它做好
如果脚本是只安装版本。你需要目标-〉构建阶段-〉运行脚本-〉检查“只安装版本”
例如:
xmq68pz94#
在我这边,这个问题出现在我更换电脑时,问题是由Apple Silicon处理器引起的。当我开始使用M1 Pro时,我没有检查安装页面,而是直接通过Fvm安装了Flutter。当我检查安装页面时,我看到有几个步骤可以在Apple Slicon上安装Flutter。这些步骤解决了这个问题;
参考:https://docs.flutter.dev/get-started/install/macos
jtjikinw5#
我已经从我的项目中删除了一个依赖项,但忘记删除
App.js
中的导入。由于.这一问题的出现。仔细查看后。到错误消息通知,删除后。依赖项形式App.js
项目运行成功。qij5mzcb6#
那些在将Xcode 14.2更新到14.3(14 E222 b)后遇到此问题的人,请尝试以下步骤来运行和归档应用程序。
1.首先升级你的flutter版本到3.7.10,因为这个问题在3.7.10中得到了修复(点击这里)
1.从Xcode Runner -〉PROJECT(Runner)-〉Info -〉Deployment Target -〉iOS Deployment Target -〉Set to 12.0(Minimum)
1.从Xcode Runner -〉TARGETS(Runner)-〉General -〉Minimum Deployments -〉iOS -〉Set to 12.0(Minimum)
1.从Xcode Pods -〉PROJECT(Pods)-〉Info -〉Deployment Target -〉iOS Deployments Target -〉Set to 12.0(Minimum)
1.从Xcode -〉Pods(Expand)-〉Target Support Files -〉Pods-Runner -〉Pods-Runner-frameworks
变更
与
从你的flutter项目-〉ios -〉Podfile
变更
与