Reputation: 103
When I run the Application then warning display below,
Warning: The Copy Bundle Resources build phase contains this target's Info.plist file 'UserDefinedLocalization-Info.plist'.
Upvotes: 5
Views: 8739
Reputation: 3224
I had this issue after I rearranged the underlying file structure of my project. Xcode4 has moved things around though and most online help to this problem is Xcode 3 specific, so this is how you solve this in Xcode 4:
Upvotes: 35
Reputation: 90117
In xcode, right click the UserDefinedLocalization-Info.plist
file, select Get Info
. Go to the Targets
tab and remove the checkmark in front of your target.
The info.plist is a special file and must be treated in a special way. It's not allowed to add it to the app in the normal way.
Upvotes: 6