错误 ITMS-90171:无效的捆绑结构 - 二进制文件 [CocoaPods 文件]
ERROR ITMS-90171: Invalid Bundle Structure - The binary file [CocoaPods file]
运行上传到App Store时出现这个错误:
ERROR ITMS-90171: "Invalid Bundle Structure - The binary file 'mobile.app/Frameworks/Pods_mobile.framework/Pods_mobile' is not permitted. Your app can’t contain standalone executables or libraries, other than a valid CFBundleExecutable of supported bundles. Refer to the Bundle Programming Guide at https://developer.apple.com/go/?id=bundle-structure for information on the iOS app bundle structure."
我搜索了所有类似的帖子并尝试了所有这些建议:
- 始终嵌入 Swift 标准库 = [true, false, $(inherited)]
- 构建阶段 -> 复制捆绑资源 -> 确保其没有框架
- 确保配置文件设置正确。
- 仅构建活动架构 = [true, false]
构建阶段: [CP] Embed Pods Frameworks
& [CP] Copy Pods Resource
似乎正常:
"${PODS_ROOT}/Target Support Files/Pods-mobile/Pods-mobile-frameworks.sh"
"${PODS_ROOT}/Target Support Files/Pods-mobile/Pods-mobile-resources.sh"
分别。
播客文件:
platform :ios, '12.0'
use_frameworks!
target 'mobile' do
pod ...
end
我需要删除 Embed Frameworks
下的 Pods_mobile.framework
,如下所示。我不确定它是如何到达那里的,但假设它有它的目的,因为我没有首先添加它。
只需从您的包中删除 exec 文件并从您的包资源中删除“可执行文件”键。
存档并验证构建后它将起作用。
运行上传到App Store时出现这个错误:
ERROR ITMS-90171: "Invalid Bundle Structure - The binary file 'mobile.app/Frameworks/Pods_mobile.framework/Pods_mobile' is not permitted. Your app can’t contain standalone executables or libraries, other than a valid CFBundleExecutable of supported bundles. Refer to the Bundle Programming Guide at https://developer.apple.com/go/?id=bundle-structure for information on the iOS app bundle structure."
我搜索了所有类似的帖子并尝试了所有这些建议:
- 始终嵌入 Swift 标准库 = [true, false, $(inherited)]
- 构建阶段 -> 复制捆绑资源 -> 确保其没有框架
- 确保配置文件设置正确。
- 仅构建活动架构 = [true, false]
构建阶段: [CP] Embed Pods Frameworks
& [CP] Copy Pods Resource
似乎正常:
"${PODS_ROOT}/Target Support Files/Pods-mobile/Pods-mobile-frameworks.sh"
"${PODS_ROOT}/Target Support Files/Pods-mobile/Pods-mobile-resources.sh"
分别。
播客文件:
platform :ios, '12.0'
use_frameworks!
target 'mobile' do
pod ...
end
我需要删除 Embed Frameworks
下的 Pods_mobile.framework
,如下所示。我不确定它是如何到达那里的,但假设它有它的目的,因为我没有首先添加它。
只需从您的包中删除 exec 文件并从您的包资源中删除“可执行文件”键。 存档并验证构建后它将起作用。