object file was built for newer iOS version (xxx) than being linked (xxx)
一般出现在一些第三方中, 可能会对iOS系统支持版本最低有要求, 最低支持版本高于你目前项目的版本.
解决方案:
- 1、更改Deployment Target,general -> Deployment Target,更改最低支持
- 2、在Build Settings -> other lingkr Flags 中添加-w 就可以解决了
The Copy Bundle Resources build phase contains this target's Info.plist file
Build phases->Copy bundle Resources->找到里面的info.plist->选中然后delete。
友情提醒:系统默认产生的文件比如info.plist文件,最好不要自己乱动,否则就会产生一些莫名其妙的问题。
Multiple build commands for output file ‘文件路径’
Build phases->Copy bundle Resources->删除里面的刚才提示警告的文件
网友评论