Reputation: 2020
What means this Xcode warning?
Warning: The Copy Bundle Resources build phase contains this target's Info.plist file 'Info.plist'
Upvotes: 0
Views: 483
Reputation: 107131
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
Upvotes: 0
Reputation: 2999
My be you info.plist file copied in "Copy Bundle Resources". see this image
https://i.sstatic.net/KjCjI.jpg
simply delete this file.
Upvotes: 1