打包上传到TestFlight上时,遇到的问题
ERROR ITMS-90530
"Invalid MinimumOSVersion. Apps that only support 64-bit devices must specify a deplyment target of 8.0 or later"
这里是指的我的那个出问题的framework里的info.plist文件没有指定MinimumOSVersion.需要打开该plist文件添加该项。
解决方案:
但是需要添加的最低版本号可以参考下文
ERROR ITMS-90208
ERROR ITMS-90208: "Invalid Bundle. The bundle *.framework does not support the minimum OS Version specified in the Info.plist."
这里意思应该是这个bundle里写的MinimumOSVersion版本号大于这个framework所支持的版本。版本指的iOS系统的版本。
我的解决方案,(不知道对不对):
-
第一步:用vtool查看framework的版本
vtool -show [二进制文件路径]
- 第二步,把MinimumOSVersion添加到framework包的info.plist文件中