Xcode warning - unable to build without warning
Can anyone tell me how to solve the following warning in Xcode?
"[WARN]Warning: The Copy Bundle Resources build phase contains this target's Info.plist file 'ShareKit-Info.plist'".
开发者_如何学编程
What's the problem in project?
You are actually copying the plist to the bundle which should not be. Right click on the file and open Get Info, there should a Targets tab, have a look if it's checked. Uncheck.
You can also look in the targets Copy Bundle Resources phase and remove the plist there.
Here is an official Technical Q&A from Apple.
精彩评论