命令PhaseScriptExecution失败,退出代码为非零Xcode 11.4

时间:2020-05-02 03:56:57

标签: ios flutter dart ipa

我正在尝试在flutter上为我的Xcode应用构建Command PhaseScriptExecution failed with a nonzero exit code ,但我不知道为什么我一直收到此错误。

simulator

我使用manual migration guildlines迁移了Xcode 11.4版本的项目。尽管我的项目在.ipa上运行良好,但是我无法构建/Users/apple/Library/Developer/Xcode/DerivedData/Runner-acigcqmznpynacbcdnfflfigyoxx/Build/Intermediates.noindex/ArchiveIntermediates/Runner/BuildProductsPath/Release-iphoneos/Kashbase .app/Frameworks/Flutter.framework/Flutter: errSecInternalComponent Non-fat binary /Users/apple/Library/Developer/Xcode/DerivedData/Runner-acigcqmznpynacbcdnfflfigyoxx/Build/Intermediates.noindex/ArchiveIntermediates/Runner/InstallationBuildProductsLocation/Applications//Kashbase .app/Frameworks/App.framework/App is not armv7. Running lipo -info: Non-fat file: /Users/apple/Library/Developer/Xcode/DerivedData/Runner-acigcqmznpynacbcdnfflfigyoxx/Build/Intermediates.noindex/ArchiveIntermediates/Runner/InstallationBuildProductsLocation/Applications//Kashbase .app/Frameworks/App.framework/App is architecture: x86_64 Command /bin/sh failed with exit code 1 存档文件。

日志

import math
def distance (x,y):
    value= math.sqrt ((x[0]-y[0])**2 + (x[1] - y[1])**2)
    print (value)
distance((0,0), (1,1))

0 个答案:

没有答案