我正尝试使用Fastlane使用XCode 10(10A255)为我的库制作一个胖二进制文件
xcodebuild(
workspace: "Mylibrary.xcworkspace",
scheme: "Mylibrary",
configuration: "Release",
clean: true,
archive: true
)
但是运行lipo -i ~/Mylibrary.framework/Mylibrary
我只会得到armv7 arm64
,它不能在模拟器上运行。
有人知道发生这种情况的原因吗?
PS:相同的命令在Xcode 9.4上运行,并且lipo -i打印i386 x86_64 armv7 arm64
正常。