当我尝试将我的应用上传到应用商店时,我收到此警告:
警告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上的语言和区域设置指南。"
我没有找到解决方法。有人知道吗?
答案 0 :(得分:1)
删除cb_IQ.lproj,因为它的格式与xcode 9不兼容。查看删除该文件的影响。
答案 1 :(得分:0)
您可以通过删除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