tejas
tejas

Reputation: 11

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?

Upvotes: 1

Views: 444

Answers (1)

Nick Weaver
Nick Weaver

Reputation: 47231

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.

Upvotes: 2

Related Questions