当我尝试将我的应用程序上传到应用程序商店时,我收到以下警告:
WARNING ITMS-90176:“无法识别的区域设置-位于( "Payload/SaveMe.app/AccountKitStrings.bundle/Resources/cb_IQ.lproj”)的目录具有无法识别的区域设置名称。有关命名特定于语言的目录的详细信息,请参阅https://developer.apple.com/library/ios/documentation/LanguagesUtilities/Conceptual/iTunesConnect_Guide/Appendices/AppStoreTerritories.html上的语言和区域设置指定指南。“
我没有找到任何解决方案如何解决它。有人知道吗?
发布于 2018-01-04 04:57:42
只需删除cb_IQ.lproj,因为它的格式与Xcode9不兼容。
发布于 2019-10-12 06:16:59
您可以通过删除Podfile
中的违规资源来解决此问题
post_install do |installer|
system("/bin/rm -rf Pods/AccountKit/AccountKitStrings.bundle/Resources/cb_IQ.lproj")
system("/bin/rm -rf Pods/AccountKit/AccountKit.framework/AccountKitStrings.bundle/Resources/cb_IQ.lproj")
end
https://stackoverflow.com/questions/44130506
复制相似问题