0

What means this Xcode warning?

Warning: The Copy Bundle Resources build phase contains this target's Info.plist file 'Info.plist'

theWalker
  • 2,022
  • 2
  • 18
  • 27
  • 1
    Have you tried googling this? The first several results are stack overflow questions that have answers http://stackoverflow.com/q/3095612/934912 followed by a page on apple's site with the same info. – StillLearnin Sep 22 '15 at 11:39

2 Answers2

1

My be you info.plist file copied in "Copy Bundle Resources". see this image

https://i.stack.imgur.com/KjCjI.jpg

simply delete this file.

Jamil
  • 2,977
  • 1
  • 13
  • 23
0

As the warning states your Copy Bundle Resources contains your applications info.plist file. You need to remove it from there.

For removing it:

Choose your target --> Go to Build Phases --> Check the Copy Bundle Resources tab--> Choose your info.plist from there --> Click on **-** button

enter image description here

Midhun MP
  • 103,496
  • 31
  • 153
  • 200