标签:
开发中常见错误和警告总结(六)
Application failed code sign verification
解决办法:Target设置----->build------>Validate Built Product选项去掉就可以了
ld: warning: directory not found for option ‘ ‘
ld: warning: directory not found for option ‘-L/Users/frenck/Downloads/apz/../Google Analytics SDK/Library‘
解决方法 :
选择项目名称----->Targets----->Build Settings----->Search Paths----->Library Search Paths
删除对应路径
Unable to extract entitlements from application
Xcode 5 ,上传苹果商店报错。
warning: iPhone/iPod Touch: application executable is missing a required architecture. At least one of the following architecture(s) must be present: armv6 (-19033)
Answer:
For some reason the default architecture settings with xCode 4.2 is only for armv7. Go to Target -> Build Settings -> Architectures -> Release on value dropdown pick "Other...",
remove $(ARCHS_STANDARD_32_BIT), and add 2 rows first with "armv6" and second "armv7"
Done
标签:
原文地址:http://www.cnblogs.com/iCocos/p/4758691.html