Reputation: 41
After migrating project to XCode6 I got next strange thing: .
When I trying to remove one of them both removed. How can I fix this?
Also, I have problem with uploading binary to AppStore - it passes validation during upload, but I get 'invalid binary' status after about 20-30 minutes. I suppose subj of my question could be the reason of this happens.
Upvotes: 2
Views: 185
Reputation: 2252
cmd+f
) "Begin PBXProject section".knownRegions
. Here you should have en, two times. Just remove one of them.For example my project looks like that:
buildConfigurationList = E37ABA1218083A4100EC41AC /* Build configuration list for PBXProject "MyProjectName" */;
compatibilityVersion = "Xcode 3.2";
developmentRegion = English;
hasScannedForEncodings = 0;
knownRegions = (
en,
Base,
pl,
);
Upvotes: 1